 /* Color Variables */
 :root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --white: #ffffff;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'Lexend', sans-serif;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

.space-y-20 > * + * {
    margin-top: 5rem;
}

.block {
    display: block;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.relative {
    position: relative;
}

.bg-white {
    background-color: var(--white);
}

.bg-teal-600 {
    background-color: var(--teal-600);
}

.text-white {
    color: var(--white);
}

.text-gray-600 {
    color: var(--gray-600);
}

.text-gray-700 {
    color: var(--gray-700);
}

.text-gray-900 {
    color: var(--gray-900);
}

.border {
    border-width: 1px;
    border-style: solid;
}

.border-2 {
    border-width: 2px;
}

.border-gray-200 {
    border-color: var(--gray-200);
}

.border-gray-300 {
    border-color: var(--gray-300);
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.object-cover {
    object-fit: cover;
}

/* Main Page Styles */
.main-container {
    min-height: 100vh;
    background-color: var(--white);
}

/* Hero Section */
.hero-section {
    background: url('../photos/for-doctor-banner.png') center center/cover no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 4rem 1rem 6rem;
    min-height: 400px;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 0;
    pointer-events: none;
}
.hero-content, #hero-slider {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: var(--gray-100);
    border-radius: 9999px;
    margin-bottom: 2rem;
}

.hero-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--teal-600);
}

.hero-badge span {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 2rem 0;
}

.hero-title-gradient {
    background: linear-gradient(90deg, var(--white) 0%, var(--white) 50%, var(--white) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-description {
    font-size: 1.5rem;
    color: #fff;
    max-width: 56rem;
    margin: 0 auto 3rem;
    line-height: 1.625;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-primary {
    background-color: var(--teal-600);
    color: var(--white);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--teal-700);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--gray-400);
}

.btn-tertiary {
    background-color: transparent;
    color: #fff;
}

.btn-tertiary:hover {
    background-color: #fff;
    color: var(--teal-600);
}

/* Why Choose Section */
.why-choose-section {
    padding: 1rem 1rem;
    background-color: var(--white);
}

.section-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--gray-900);
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.section-description {
    f    cogrry 5r(--gray-600);
    max-width: 64rem;
    margin: 0 auto 5rem;
    line-height: 1.625;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 100%;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px auto;}

.feature-icon svg {
    width: 2.25rem;
    height: 2.25rem;
    color: var(--teal-600);
    display: block;
    margin: 0 auto;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.625;
}

/* Key Features Section */
.key-features-section {
    padding: 1rem 1rem;
    background-color: var(--white);
}

.key-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.feature-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon-lg {
    width: 4rem;
    height: 4rem;
    background-color: var(--teal-600);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto;
}

.feature-icon-lg svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--white);
    display: block;
    margin: 0 auto;
}

.feature-title-lg {
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.feature-description-lg {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.625;
}

.url-example {
    background-color: var(--teal-600);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.url-example p {
    font-weight: 700;
    font-size: 1.125rem;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
}

.feature-list-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--teal-600);
    flex-shrink: 0;
}

.feature-list-item span {
    font-size: 1.125rem;
    color: var(--gray-700);
}

