/*
* Modern Wellness Guide - Main Stylesheet
* A clean, soothing design for a holistic wellness website targeting women aged 30-55
*/

/* ========== GLOBAL STYLES ========== */

:root {
    /* Primary Colors */
    --primary: #5e8b7e;         /* Soft Sage Green */
    --primary-light: #a7c4bc;   /* Light Sage */
    --primary-dark: #2f5d62;    /* Deep Teal */
    
    /* Secondary Colors */
    --secondary: #dfb6b2;       /* Dusty Rose */
    --secondary-light: #f2d5d5; /* Light Pink */
    --secondary-dark: #bc8f8f;  /* Rose Taupe */
    
    /* Neutral Colors */
    --neutral-light: #f8f5f2;   /* Off White */
    --neutral-medium: #e8e4e1;  /* Light Gray */
    --neutral-dark: #5a5a5a;    /* Dark Gray */
    --dark: #333333;            /* Almost Black */
    
    /* Font Families */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
    
    /* Font Sizes */
    --h1-size: 2.5rem;
    --h2-size: 2rem;
    --h3-size: 1.5rem;
    --h4-size: 1.25rem;
    --body-size: 1rem;
    --small-size: 0.875rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--body-font);
    color: var(--dark);
    font-size: var(--body-size);
    line-height: 1.7;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 {
    font-size: var(--h1-size);
}

h2 {
    font-size: var(--h2-size);
}

h3 {
    font-size: var(--h3-size);
}

