body {
    font-family: "Segoe UI", sans-serif;
    background-color: #e9f5f9;
    margin: 0;
    padding: 0;
    color: #2c3e50;
    line-height: 1.6;
  }
  
  .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
  }
  
  header {
    text-align: center;
    background-color: #58b4ae;
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  header h1 {
    margin: 0;
    font-size: 2.5rem;
  }

  header p {
    margin: 5px 0 15px;
    font-size: 1.1rem;
  }

  /* Navigation Styles */
  nav {
    margin-top: 20px;
  }

  .nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
  }

  .nav-links li {
    margin: 0 10px;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
  }

  .nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  section {
    margin-top: 30px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  
  section h2 {
    color: #00796b;
    border-bottom: 2px solid #e0f2f1;
    padding-bottom: 10px;
    margin-top: 0;
  }

  /* Profile Section */
  .profile-section {
    padding-bottom: 40px;
  }

  .profile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .profile-image {
    margin-bottom: 20px;
  }

  .image-placeholder {
    width: 200px;
    height: 200px;
    background-color: #58b4ae;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .image-placeholder span {
    font-size: 0;
  }

  .image-placeholder::before {
    content: "👩‍⚕️";
    font-size: 80px;
  }

  .profile-text {
    flex: 1;
  }

  /* Education Section */
  .education-list {
    list-style: none;
    padding-left: 10px;
  }

  .education-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 10px;
  }

  /* Specializations Section */
  .specialization-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }

  .card {
    background-color: #f8fdff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .card h3 {
    color: #00796b;
    margin-top: 0;
  }

  /* Testimonials Section */
  .testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }

  .testimonial {
    background-color: #f8fdff;
    border-left: 4px solid #58b4ae;
    padding: 20px;
    border-radius: 0 8px 8px 0;
  }

  .testimonial blockquote {
    margin: 0 0 15px 0;
    font-style: italic;
  }

  .testimonial cite {
    display: block;
    font-weight: bold;
    text-align: right;
  }
  
  /* Contact Section */
  .contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
  }
  
  .form-group input, 
  .form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s;
  }
  
  .form-group input:focus, 
  .form-group textarea:focus {
    border-color: #58b4ae;
    outline: none;
  }
  
  .submit-btn {
    background-color: #58b4ae;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: 10px;
  }
  
  .submit-btn:hover {
    background-color: #3f9992;
  }

  .contact-info {
    background-color: #f8fdff;
    padding: 20px;
    border-radius: 8px;
  }

  .contact-info h3 {
    color: #00796b;
    margin-top: 0;
  }

  .contact-info p {
    margin: 10px 0;
  }
  
  /* Footer */
  footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    font-size: 14px;
    color: #888;
    background-color: #f0f7fa;
    border-radius: 8px;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .social-links {
    margin-top: 10px;
  }

  .social-links a {
    color: #58b4ae;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
    transition: color 0.3s;
  }

  .social-links a:hover {
    color: #00796b;
  }

  /* Responsive Design */
  @media (min-width: 768px) {
    .profile-content {
      flex-direction: row;
      align-items: flex-start;
    }

    .profile-image {
      margin-right: 30px;
      margin-bottom: 0;
    }

    .contact-container {
      grid-template-columns: 3fr 2fr;
    }
  }
