* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #3A643C;
    --primary-green-dark: #33643F;
    --light-beige: #FFF7E2;
    --light-yellow: #FFE6A5;
    --cream: #FFEEC3;
    --light-cream: #FFF8E6;
    --dark-gray: #474747;
    --medium-gray: #666666;
    --light-gray: #F0F0F0;
    --white: #FFFFFF;
    --text-dark: #0C0C0C;
    --border-color: #E5E5E5;
    --container-padding: 1.5rem;
    --section-padding: 3rem 1.5rem;
    --section-padding-lg: 4rem 1.5rem;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles - Responsive */
header {
    background: var(--light-beige);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.04);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-icon {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.phone-number {
    font-size: 1rem;
    color: var(--primary-green);
    white-space: nowrap;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
    padding: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-green);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-circle {
    width: 2.5rem;
    height: 2.5rem;
    background: #D2D9D2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--primary-green);
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-circle:hover {
    background: #C4C9C4;
    transform: translateY(-2px);
}

.notification-badge {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    background: var(--primary-green);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 0.75rem;
    min-width: 1.2rem;
    text-align: center;
}

/* Mobile Top Bar */
.mobile-top-bar {
    background: #373636;
    color: #D9D9D9;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-top-bar span {
    font-size: 0.9rem;
    text-align: center;
    flex: 1;
}

.join-now-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.join-now-btn:hover {
    background-color: #2a4a2c;
    transform: translateY(-2px);
}

/* Hero Section - Responsive */
.hero-section {
    background: var(--light-beige);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 992px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
    }
}

.hero-text {
    flex: 1;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 0.75rem;
    display: block;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #2a4a2c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(58, 100, 60, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 576px) {
    .stats {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: #4C4C4C;
    margin-top: 0.25rem;
}

.divider {
    display: none;
}

@media (min-width: 576px) {
    .divider {
        display: block;
        width: 1px;
        height: 2.5rem;
        background: rgba(131, 167, 133, 0.5);
    }
}

.hero-image {
    flex: 1;
    position: relative;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-image {
        min-height: 400px;
    }
}

.doctor-main-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

@media (min-width: 768px) {
    .doctor-main-image {
        max-width: 500px;
    }
}

@media (min-width: 1200px) {
    .doctor-main-image {
        max-width: 600px;
    }
}

/* Trusted By Section */
.trusted-section {
    background: var(--light-cream);
    padding: var(--section-padding);
    text-align: center;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1rem;
    color: #4C4C4C;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.25rem;
    }
}

.logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.logo-item {
    width: 120px;
    height: 60px;
    background: var(--white);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .logo-item {
        width: 140px;
        height: 80px;
    }
}

/* Features Section */
.features-section {
    background: var(--light-beige);
    padding: var(--section-padding-lg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.75rem;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.section-header p {
    font-size: 1rem;
    color: #4C4C4C;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-header p {
        font-size: 1.25rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .feature-card {
        flex-direction: row;
        align-items: flex-start;
    }
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: #DBDCC4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--primary-green);
    font-size: 1.8rem;
}

.feature-content h3 {
    font-size: 1.25rem;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .feature-content h3 {
        font-size: 1.5rem;
    }
}

.feature-content p {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Forum Preview */
.forum-preview {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 100%;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .forum-preview {
        max-width: 300px;
    }
}

.forum-tabs {
    display: flex;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 1rem;
}

.forum-tab {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #B8B8B8;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    background: none;
    border: none;
}

.forum-tab:hover {
    color: var(--primary-green);
}

.forum-tab.active {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

.forum-post {
    border-bottom: 1px solid #EDEDED;
    padding: 12px 0;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.user-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #D9D9D9;
}

.user-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-green);
}

.post-time {
    font-size: 10px;
    color: #8D8D8D;
}

.post-title {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
}

.post-content {
    font-size: 10px;
    color: #1F1F1F;
    line-height: 1.4;
}

.post-stats {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.post-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #8D8D8D;
    cursor: pointer;
    transition: color 0.3s;
}

.post-stat:hover {
    color: var(--primary-green);
}

.post-stat i {
    font-size: 10px;
}

/* Session Mode Section */
.session-mode {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .session-mode {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }
}

.session-options {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .session-options {
        margin: 0;
    }
}

.session-type-btn {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #E5E5E5;
    border-radius: 0.5rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1F1F1F;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.session-type-btn:hover {
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.session-type-btn.active {
    background: #F2FBF2;
    border: 1px solid rgba(58, 100, 59, 0.52);
    color: var(--primary-green);
}

.session-types {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.session-price {
    font-size: 0.75rem;
    color: #606060;
}

.session-type-btn.active .session-price {
    color: var(--primary-green);
}

.chat-bubble {
    background: white;
    padding: 1rem;
    border-radius: 0 1rem 1rem 1rem;
    border: 1px solid #E5E5E5;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 1rem;
}

/* Wallet Section */
.wallet-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .wallet-section {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }
}

.wallet-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
}

.wallet-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.wallet-balance {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 1rem 0;
}

.btn-withdraw {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-withdraw:hover {
    background-color: #2a4a2c;
    transform: translateY(-2px);
}

.recent-withdrawals {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.withdrawal-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #F0F0F0;
}

.withdrawal-date {
    font-weight: 500;
}

.withdrawal-type {
    font-size: 0.875rem;
    color: #A0A0A0;
}

.withdrawal-amount {
    font-weight: 700;
}

/* Consultation Buttons */
.consultation-buttons {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.consultation-btn {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #E3E3E3;
    border-radius: 0.5rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.consultation-btn:hover {
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.consultation-type {
    font-size: 0.75rem;
    font-weight: 700;
    color: #646665;
}

.consultation-price {
    font-size: 0.625rem;
    color: #646665;
}

/* Doctor Profile Card */
.doctor-profile-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .doctor-profile-card {
        flex-direction: row;
    }
}

.doctor-avatar {
    width: 100px;
    height: 100px;
    background: #D9D9D9;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.doctor-specialization {
    color: #646665;
    margin: 0.5rem 0;
}

/* Onboarding Section */
.onboarding-section {
    background: var(--light-beige);
    padding: var(--section-padding-lg);
    text-align: center;
}

.onboarding-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto;
}

.step-card {
    background: var(--light-beige);
    border: 1px solid rgba(51, 100, 63, 0.5);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(51, 100, 63, 0.1);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--primary-green);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 576px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background: var(--light-beige);
    border: 1px solid #DCD8CD;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin: 0 auto 1rem;
}

/* Testimonials */
.testimonials-section {
    padding: var(--section-padding-lg);
    background: var(--light-cream);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .testimonial-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--cream);
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: #D9D9D9;
    border-radius: 50%;
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.testimonial-rating i {
    color: #FFB800;
    font-size: 0.875rem;
}

.testimonial-text {
    color: #7E7E7E;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.faq-category-btn {
    font-size: 1.5rem;
    color: #414141;
    padding-bottom: 0.5rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.3s ease;
}

.faq-category-btn:hover {
    color: var(--primary-green);
}

.faq-category-btn.active {
    color: var(--primary-green);
    border-bottom: 2px solid var(--primary-green);
}

.faq-item {
    border-bottom: 1px solid #CDCDCD;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 247, 226, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 1.1rem;
    color: #414141;
    font-weight: 500;
}

.faq-toggle {
    font-size: 1.2rem;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-answer {
    color: #4D4D4D;
    margin-top: 0.5rem;
    display: none;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Download Section */
.download-section {
    background: #FFEDBF;
    padding: var(--section-padding-lg);
    position: relative;
    overflow: hidden;
}

.download-content {
    max-width: 600px;
}

.download-content .section-title {
    color: var(--primary-green);
    text-align: left;
}

.download-content .section-subtitle {
    text-align: left;
    margin-bottom: 2rem;
}

.features-grid-small {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 576px) {
    .features-grid-small {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #9E9E9E;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.5);
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-small i {
    color: white;
    font-size: 1.5rem;
}

.feature-text {
    color: var(--primary-green-dark);
    font-weight: 500;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.app-download-btn {
    width: 150px;
    height: 45px;
    background: #D9D9D9;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-download-btn:hover {
    background: #C4C4C4;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding-lg);
    background: var(--light-beige);
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 992px) {
    .contact-container {
        flex-direction: row;
    }
}

.contact-form {
    flex: 1;
    border: 1px solid #C2C2C2;
    border-radius: 0.5rem;
    padding: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 2px solid #C2C2C2;
    font-size: 1rem;
    color: #7E7E7E;
    background: transparent;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-bottom-color: var(--primary-green);
}

.contact-form .btn-primary {
    width: 100%;
}

.contact-support {
    flex: 1;
    background: #F6F6F6;
    border-radius: 0.5rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.contact-support i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-support h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.contact-support p {
    color: #666;
}

/* Footer */
footer {
    background: #DBDCC4;
    padding: 3rem 1.5rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h3 {
    font-size: 1.5rem;
    color: var(--primary-green-dark);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    color: #4C4C4C;
    transition: color 0.3s;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.contact-info p {
    color: #4C4C4C;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-cream);
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(51, 100, 63, 0.2);
    margin-top: 2rem;
    color: #4C4C4C;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--light-beige);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-green);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast i {
    font-size: 1.2rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--medium-gray);
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary-green);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.d-none { display: none; }
.d-block { display: block; }

@media (min-width: 768px) {
    .d-md-none { display: none; }
    .d-md-block { display: block; }
}

/* Fallback styles if image doesn't load */
.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 500px;
    background: linear-gradient(135deg, #FFE6A5 0%, #FFF7E2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-placeholder i {
    font-size: 3rem;
    color: var(--primary-green);
    opacity: 0.5;
}

/* Add this to your existing CSS in style.css */

.logo-item {
    width: 120px;
    height: 60px;
    background: var(--white);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    overflow: hidden; /* Ensures images don't overflow */
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Maintains aspect ratio */
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

@media (min-width: 768px) {
    .logo-item {
        width: 140px;
        height: 80px;
    }
}

/* Add this to your existing CSS in style.css */

.logo-item {
    width: 120px;
    height: 60px;
    background: var(--white);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    overflow: hidden; /* Ensures images don't overflow */
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Maintains aspect ratio */
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

@media (min-width: 768px) {
    .logo-item {
        width: 140px;
        height: 80px;
    }
}
/* Update doctor-avatar styles */
.doctor-avatar {
    width: 100px;
    height: 100px;
    background: #D9D9D9;
    border-radius: 0.5rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.doctor-photo:hover {
    transform: scale(1.05);
}

.avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFE6A5 0%, #FFF7E2 100%);
    border-radius: 0.5rem;
}

.avatar-fallback i {
    font-size: 2rem;
    color: var(--primary-green);
    opacity: 0.7;
}
/* Contact Support Image Styles - Medium Square */
.contact-support {
    flex: 1;
    background: #F6F6F6;
    border-radius: 0.5rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.support-image {
    width: 180px; /* Medium size - square */
    height: 180px; /* Medium size - square */
    margin-bottom: 1.5rem;
    border-radius: 12px; /* Slightly rounded corners */
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-green);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(58, 100, 60, 0.2);
    border-color: var(--primary-green-dark);
}

.support-photo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the square */
    display: block;
}

.image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #DBDCC4 0%, #FFF7E2 100%);
    border-radius: 12px;
}

.image-fallback i {
    font-size: 3.5rem;
    color: var(--primary-green);
    opacity: 0.9;
}

.contact-support h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-support p {
    color: #666;
    line-height: 1.6;
    max-width: 280px;
    margin-top: 0.5rem;
}
/* Download Buttons with Images */
.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.app-download-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: left;
}

.app-download-btn:hover {
    background: #F2FBF2;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(58, 100, 60, 0.15);
    border-color: var(--primary-green-dark);
}

.store-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.icon-fallback {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-fallback i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.btn-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green);
    white-space: nowrap;
}

/* Alternative design with gradient backgrounds */
.app-download-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border: 2px solid var(--primary-green);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.app-download-btn:hover {
    background: linear-gradient(135deg, #F2FBF2 0%, #E8F5E9 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(58, 100, 60, 0.2);
    border-color: var(--primary-green-dark);
}
/* Responsive adjustments */
@media (max-width: 576px) {
    .download-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .app-download-btn {
        width: 100%;
        justify-content: center;
        min-width: auto;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .app-download-btn {
        min-width: 160px;
        padding: 0.7rem 1.2rem;
    }
    
    .store-icon {
        width: 25px;
        height: 25px;
    }
    
    .btn-text {
        font-size: 0.9rem;
    }
}

/* Add subtle animation */
.app-download-btn {
    animation: slideUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

#googlePlayBtn {
    animation-delay: 0.1s;
}

#appStoreBtn {
    animation-delay: 0.2s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}