h4 {
    font-size: var(--h4-size);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.btn {
    font-weight: 500;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-outline-secondary {
    background-color: transparent;
    border-color: var(--secondary);
    color: var(--secondary-dark);
}

.btn-outline-secondary:hover, .btn-outline-secondary:focus {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

.section-title {
    font-family: var(--heading-font);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.section-subtitle {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--primary-light);
    margin: 1.5rem auto;
}

.bg-light {
    background-color: var(--neutral-light) !important;
}

/* ========== HEADER & NAVIGATION ========== */

header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-left: 0.5rem;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--neutral-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color var(--transition-fast);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-light .navbar-toggler {
    border-color: var(--primary-light);
}

.download-btn {
    background-color: var(--primary);
    color: white !important;
    border-radius: var(--radius-md);
    padding: 8px 16px !important;
    margin-left: 0.5rem;
    transition: background-color var(--transition-fast);
}

.download-btn:hover {
    background-color: var(--primary-dark);
}

/* ========== HERO SECTION ========== */

.hero-section {
    padding: 5rem 0;
    background-color: var(--neutral-light);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    background-image: url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 300px;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: 30px;
}

@media (min-width: 992px) {
    .hero-image {
        height: 450px;
        margin-top: 0;
    }
}

/* ========== NAD+ SECTION ========== */

.nad-section {
    background-color: var(--neutral-light);
    position: relative;
    padding: 4rem 0;
}

.nad-product-image {
    max-height: 400px;
    transition: transform var(--transition-normal);
}

.nad-product-image:hover {
    transform: translateY(-5px);
}

.nad-section .lead {
    color: var(--primary-dark);
    font-weight: 500;
    line-height: 1.5;
}

/* ========== INTRO SECTION ========== */

.intro-section {
    padding: 5rem 0;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
}

/* ========== BENEFITS SECTION ========== */

.benefits-section {
    padding-top: 4rem;
    padding-bottom: 5rem;
}

.benefit-card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    background-color: white;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    color: var(--primary);
    font-size: 2.5rem;
}

.benefit-card .card-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

/* ========== FEATURED ARTICLES ========== */

.featured-articles {
    padding: 5rem 0;
}

.article-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.article-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.stress-bg {
    background-image: url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.sleep-bg {
    background-image: url('https://images.unsplash.com/photo-1541781774459-bb2af2f05b55?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.holistic-bg {
    background-image: url('https://images.unsplash.com/photo-1552693673-1bf958298935?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.article-card .card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.article-link {
    color: var(--primary);
    font-weight: 500;
    padding: 0;
}

.article-link:hover {
    color: var(--primary-dark);
}

/* ========== LEAD MAGNET CTA ========== */

.lead-magnet-cta {
    padding: 5rem 0;
    background-color: var(--neutral-light);
}

.cta-box {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.cta-title {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-dark);
    margin-bottom: 1.5rem;
}

.cta-text {
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
}

.ebook-mockup {
    height: 300px;
    background-image: url('/static/images/lead-magnet-cover.jpg');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transform: perspective(800px) rotateY(10deg);
    transition: transform var(--transition-normal);
}

.ebook-mockup:hover {
    transform: perspective(800px) rotateY(0deg);
}

.ebook-mockup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(255,255,255,0));
    pointer-events: none;
}

.ebook-mockup-small {
    height: 180px;
    background-image: url('/static/images/lead-magnet-cover.jpg');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.ebook-mockup-small:hover {
    transform: translateY(-5px);
}

/* ========== TESTIMONIALS ========== */

.testimonials {
    padding: 5rem 0;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    font-style: italic;
    color: var(--neutral-dark);
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content:before {
    content: """;
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--primary-light);
    position: absolute;
    left: -5px;
    top: -20px;
    opacity: 0.3;
}

.testimonial-author h5 {
    color: var(--primary-dark);
    font-weight: 600;
}

/* ========== NEWSLETTER ========== */

.newsletter-section {
    padding: 5rem 0;
    background-color: var(--primary-light);
    position: relative;
}

.newsletter-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.1;
    z-index: 0;
}

.newsletter-section .section-title,
.newsletter-section .section-subtitle {
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
}

.newsletter-form {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    box-shadow: var(--shadow-md);
}

/* ========== PAGE HEADERS ========== */

.page-header {
    background-color: var(--primary-light);
    padding: 6rem 0 4rem;
    position: relative;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.1;
    z-index: 0;
}

.page-title {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    color: var(--neutral-dark);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

/* Blog Header */
.blog-header {
    background-color: var(--secondary-light);
}

.blog-header:before {
    background-color: var(--secondary);
}

.blog-header .page-title {
    color: var(--secondary-dark);
}

/* Article Header */
.article-header {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.article-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.article-meta {
    font-size: var(--small-size);
    position: relative;
    z-index: 1;
}

.meta-date {
    color: white;
    opacity: 0.8;
}

.article-title {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

/* Lead Magnet Header */
.lead-magnet-header {
    background-color: var(--secondary-light);
}

.lead-magnet-header:before {
    background-color: var(--secondary);
}

.lead-magnet-header .page-title {
    color: var(--secondary-dark);
}

/* Thank You Header */
.thank-you-header {
    background-color: var(--primary-light);
}

.thank-you-header:before {
    background-color: var(--primary);
}

/* Contact Header */
.contact-header {
    background-color: var(--secondary-light);
}

.contact-header:before {
    background-color: var(--secondary);
}

.contact-header .page-title {
    color: var(--secondary-dark);
}

/* About Header */
.about-header {
    background-color: var(--primary-light);
}

.about-header:before {
    background-color: var(--primary);
}

/* Legal Header */
.legal-header {
    background-color: var(--neutral-medium);
}

.legal-header:before {
    background-color: var(--neutral-dark);
}

/* ========== BLOG PAGE ========== */

.blog-articles {
    padding: 4rem 0;
}

.blog-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-img-container {
    height: 100%;
}

.blog-img {
    height: 100%;
    min-height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-meta {
    color: var(--secondary-dark);
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.blog-excerpt {
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.widget-header {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 0.5rem;
}

.widget-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-light);
}

.lead-widget {
    background-color: var(--secondary-light);
}

.widget-title {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}

.widget-subtitle {
    font-size: 0.9rem;
    color: var(--secondary-dark);
    margin-bottom: 1rem;
}

.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.topic-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--neutral-light);
    border-radius: var(--radius-sm);
    color: var(--neutral-dark);
    font-size: var(--small-size);
    transition: all var(--transition-fast);
}

.topic-tag:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.social-buttons {
    display: flex;
    gap: 12px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--neutral-light);
    color: var(--primary);
    transition: all var(--transition-fast);
}

.social-button:hover {
    background-color: var(--primary);
    color: white;
}

.social-button-lg {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
}

/* ========== ARTICLE PAGE ========== */

.article-content {
    padding: 4rem 0;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-body h2 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--primary-dark);
    margin: 2rem 0 1rem;
}

.article-body h3 {
    font-family: var(--heading-font);
    font-weight: 500;
    color: var(--secondary-dark);
    margin: 1.5rem 0 0.8rem;
}

.article-body p {
    margin-bottom: 1.5rem;
    color: var(--neutral-dark);
}

.article-body ul, .article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-share {
    color: var(--neutral-dark);
}

.share-title {
    font-weight: 500;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--neutral-light);
    color: var(--primary);
    transition: all var(--transition-fast);
}

.share-btn:hover {
    background-color: var(--primary);
    color: white;
}

.article-cta {
    background-color: var(--neutral-light);
    border-radius: var(--radius-lg);
}

.cta-title {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-text {
    margin-bottom: 1rem;
}

.related-articles {
    padding: 4rem 0;
}

.related-article-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.related-article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.related-article-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.related-article-link {
    font-weight: 500;
    color: var(--primary);
}

.related-article-link:hover {
    color: var(--primary-dark);
}

/* ========== LEAD MAGNET PAGE ========== */

.lead-magnet-content {
    padding: 4rem 0;
}

.lead-magnet-info h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.lead-magnet-form-container {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--primary-light);
}

.lead-magnet-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--primary-light);
    opacity: 0.2;
    border-radius: 0 0 0 100px;
}

.lead-magnet-form-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: var(--secondary-light);
    opacity: 0.2;
    border-radius: 0 80px 0 0;
}

.form-title {
    color: var(--primary-dark);
    font-weight: 600;
    text-align: center;
}

.privacy-notice {
    color: var(--neutral-dark);
}

.privacy-notice a {
    color: var(--primary);
    text-decoration: underline;
}

.lead-magnet-testimonials {
    padding: 4rem 0;
}

.lead-magnet-faq {
    padding: 4rem 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--neutral-light);
    color: var(--primary-dark);
    font-weight: 500;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.accordion-body {
    background-color: white;
    border-top: none;
    color: var(--neutral-dark);
}

.final-cta {
    background-color: var(--secondary-light);
    border-radius: var(--radius-lg);
}

/* ========== THANK YOU PAGE ========== */

.thank-you-content {
    padding: 4rem 0;
}

.thank-you-box {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.success-icon {
    font-size: 4rem;
    color: var(--primary);
}

.lead-text {
    font-size: 1.1rem;
    color: var(--neutral-dark);
}

.direct-download {
    background-color: var(--neutral-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.direct-download:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.download-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transition: all 0.6s ease;
}

.download-btn:hover::before {
    left: 100%;
}

.whats-next {
    padding: 4rem 0;
}

.next-step-card {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
}

.step-title {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.social-connect {
    padding: 4rem 0;
    background-color: white;
}

.explore-articles {
    padding: 4rem 0;
}

/* ========== ABOUT PAGE ========== */

.about-story {
    padding: 4rem 0;
}

.about-image-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    background-image: url('https://images.unsplash.com/photo-1571844307880-751c6d86f3f3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 400px;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-content h2 {
    color: var(--primary-dark);
}

.about-text {
    font-size: 1.1rem;
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
}

.mission-values {
    padding: 4rem 0;
}

.mission-card, .values-card {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.mission-card h3, .values-card h3 {
    color: var(--primary-dark);
    font-weight: 600;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.values-list strong {
    color: var(--primary-dark);
    margin-right: 0.5rem;
}

.our-approach {
    padding: 4rem 0;
}

.approach-card {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.approach-icon {
    font-size: 2.5rem;
    color: var(--primary);
}

.approach-title {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.team-section {
    padding: 4rem 0;
}

.team-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.team-image-1, .team-image-2, .team-image-3 {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.team-image-1 {
    background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
}

.team-image-2 {
    background-image: url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
}

.team-image-3 {
    background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
}

.team-name {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}

.team-role {
    color: var(--secondary-dark);
    font-size: var(--small-size);
    margin-bottom: 1rem;
}

.about-cta {
    padding: 4rem 0;
}

/* ========== CONTACT PAGE ========== */

.contact-content {
    padding: 4rem 0;
}

.contact-info {
    background-color: var(--primary-light);
    border-radius: var(--radius-lg);
    height: 100%;
}

.contact-info h2 {
    color: var(--primary-dark);
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-text h3 {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}

.contact-form-container {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-faq {
    padding: 4rem 0;
}

/* ========== LEGAL PAGES ========== */

.legal-content {
    padding: 4rem 0;
}

.legal-box {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.legal-info {
    color: var(--neutral-dark);
    border-bottom: 1px solid var(--neutral-medium);
    padding-bottom: 1rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-heading {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.legal-subheading {
    font-family: var(--heading-font);
    font-weight: 500;
    color: var(--secondary-dark);
    margin: 1.5rem 0 1rem;
}

/* ========== FOOTER ========== */

.footer {
    background-color: var(--primary-dark);
    color: white;
}

.footer h5 {
    color: white;
    font-weight: 600;
}

.footer-links {
    margin: 0;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.social-icons a:hover {
    opacity: 1;
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .download-btn {
        margin-top: 0.5rem;
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .intro-section,
    .benefits-section,
    .featured-articles,
    .lead-magnet-cta,
    .testimonials,
    .newsletter-section {
        padding: 3rem 0;
    }
    
    .blog-card .row {
        flex-direction: column;
    }
    
    .blog-img {
        height: 200px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
}
