.custom-contact-hero {
      background: linear-gradient(135deg, var(--brand-primary) 0%, #1d4ed8 100%);
      padding: 100px 16px 80px;
      text-align: center;
      color: white;
    }

    .custom-contact-hero h1 {
      font-size: 48px;
      font-weight: 700;
      line-height: 56px;
      margin-bottom: 16px;
      position: relative;
      display: inline-block;
      color: white;
    }

    .custom-contact-hero p {
      font-size: 20px;
      line-height: 32px;
      margin-top: 24px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0.95;
    }

    .custom-contact-hero a,
    .custom-contact-hero a:link,
    .custom-contact-hero a:visited,
    .custom-contact-hero a:hover,
    .custom-contact-hero a:active,
    .custom-contact-hero a:focus {
      color: white;
      text-decoration: none;
    }

    .custom-contact-hero a:focus {
      outline: 2px solid white;
      outline-offset: 2px;
    }

    /* Force override any conflicting styles */
    section.custom-contact-hero a {
      color: white;
      text-decoration: none;
    }

    section.custom-contact-hero a:hover,
    section.custom-contact-hero a:focus,
    section.custom-contact-hero a:active,
    section.custom-contact-hero a:visited {
      color: white;
      text-decoration: none;
    }

    .custom-contact-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 64px 16px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      background: white;
    }

    .custom-contact-info {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .custom-info-card {
      background: white;
      border-radius: 8px;
      padding: 32px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      transition: all 0.3s ease;
      overflow: hidden;
    }

    .custom-info-card:hover {
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .custom-info-card-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }

    .custom-info-icon {
      width: 48px;
      height: 48px;
      background: var(--brand-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brand-primary);
      font-size: 20px;
    }

    .custom-info-card h3 {
      font-size: 22px;
      font-weight: 600;
      line-height: 28px;
      color: var(--brand-dark);
      margin: 0;
    }

    .custom-info-card p {
      font-size: 16px;
      line-height: 28px;
      color: var(--brand-dark);
      margin: 0;
    }

    .custom-info-card a {
      color: var(--brand-primary);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .custom-info-card a:hover {
      color: var(--brand-dark);
      text-decoration: underline;
    }

    .custom-contact-form-section {
      background: white;
      border-radius: 8px;
      padding: 32px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    .custom-contact-form-section h2 {
      font-size: 28px;
      font-weight: 700;
      line-height: 36px;
      color: var(--brand-dark);
      margin-bottom: 24px;
    }

    .custom-contact-direct {
      border-left: 4px solid var(--brand-primary);
      background: var(--medical-gray);
      border-radius: 8px;
      padding: 28px;
    }

    .custom-contact-direct p {
      margin: 0;
      color: var(--brand-dark);
      font-size: 16px;
      line-height: 28px;
    }

    .custom-contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .custom-contact-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 12px 20px;
      border-radius: 8px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .custom-contact-action-primary {
      background: var(--brand-primary);
      color: white;
    }

    .custom-contact-action-secondary {
      border: 1px solid var(--brand-primary);
      color: var(--brand-primary);
      background: white;
    }

    .custom-contact-action:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    }

    .custom-form-group {
      margin-bottom: 24px;
    }

    .custom-form-label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: var(--brand-dark);
      margin-bottom: 8px;
    }

    .custom-form-control {
      width: 100%;
      padding: 12px;
      font-size: 14px;
      line-height: 20px;
      border: 1px solid #E5E7EB;
      border-radius: 4px;
      transition: all 150ms ease;
      font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    .custom-form-control:focus {
      outline: none;
      border: 2px solid var(--brand-primary);
      box-shadow: 0 0 0 2px rgba(55, 163, 161, 0.2);
    }

    .custom-form-textarea {
      min-height: 120px;
      resize: vertical;
    }

    .custom-error-message {
      display: block;
      color: #EF4444;
      font-size: 14px;
      margin-top: 4px;
      min-height: 20px;
    }

    .custom-submit-btn {
      width: 100%;
      padding: 16px 32px;
      font-size: 16px;
      font-weight: 600;
      color: white;
      background: var(--brand-primary);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .custom-submit-btn:hover {
      background: #37a3a1;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }

    .custom-submit-btn:focus {
      outline: 2px solid var(--brand-primary);
      outline-offset: 2px;
    }

    .custom-map-section {
      margin-top: 0;
      padding: 80px 16px;
      background: var(--medical-gray);
    }

    .custom-map-container {
      max-width: 1200px;
      margin: 0 auto;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    .custom-map-container iframe {
      width: 100%;
      height: 400px;
      border: none;
    }

    @media (max-width: 991px) {
      .custom-contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 767px) {
      .custom-contact-hero h1 {
        font-size: 32px;
        line-height: 40px;
      }

      .custom-contact-hero p {
        font-size: 16px;
        line-height: 24px;
      }

      .custom-contact-content {
        padding: 48px 16px;
      }

      .custom-info-card,
      .custom-contact-form-section {
        padding: 24px;
      }
    }