.feature-image {
    background-color: var(--gray-100);
    border-radius: 1rem;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-section {
        padding: 5rem 1.5rem 6rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .why-choose-section {
        padding: 5rem 1.5rem 8rem;
    }

    .key-features-section {
        padding: 5rem 1.5rem 7rem;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 6rem 4rem;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-description {
        font-size: 1.5rem;
    }

    .why-choose-section {
        padding: 8rem 4rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .key-features-section {
        padding: 7rem 4rem;
    }

    .key-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }

    .feature-title-lg {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1280px) {
    .hero-section {
        padding: 6rem 6rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .why-choose-section {
        padding: 1rem 6rem;
    }

    .key-features-section {
        padding: 1rem 6rem;
    }
}

@media (min-width: 1536px) {
    .hero-section {
        padding: 6rem 6rem;
    }

    .why-choose-section {
        padding: 2rem 6rem;
    }

    .key-features-section {
        padding: 7rem 6rem;
    }
}        
        .fordoctor-container {
            max-width: 1400px;
            margin: 0 auto;
            font-family: 'Lexend', sans-serif;
        }

        /* Hero Section */
        .fordoctor-hero-section {
            background: #22919A;
            max-width: 1400px;
            margin: 0 auto;
            overflow: hidden;
            font-family: 'Lexend', sans-serif;
        }

        .fordoctor-hero-gradient {
            position: absolute;
            inset: 0;
        }

        .fordoctor-hero-content {
            position: relative;
            text-align: center;
            padding: 4rem 1rem 6rem;
        }

        .fordoctor-hero-title {
            color: #ffffff;
            font-size: 3rem;
            font-weight: 400;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 2rem;
        }

        .fordoctor-hero-subtitle {
            color: #D1D5DB;
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1.6;
            max-width: 50rem;
            margin: 0 auto 2rem;
        }

        .fordoctor-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 80rem;
            margin: 0 auto;
        }

        .fordoctor-feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(2px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1.5rem;
            padding: 20px 10px;
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .fordoctor-feature-card:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .fordoctor-feature-icon-bg {
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            flex-direction: column;
            text-align: center;
        }

        .fordoctor-feature-icon-bg h2 {
            color: #ffffff;
            font-size: 1.25rem;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 0.75rem;
            margin-top: 0;
        }

        .fordoctor-feature-icon-bg p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.875rem;
            line-height: 1.5;
            margin: 0;
            font-weight: 400;
        }

        .fordoctor-feature-icon {
            width: 2rem;
            height: 2rem;
            color: #ffffff;
            stroke-width: 1.5;
        }

        /* App Section */
        .fordoctor-app-section {
            padding: 5rem 0;
            background: #ffffff;
            font-family: 'Lexend', sans-serif;
        }

        .fordoctor-app-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        .fordoctor-app-content {
            order: 2;
        }

        .fordoctor-app-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .fordoctor-app-icon-bg {
            background: #22919A;
            border-radius: 1rem;
            padding: 1.25rem;
            flex-shrink: 0;
        }

        .fordoctor-app-icon {
            width: 1.5rem;
            height: 1.5rem;
            color: #ffffff;
            stroke-width: 1.5;
        }

        .fordoctor-app-title {
            color: #111827;
            font-size: 2.25rem;
            font-weight: 400;
            line-height: 1.1;
        }

        .fordoctor-app-subtitle {
            color: #4B5563;
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1.6;
            margin-bottom: 3rem;
        }

        .fordoctor-checklist {
            margin-bottom: 3rem;
        }

        .fordoctor-checklist-item {
            background: #F9FAFB;
            border: 1px solid #E2E8F0;
            border-radius: 0.75rem;
            padding: 1.25rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .fordoctor-checklist-icon {
            width: 1rem;
            height: 1rem;
            color: #4B5563;
            flex-shrink: 0;
        }

        .fordoctor-checklist-text {
            font-size: 20px;
        }

        .fordoctor-download-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .fordoctor-download-btn {
            background: #22919A;
            color: #ffffff;
            padding: 1rem 2rem;
            border-radius: 1rem;
            font-size: 22px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            transition: background-color 0.2s ease;
        }

        .fordoctor-download-btn:hover {
            background: #1F7A82;
        }

        .fordoctor-app-image {
            order: 1;
            display: flex;
            justify-content: center;
        }

        .fordoctor-image-container {
            position: relative;
        }

        .fordoctor-circle-bg {
            position: absolute;
            inset: 0;
            width: 24rem;
            height: 24rem;
            border: 45px solid #3CA2AA;
            border-radius: 50%;
            margin: auto;
        }

        .fordoctor-doctor-image {
            position: relative;
            z-index: 5;
            width: 20rem;
            height: 24rem;
            margin: auto;
            overflow: hidden;
            border-radius: 1.5rem;
        }

        .fordoctor-doctor-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* CTA Section */
        .fordoctor-cta-section {
            background: #22919A;
            padding: 5rem 0;
            text-align: center;
            max-width: 1400px;
            font-family: 'Lexend', sans-serif;
            margin: 0 auto;
        }

        .fordoctor-cta-title {
            color: #ffffff;
            font-size: 2.25rem;
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .fordoctor-cta-subtitle {
            color: #ffffff;
            font-size: 1.25rem;
            font-weight: 400;
            line-height: 1.4;
            max-width: 50rem;
            margin: 0 auto 3rem;
        }

        .fordoctor-cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            margin-bottom: 2rem;
        }

        .fordoctor-cta-btn-primary {
            background: #ffffff;
            color: #000000;
            padding: 1.25rem 2rem;
            border-radius: 0.75rem;
            font-size: 1.125rem;
            font-weight: 400;
            border: none;
            cursor: pointer;
            min-width: 190px;
            transition: background-color 0.2s ease;
        }

        .fordoctor-cta-btn-primary:hover {
            background: #f3f4f6;
        }

        .fordoctor-cta-btn-secondary {
            background: transparent;
            color: #ffffff;
            padding: 1.25rem 2rem;
            border-radius: 0.75rem;
            font-size: 1.125rem;
            font-weight: 400;
            border: 2px solid #ffffff;
            cursor: pointer;
            min-width: 200px;
            transition: background-color 0.2s ease;
        }

        .fordoctor-cta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .fordoctor-cta-disclaimer {
            color: #ffffff;
            font-size: 0.875rem;
            font-weight: 700;
        }

        /* Responsive Design */
        @media (min-width: 640px) {
            .fordoctor-hero-content {
                padding: 5rem 1.5rem 8rem;
            }

            .fordoctor-hero-title {
                font-size: 4rem;
            }

            .fordoctor-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .fordoctor-download-buttons,
            .fordoctor-cta-buttons {
                flex-direction: row;
            }

            .fordoctor-app-title {
                font-size: 3rem;
            }

            .fordoctor-cta-title {
                font-size: 3rem;
            }

            .fordoctor-cta-subtitle {
                font-size: 1.25rem;
            }
        }

        @media (min-width: 1024px) {
            .fordoctor-hero-content {
                padding: 1rem 0rem 2rem 0rem;
            }

            .fordoctor-hero-title {
                font-size: 5rem;
            }

            .fordoctor-hero-subtitle {
                font-size: 1.5rem;
            }

            .fordoctor-features-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 10px;
            }

            .fordoctor-app-grid {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
                max-width: 1400px;
            }

            .fordoctor-app-content {
                order: 1;
            }

            .fordoctor-app-image {
                order: 2;
            }

            .fordoctor-app-title {
                font-size: 2.25rem;
            }

            .fordoctor-circle-bg {
                width: 30rem;
                height: 30rem;
            }

            .fordoctor-doctor-image {
                width: 27.5rem;
                height: 32.5rem;
            }

            .fordoctor-cta-title {
                font-size: 2.25rem;
            }
        }

        @media (min-width: 1280px) {
            .fordoctor-container {
            }
        }

/* --- Custom Responsive Enhancements for All Devices (Mobile & Tablet) --- */
@media (max-width: 1023px) {
  .fordoctor-hero-content {
    padding: 2.5rem 0.5rem 3rem;
  }
  .fordoctor-hero-title {
    font-size: 2.2rem;
  }
  .fordoctor-hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  .fordoctor-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .fordoctor-feature-card {
    padding: 1.2rem 0.7rem;
    height: auto;
  }
  .fordoctor-feature-icon-bg {
    padding: 1rem;
  }
  .fordoctor-feature-icon-bg h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .fordoctor-feature-icon-bg p {
    font-size: 0.8rem;
  }
  .fordoctor-feature-icon {
    width: 1.3rem;
    height: 1.3rem;
  }
  .fordoctor-app-section {
    padding: 2.5rem 0 2rem 0;
  }
  .fordoctor-app-title {
    font-size: 1.5rem;
  }
  .fordoctor-app-header {
    gap: 0.7rem;
  }
  .fordoctor-app-icon-bg {
    padding: 0.7rem;
  }
  .fordoctor-app-icon {
    width: 1rem;
    height: 1rem;
  }
  .fordoctor-app-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  .fordoctor-checklist-item {
    padding: 0.7rem;
    font-size: 1rem;
  }
  .fordoctor-checklist-text {
    font-size: 1rem;
  }
  .fordoctor-circle-bg {
    width: 14rem;
    height: 14rem;
    border-width: 20px;
  }
  .fordoctor-doctor-image {
    width: 10rem;
    height: 13rem;
  }
  .fordoctor-cta-section {
    padding: 2.5rem 0;
  }
  .fordoctor-cta-title {
    font-size: 1.3rem;
  }
  .fordoctor-cta-subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .fordoctor-cta-buttons {
    gap: 0.5rem;
  }
  .fordoctor-cta-btn-primary,
  .fordoctor-cta-btn-secondary {
    padding: 0.7rem 1rem;
    font-size: 1rem;
    min-width: 120px;
  }
}
@media (max-width: 639px) {
  .fordoctor-container {
    padding: 0 0.5rem;
  }
  .fordoctor-hero-content {
    padding: 1.2rem 0.2rem 1.5rem;
  }
  .fordoctor-hero-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .fordoctor-hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }
  .fordoctor-features-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .fordoctor-feature-card {
    padding: 0.7rem 0.3rem;
    border-radius: 0.7rem;
  }
  .fordoctor-feature-icon-bg {
    padding: 0.5rem;
    border-radius: 0.5rem;
  }
  .fordoctor-feature-icon-bg h2 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }
  .fordoctor-feature-icon-bg p {
    font-size: 0.7rem;
    line-height: 1.3;
  }
  .fordoctor-feature-icon {
    width: 1rem;
    height: 1rem;
  }
  .fordoctor-app-section {
    padding: 1rem 0 1rem 0;
  }
  .fordoctor-app-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .fordoctor-app-title {
    font-size: 1.1rem;
  }
  .fordoctor-app-header {
    gap: 0.3rem;
  }
  .fordoctor-app-icon-bg {
    padding: 0.3rem;
    border-radius: 0.3rem;
  }
  .fordoctor-app-icon {
    width: 0.8rem;
    height: 0.8rem;
  }
  .fordoctor-app-subtitle {
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
  }
  .fordoctor-checklist-item {
    padding: 0.4rem;
    font-size: 0.9rem;
    border-radius: 0.3rem;
  }
  .fordoctor-checklist-text {
    font-size: 0.8rem;
  }
  .fordoctor-circle-bg {
    width: 7rem;
    height: 7rem;
    border-width: 10px;
  }
  .fordoctor-doctor-image {
    width: 5rem;
    height: 7rem;
    border-radius: 0.7rem;
  }
  .fordoctor-cta-section {
    padding: 1rem 0;
  }
  .fordoctor-cta-title {
    font-size: 1rem;
  }
  .fordoctor-cta-subtitle {
    font-size: 0.8rem;
    margin-bottom: 0.7rem;
  }
  .fordoctor-cta-buttons {
    gap: 0.2rem;
  }
  .fordoctor-cta-btn-primary,
  .fordoctor-cta-btn-secondary {
    padding: 0.4rem 0.7rem;
    font-size: 0.8rem;
    min-width: 80px;
    border-radius: 0.3rem;
  }
  /* Ensure images and icons are always responsive */
  img, svg {
    max-width: 100%;
    height: auto;
  }
}