/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f8f9fa;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #1a365d;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-logo a {
    color: white !important;
    text-decoration: none !important;
    transition: opacity 0.3s ease;
}

.nav-logo a:visited {
    color: white !important;
    text-decoration: none !important;
}

.nav-logo a:hover {
    color: white !important;
    text-decoration: none !important;
    opacity: 0.8;
}

.nav-logo a:active {
    color: white !important;
    text-decoration: none !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Mobile-first approach - show hamburger by default on small screens */

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #2c5282;
}

.nav-contact {
    background-color: #319795 !important;
    font-weight: bold;
}

.nav-contact:hover {
    background-color: #2c7a7b !important;
}

/* Hero section */
.hero {
    background: 
        linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(44, 82, 130, 0.85) 100%),
        url('https://seniorhealthwell.com/assets/images/hero-background.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Fallback for when image is not available */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    z-index: -1;
}


.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 300;
}

/* Challenges Solutions Section */
.challenges-solutions {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.challenges-solutions h2 {
    font-family: Georgia, 'Times New Roman', serif;
    text-align: center;
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.solution-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #319795;
    position: relative;
}

.solution-card::before {
    content: '🔍';
    position: absolute;
    top: -12px;
    right: 20px;
    background: #319795;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.solution-card:last-child::before {
    content: '✨';
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.challenge {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.challenge h3 {
    color: #e53e3e;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.challenge p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

.solution h4 {
    color: #319795;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.solution p {
    color: #2d3748;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.wellness-summary {
    text-align: center;
    margin-top: 4rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    border-radius: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.wellness-summary p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.wellness-summary strong {
    font-weight: 600;
}

/* Page header */
.page-header {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.page-header p {
    font-size: 1.25rem;
    color: white;
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #319795;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(49, 151, 149, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background-color: #2c7a7b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 151, 149, 0.3);
}

.cta-button:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px rgba(49, 151, 149, 0.2);
}

/* Features section */
.features {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
}

.features h2 {
    font-family: Georgia, 'Times New Roman', serif;
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: #1a365d;
    font-weight: 600;
    line-height: 1.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.feature-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #319795 0%, #2c7a7b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
}

.feature h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
}

.feature p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Feature images */
.feature-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.02);
}

/* Services detail */
.services-detail {
    padding: 4rem 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-category {
    margin-bottom: 0;
    padding: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    height: fit-content;
}

.service-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.service-category-content {
    padding: 2.5rem 2rem;
}


.service-category h2 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
    font-weight: 600;
    text-align: center;
}

.service-category ul {
    list-style-type: none;
    padding-left: 0;
}

.service-category li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
    color: #4a5568;
    line-height: 1.5;
}

.service-category li:before {
    content: "✓";
    color: #319795;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.service-category li:last-child {
    border-bottom: none;
}

.service-image {
    width: 100%;
    max-width: 400px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 1.5rem auto;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Who we serve section */
.who-we-serve {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e6fffa 0%, #f0fdfa 100%);
}

.who-we-serve h2 {
    font-family: Georgia, 'Times New Roman', serif;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a365d;
    font-size: 2.5rem;
    font-weight: 600;
}

.who-we-serve p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.serve-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.serve-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.serve-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.serve-card p {
    color: #4a5568;
    font-size: 1rem;
    margin: 0;
    text-align: left;
    line-height: 1.5;
}

.serve-list {
    list-style-type: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.serve-list li {
    background-color: white;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #38a169;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* About content */
.about-content {
    padding: 4rem 0;
}

.about-section {
    margin-bottom: 4rem;
}

/* Credentials Section */
.credentials-section {
    margin: 5rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f0fdfa 0%, #e6fffa 100%);
    border-radius: 20px;
}

.credentials-section h2 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
}

.credentials-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.credential-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.credential-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.credential-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #1a365d;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.institution-list p {
    font-weight: 600;
    color: #2c5282;
    margin-bottom: 0.5rem;
    text-align: left;
    font-size: 1rem;
}

.institution-list .additional {
    font-weight: 400;
    color: #4a5568;
    font-style: italic;
}

.expertise-list p {
    color: #4a5568;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    text-align: left;
}

.expertise-list p:before {
    content: "•";
    color: #319795;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-section h2 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Approach Section */
.approach-section {
    margin: 4rem 0;
}

.approach-section h2 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
}

.approach-section > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.approach-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #1a365d;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.approach-card p {
    color: #4a5568;
    line-height: 1.5;
    text-align: left;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 6px;
    border-top: 3px solid #4a90e2;
}

.benefit h3 {
    color: #2c5282;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit p {
    color: #4a5568;
    font-size: 0.95rem;
}

/* Contact section */
.contact-section {
    background-color: #e2e8f0;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-section h2 {
    color: #2c5282;
    margin-bottom: 1rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: Georgia, 'Times New Roman', serif;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.cta-section p {
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-section .cta-button {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    margin-top: 1rem;
}

/* Disclaimer */
.disclaimer {
    background-color: #f7fafc;
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
}

.disclaimer p {
    font-size: 0.60rem;
    color: #4a5568;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

/* Footer */
footer {
    background-color: #000000;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Hamburger menu styles - Direct approach */
.hamburger {
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    background: none;
    border: none;
    /* Show on mobile by default, hide on desktop */
    display: flex;
}

/* Only hide on very large desktop screens */
@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

/* Force show hamburger on all mobile/tablet devices */
@media (max-width: 1023px) {
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #319795;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Clean hamburger design */
.hamburger {
    background-color: transparent !important;
    border: none !important;
    border-radius: 4px !important;
    margin: 0.25rem !important;
    padding: 0.5rem !important;
    position: relative !important;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        gap: 1rem;
    }
    
    /* Proper hamburger menu - hidden by default */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        padding: 2rem 0;
        display: flex;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-link {
        padding: 1rem;
        font-size: 1.1rem;
        display: block;
        color: #2d3748;
        border-bottom: 1px solid #f7fafc;
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: #f0fdfa;
        color: #319795;
    }

    .nav-contact {
        background-color: #319795 !important;
        color: white !important;
        margin: 1rem 2rem;
        border-radius: 8px;
        border-bottom: none !important;
    }

    .nav-contact:hover {
        background-color: #2c7a7b !important;
    }
    
    .hero {
        background-attachment: scroll;
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-content {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .feature h3 {
        font-size: 1.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .serve-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .page-header {
        padding: 3rem 0;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .features, .services-detail, .about-content {
        padding: 2rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-category-content {
        padding: 2rem 1.5rem;
    }
    
    .service-image {
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .serve-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .serve-card {
        padding: 1.5rem;
    }
    
    .who-we-serve h2 {
        font-size: 2rem;
    }
    
    .credentials-grid, .approach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .credential-card, .approach-card {
        padding: 1.5rem;
    }
    
    .credentials-section {
        padding: 2rem 0;
        margin: 3rem 0;
    }
    
    .credentials-section h2 {
        font-size: 2rem;
    }
    
    .approach-section h2 {
        font-size: 1.8rem;
    }
    
    .different-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .different-card {
        padding: 1.5rem;
    }
    
    .different-section {
        padding: 2rem 0;
        margin: 3rem 0;
    }
    
    .different-section h2 {
        font-size: 2rem;
    }
    
    .different-icon {
        font-size: 2.5rem;
        height: 60px;
    }
    
}

/* How We're Different Section */
.different-section {
    margin: 5rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    border-radius: 20px;
}

.different-section h2 {
    font-family: Georgia, 'Times New Roman', serif;
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
}

.different-section > p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #f7fafc;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.different-card {
    background: white;
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.different-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.different-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.different-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #1a365d;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.different-card p {
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

/* What Makes Us Different - Home Page */
.what-makes-different {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0fdfa 0%, #e6fffa 100%);
}

.what-makes-different h2 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
}

.different-intro {
    font-size: 1.2rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

.different-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.highlight {
    text-align: center;
    padding: 1.5rem;
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.highlight h3 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #1a365d;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.learn-more-link {
    text-align: center;
    margin-top: 2rem;
}

.learn-more-link a {
    color: #319795;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.learn-more-link a:hover {
    color: #2c7a7b;
}

/* FAQ Styles */
.faq-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.faq-category {
    margin-bottom: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-category h2 {
    font-family: Georgia, 'Times New Roman', serif;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f7fafc;
    color: #319795;
}

.faq-question[aria-expanded="true"] {
    background-color: #e6fffa;
    color: #319795;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #319795;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: #fafafa;
}

.faq-answer.active {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-cta h3 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.faq-cta p {
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .different-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .what-makes-different h2 {
        font-size: 1.8rem;
    }
    
    .highlight-icon {
        font-size: 2rem;
        height: 50px;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 1rem 1.5rem;
    }
    
    .faq-category h2 {
        padding: 1rem 1.5rem;
        font-size: 1.3rem;
    }
}

/* Resources Page Styles */
.resources-content {
    padding: 4rem 0;
    background: #f8fafc;
}

.resource-category {
    margin-bottom: 5rem;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    justify-content: center;
    gap: 1rem;
}

.category-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #2d3748 0%, #1a365d 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(45, 55, 72, 0.3);
}

.resource-category h2 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #1a365d;
    font-size: 2.2rem;
    font-weight: 600;
    margin: 0;
}

.category-description {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 3rem;
    font-style: italic;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.resource-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #1a365d;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.resource-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.resource-link {
    color: #319795;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.resource-link:hover {
    color: #2d7d7d;
}

.resource-link:focus {
    outline: 2px solid #319795;
    outline-offset: 2px;
}

/* Mobile responsiveness for Resources */
@media (max-width: 768px) {
    .resources-content {
        padding: 3rem 0;
    }
    
    .resource-category {
        margin-bottom: 4rem;
    }
    
    .category-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .category-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .resource-category h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .category-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .resource-card {
        padding: 1.5rem;
    }
    
    .resource-card h3 {
        font-size: 1.2rem;
    }
}

/* Source/Author Info Styling */
.source-info {
    font-size: 0.8rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Visual Dividers Between Sections */
.resource-category + .resource-category {
    position: relative;
    margin-top: 6rem;
}

.resource-category + .resource-category::before {
    content: '';
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    height: 1px;
    background: #cbd5e1;
}

/* Health Topics Section - Light Blue Background */
.health-topics-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.health-topics-section .category-header {
    margin-bottom: 1.5rem;
}

.health-topics-section .category-description {
    margin-bottom: 3.5rem;
}

/* Podcasts Section - Light Purple/Lavender Background */
.podcasts-section {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.podcasts-section .category-header {
    margin-bottom: 1.5rem;
}

.podcasts-section .category-description {
    margin-bottom: 3.5rem;
}

@media (max-width: 768px) {
    .health-topics-section {
        padding: 2rem 1rem;
        margin: 1rem 0;
        border-radius: 12px;
    }
    
    .podcasts-section {
        padding: 2rem 1rem;
        margin: 1rem 0;
        border-radius: 12px;
    }
    
    .source-info {
        font-size: 0.75rem;
    }
    
    .resource-category + .resource-category {
        margin-top: 4rem;
    }
    
    .resource-category + .resource-category::before {
        top: -2rem;
        width: 80px;
    }
}