    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #d5e8d4; 
      color: #000;
    }
    .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }
    .text-section {
      flex: 1 1 300px;
      min-width: 250px;
      font-size: 1.8rem;
      font-style: italic;
      font-weight: 600;
    }
    .profile-section {
      flex: 1 1 300px;
      min-width: 250px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .profile-section img {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
    }
    .profile-details {
      margin-top: 12px;
      font-size: 0.95rem;
      text-align: left;
    }
    .profile-details strong {
      font-weight: bold;
    }
    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        text-align: center;
      }
      .text-section {
        font-size: 1.6rem;
        margin-bottom: 20px;
      }
      .profile-details {
        text-align: center;
      }
    }