/* =============================================
   CSS RESET & BASE STYLES
   ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest-pine: #164A41;
    --mint-frost: #E4F5EF;
    --clay-terracotta: #C66C52;
    --golden-oat: #D9B877;
    --dusty-grey: #9CA4A8;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--forest-pine);
}

a {
    color: var(--forest-pine);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--clay-terracotta);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* =============================================
   HEADER & NAVIGATION - Unified Background
   ============================================= */

.site-header {
    background: linear-gradient(135deg, var(--mint-frost) 0%, var(--white) 100%);
    border-bottom: 1px solid rgba(22, 74, 65, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(22, 74, 65, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-logo {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.brand-link:hover .brand-logo {
    transform: scale(1.05) rotate(5deg);
}

.site-branding .brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-pine);
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.site-branding .brand-link:hover .brand-title {
    color: var(--clay-terracotta);
}

.primary-nav .nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-medium);
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clay-terracotta);
    transition: width 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active-page::after {
    width: 100%;
}

.nav-item:hover,
.nav-item.active-page {
    color: var(--forest-pine);
}

.nav-cta {
    background-color: var(--forest-pine);
    color: var(--white) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background-color: var(--clay-terracotta);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 74, 65, 0.2);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-icon {
    width: 25px;
    height: 2px;
    background-color: var(--forest-pine);
    transition: all 0.3s ease;
    position: relative;
}

.nav-icon::before,
.nav-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--forest-pine);
    transition: all 0.3s ease;
    left: 0;
}

.nav-icon::before {
    top: -8px;
}

.nav-icon::after {
    top: 8px;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero-section {
    /* background: linear-gradient(135deg, var(--mint-frost) 0%, var(--white) 100%); */
    background-image: url(../images/banner-hero.jpg);
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-heading {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--forest-pine);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual img {
    max-width: 550px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(22, 74, 65, 0.15);
}

.hero-image-placeholder {
    width: 100%;
    max-width: 550px;
    height: 450px;
    background: linear-gradient(135deg, var(--golden-oat) 0%, var(--clay-terracotta) 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(22, 74, 65, 0.15);
}

/* =============================================
   BUTTONS
   ============================================= */

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--forest-pine);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(22, 74, 65, 0.2);
}

.btn-primary:hover {
    background-color: var(--clay-terracotta);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(22, 74, 65, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--forest-pine);
    border: 2px solid var(--forest-pine);
}

.btn-secondary:hover {
    background-color: var(--forest-pine);
    color: var(--white);
    transform: translateY(-3px);
}

/* =============================================
   CONTENT SECTIONS
   ============================================= */

.featured-content-section,
.value-prop-section,
.knowledge-content-section,
.topics-section,
.reviews-section {
    padding: 6rem 2rem;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--forest-pine);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* =============================================
   CONTENT GRID
   ============================================= */

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.content-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(22, 74, 65, 0.15);
}

.card-visual-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--mint-frost) 0%, var(--golden-oat) 100%);
    transition: transform 0.3s ease;
}

.content-card:hover .card-image-placeholder {
    transform: scale(1.05);
}

.card-text-content {
    padding: 2rem;
}

.card-category {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clay-terracotta);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.card-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--forest-pine);
}

.card-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.card-link {
    font-weight: 600;
    color: var(--forest-pine);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.card-link:hover::after {
    transform: translateX(5px);
}

/* =============================================
   VALUE PROPOSITION
   ============================================= */

.value-prop-section {
    background-color: var(--mint-frost);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.value-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--forest-pine) 0%, var(--clay-terracotta) 100%);
    border-radius: 50%;
    margin: 0 auto;
}

.value-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--forest-pine);
}

.value-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* =============================================
   NEWSLETTER SECTION
   ============================================= */

.newsletter-section {
    background: linear-gradient(135deg, var(--forest-pine) 0%, var(--clay-terracotta) 100%);
    padding: 5rem 2rem;
}

.newsletter-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-heading {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.newsletter-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group-inline {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.form-input-inline {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.btn-newsletter {
    padding: 1rem 2.5rem;
    background-color: var(--white);
    color: var(--forest-pine);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background-color: var(--golden-oat);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
    background-color: var(--forest-pine);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-heading {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-description {
    line-height: 1.7;
}

.footer-col-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links,
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a,
.footer-contact-list a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact-list a:hover {
    color: var(--golden-oat);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   COOKIE NOTICE - Bottom Right Corner
   ============================================= */

.cookie-notice {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background-color: var(--white);
    border: 3px solid var(--forest-pine);
    color: var(--text-dark);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(22, 74, 65, 0.3);
    z-index: 9999;
    display: none;
}

.cookie-notice.show-cookie {
    display: block;
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.cookie-content a {
    color: var(--forest-pine);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-content a:hover {
    color: var(--clay-terracotta);
}

.cookie-accept-btn {
    padding: 0.8rem 1.5rem;
    background-color: var(--forest-pine);
    color: var(--white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-end;
}

.cookie-accept-btn:hover {
    background-color: var(--clay-terracotta);
    transform: translateY(-2px);
}

/* =============================================
   PAGE HERO
   ============================================= */

.page-hero-section {
    background: linear-gradient(135deg, var(--mint-frost) 0%, var(--white) 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--forest-pine);
}

.page-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
}

/* =============================================
   KNOWLEDGE PAGE
   ============================================= */

.knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.knowledge-article {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.knowledge-visual {
    position: sticky;
    top: 120px;
}

.knowledge-image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--mint-frost) 0%, var(--golden-oat) 100%);
    border-radius: 12px;
}

.knowledge-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clay-terracotta);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.knowledge-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--forest-pine);
}

.knowledge-excerpt {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.knowledge-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.knowledge-cta-section {
    background: linear-gradient(135deg, var(--forest-pine) 0%, var(--clay-terracotta) 100%);
    padding: 5rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(22, 74, 65, 0.2);
}

.knowledge-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(228, 245, 239, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.knowledge-cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217, 184, 119, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-heading {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.knowledge-cta-section .btn-primary {
    background: var(--white);
    color: var(--forest-pine);
    border: none;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    padding: 1rem 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.knowledge-cta-section .btn-primary:hover {
    background: var(--mint-frost);
    color: var(--forest-pine);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Knowledge Article Images */
.article-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

.article-image.placeholder-img {
    object-fit: contain;
    background: var(--mint-frost);
    padding: 2rem;
}

.article-image.img-two {
    height: 350px;
}

/* Knowledge Features Section */
.knowledge-features-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.feature-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--mint-frost);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(22, 74, 65, 0.12);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-title {
    font-size: 1.4rem;
    color: var(--forest-pine);
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Learning Paths Section */
.learning-paths-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--mint-frost) 0%, var(--white) 100%);
    margin-top: 4rem;
}

.learning-paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.learning-path-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(22, 74, 65, 0.1);
    transition: all 0.3s ease;
}

.learning-path-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(22, 74, 65, 0.15);
}

.path-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.path-heading {
    font-size: 1.6rem;
    color: var(--forest-pine);
    margin-bottom: 1rem;
    text-align: center;
}

.path-description {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.path-topics {
    list-style: none;
    padding: 0;
}

.path-topics li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-top: 1px solid var(--mint-frost);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.path-topics li:first-child {
    border-top: none;
}

/* Knowledge Stats Section */
.knowledge-stats-section {
    padding: 5rem 0;
    background: var(--white);
}

.knowledge-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.knowledge-stat-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, var(--mint-frost) 0%, var(--white) 100%);
    border-radius: 12px;
    border: 2px solid var(--mint-frost);
    transition: all 0.3s ease;
}

.knowledge-stat-box:hover {
    border-color: var(--clay-terracotta);
    transform: scale(1.05);
}

.stat-icon-box {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.stat-number-large {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--forest-pine);
    margin-bottom: 0.5rem;
}

.stat-label-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clay-terracotta);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Key Concepts Section */
.key-concepts-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--mint-frost) 100%);
}

.concepts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.concept-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(22, 74, 65, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.concept-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(22, 74, 65, 0.15);
}

.concept-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.concept-heading {
    font-size: 1.4rem;
    color: var(--forest-pine);
    margin-bottom: 1rem;
}

.concept-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Resources Section */
.resources-section {
    padding: 5rem 0;
    background: var(--white);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.resource-item {
    background: var(--mint-frost);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--clay-terracotta);
}

.resource-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(22, 74, 65, 0.12);
}

.resource-icon-box {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.resource-title {
    font-size: 1.5rem;
    color: var(--forest-pine);
    margin-bottom: 1rem;
    text-align: center;
}

.resource-description {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.resource-link {
    display: inline-block;
    font-weight: 600;
    color: var(--clay-terracotta);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.resource-link:hover {
    color: var(--forest-pine);
    transform: translateX(5px);
}

/* =============================================
   TOPICS PAGE
   ============================================= */

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.topic-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(22, 74, 65, 0.15);
}

.topic-icon-wrapper {
    margin-bottom: 1.5rem;
}

.topic-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--forest-pine) 0%, var(--clay-terracotta) 100%);
    border-radius: 10px;
}

.topic-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--forest-pine);
}

.topic-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.topic-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.topic-list li {
    font-size: 0.95rem;
    color: var(--text-medium);
    padding-left: 1.5rem;
    position: relative;
}

.topic-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--clay-terracotta);
    font-weight: bold;
    font-size: 1.2rem;
}

.topics-detail-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--mint-frost) 0%, var(--white) 100%);
    margin-top: 4rem;
}

.detail-section-title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--forest-pine);
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.detail-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--clay-terracotta) 0%, var(--golden-oat) 100%);
    border-radius: 2px;
}

.detail-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(22, 74, 65, 0.08);
}

.detail-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.8rem;
}

.detail-content p:last-child {
    margin-bottom: 0;
}

.detail-content p:first-child::first-letter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--forest-pine);
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    font-family: 'Playfair Display', serif;
}

/* Topics Intro Section */
.topics-intro-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.intro-box {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--mint-frost) 0%, var(--white) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.intro-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(22, 74, 65, 0.12);
}

.intro-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.intro-heading {
    font-size: 1.4rem;
    color: var(--forest-pine);
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Topic Categories Section */
.topic-categories-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--mint-frost) 0%, var(--white) 100%);
    margin-top: 4rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(22, 74, 65, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(22, 74, 65, 0.15);
}

.category-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.category-title {
    font-size: 1.6rem;
    color: var(--forest-pine);
    margin-bottom: 0.5rem;
}

.category-count {
    font-size: 0.9rem;
    color: var(--clay-terracotta);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.category-description {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Investment Stages Section */
.investment-stages-section {
    padding: 5rem 0;
    background: var(--white);
}

.stages-timeline {
    position: relative;
    margin-top: 3rem;
}

.stage-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.stage-item:last-child {
    margin-bottom: 0;
}

.stage-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--forest-pine) 0%, var(--clay-terracotta) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.stage-content {
    flex: 1;
    background: var(--mint-frost);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--golden-oat);
}

.stage-icon {
    display: inline-block;
    margin-bottom: 1rem;
}

.stage-heading {
    font-size: 1.6rem;
    color: var(--forest-pine);
    margin-bottom: 1rem;
}

.stage-text {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.stage-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.stage-tag {
    padding: 0.5rem 1rem;
    background: var(--white);
    color: var(--forest-pine);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Popular Topics Section */
.popular-topics-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--mint-frost) 100%);
}

.popular-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.popular-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(22, 74, 65, 0.08);
    transition: all 0.3s ease;
}

.popular-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(22, 74, 65, 0.15);
}

.popular-rank {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--clay-terracotta);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.popular-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.popular-icon {
    flex-shrink: 0;
}

.popular-info {
    flex: 1;
}

.popular-title {
    font-size: 1.2rem;
    color: var(--forest-pine);
    margin-bottom: 0.3rem;
}

.popular-meta {
    font-size: 0.9rem;
    color: var(--dusty-grey);
}

/* Quick Reference Section */
.quick-reference-section {
    padding: 5rem 0;
    background: var(--white);
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.reference-card {
    background: var(--mint-frost);
    padding: 2.5rem;
    border-radius: 12px;
    border-top: 4px solid var(--forest-pine);
    transition: all 0.3s ease;
}

.reference-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(22, 74, 65, 0.12);
}

.reference-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--white);
}

.reference-title {
    font-size: 1.4rem;
    color: var(--forest-pine);
}

.reference-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.reference-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* =============================================
   REVIEWS PAGE
   ============================================= */

/* Review Intro Section */
.review-intro-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.intro-grid-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.review-intro-box {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--mint-frost) 0%, var(--white) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-top: 4px solid var(--forest-pine);
}

.review-intro-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(22, 74, 65, 0.12);
}

.review-intro-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.review-intro-heading {
    font-size: 1.4rem;
    color: var(--forest-pine);
    margin-bottom: 1rem;
}

.review-intro-text-small {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Review Methodology Section */
.review-methodology-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--mint-frost) 0%, var(--white) 100%);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.methodology-step {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 30px rgba(22, 74, 65, 0.1);
    transition: all 0.3s ease;
}

.methodology-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(22, 74, 65, 0.15);
}

.method-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--clay-terracotta) 0%, var(--golden-oat) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 4px 15px rgba(198, 108, 82, 0.3);
}

.method-icon {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0 1rem;
}

.method-heading {
    font-size: 1.4rem;
    color: var(--forest-pine);
    margin-bottom: 1rem;
}

.method-text {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.review-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.review-intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.review-article {
    background-color: var(--white);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(22, 74, 65, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.review-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(22, 74, 65, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--mint-frost) 0%, var(--white) 100%);
    border-bottom: 3px solid var(--golden-oat);
}

.review-icon-badge {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(22, 74, 65, 0.1);
}

.review-header-content {
    flex: 1;
}

.review-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--forest-pine);
}

.review-category {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    background: var(--clay-terracotta);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-rating {
    flex-shrink: 0;
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(22, 74, 65, 0.1);
}

.rating-label {
    display: block;
    font-size: 0.8rem;
    color: var(--dusty-grey);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rating-stars-large {
    font-size: 1.4rem;
    color: var(--golden-oat);
}

.review-content {
    padding: 2rem;
}

.review-content > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.review-boxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.review-verdict,
.review-considerations {
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 0;
}

.review-verdict {
    background: linear-gradient(135deg, var(--mint-frost) 0%, rgba(228, 245, 239, 0.5) 100%);
    border-left: 4px solid var(--forest-pine);
}

.review-considerations {
    background: linear-gradient(135deg, #fff5f2 0%, rgba(198, 108, 82, 0.08) 100%);
    border-left: 4px solid var(--clay-terracotta);
}

.verdict-header,
.considerations-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.review-verdict h4,
.review-considerations h4 {
    font-size: 1.15rem;
    margin-bottom: 0;
    color: var(--forest-pine);
}

.review-verdict p,
.review-considerations p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0;
}

.reviews-summary-section {
    margin-bottom: 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(22, 74, 65, 0.08);
}

.summary-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--forest-pine);
    text-align: center;
}

.summary-content {
    max-width: 900px;
    margin: 0 auto;
}

.summary-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

/* Review Comparison Section */
.review-comparison-section {
    padding: 5rem 0;
    background: var(--white);
}

.comparison-table-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(22, 74, 65, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--forest-pine) 0%, var(--clay-terracotta) 100%);
    color: var(--white);
}

.comparison-table th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 3px solid var(--golden-oat);
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--mint-frost);
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: var(--mint-frost);
    transform: scale(1.01);
}

.comparison-table td {
    padding: 1.5rem 1rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.strategy-name {
    font-weight: 600;
    color: var(--forest-pine);
    font-size: 1.05rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-low {
    background: #c8e6c9;
    color: #2e7d32;
}

.badge-medium {
    background: #fff9c4;
    color: #f57f17;
}

.badge-high {
    background: #ffccbc;
    color: #d84315;
}

.rating-stars {
    font-size: 1.2rem;
    color: var(--golden-oat);
}

/* Review Criteria Section */
.review-criteria-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--mint-frost) 100%);
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.criteria-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(22, 74, 65, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--clay-terracotta);
}

.criteria-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(22, 74, 65, 0.15);
}

.criteria-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.criteria-title {
    font-size: 1.3rem;
    color: var(--forest-pine);
    margin-bottom: 1rem;
}

.criteria-desc {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Review Stats Section */
.review-stats-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--forest-pine) 0%, var(--clay-terracotta) 100%);
    border-radius: 16px;
    margin-top: 4rem;
}

.review-stats-section .section-header .section-title,
.review-stats-section .section-header .section-subtitle {
    color: var(--white);
}

.review-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-box-review {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-box-review:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
}

.stat-icon-review {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.stat-number-review {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label-review {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.9;
    font-weight: 500;
}

.summary-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-section {
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Intro Section */
.contact-intro-section {
    margin-bottom: 4rem;
}

.contact-intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-intro-box {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(22, 74, 65, 0.08);
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--forest-pine);
}

.contact-intro-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(22, 74, 65, 0.12);
}

.contact-intro-icon {
    margin-bottom: 1rem;
}

.contact-intro-title {
    font-size: 1.2rem;
    color: var(--forest-pine);
    margin-bottom: 0.5rem;
}

.contact-intro-text {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Minimal Form Styles */
.form-header-minimal {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--mint-frost);
}

.contact-form-title {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
    color: var(--forest-pine);
}

.contact-form-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.contact-form-minimal {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.required {
    color: var(--clay-terracotta);
}

.form-input-minimal,
.form-textarea.form-input-minimal {
    padding: 0.9rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    transition: all 0.3s ease;
}

.form-input-minimal:focus {
    outline: none;
    border-color: var(--forest-pine);
    box-shadow: 0 0 0 3px rgba(22, 74, 65, 0.1);
}

.form-input-minimal::placeholder {
    color: var(--dusty-grey);
}

.form-input,
.form-textarea {
    padding: 1rem 1.2rem;
    border: 2px solid var(--mint-frost);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--forest-pine);
}

.form-input.error-input,
.form-textarea.error-input {
    border-color: var(--clay-terracotta);
}

.form-error {
    font-size: 0.85rem;
    color: var(--clay-terracotta);
    margin-top: 0.5rem;
    display: none;
}

.form-error.show-error {
    display: block;
}

.btn-submit-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--forest-pine);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-submit-minimal:hover {
    background: var(--clay-terracotta);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 74, 65, 0.2);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Minimal Contact Info Card */
.contact-info-minimal {
    background: linear-gradient(135deg, var(--mint-frost) 0%, var(--white) 100%);
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid var(--forest-pine);
}

.contact-detail-minimal {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(22, 74, 65, 0.1);
}

.contact-detail-minimal:last-child {
    border-bottom: none;
}

.detail-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(22, 74, 65, 0.08);
}

.detail-content {
    flex: 1;
}

.contact-info-card {
    background-color: var(--mint-frost);
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-info-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--forest-pine);
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--forest-pine);
    margin-bottom: 0.5rem;
}

.contact-detail-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-detail-text a {
    color: var(--forest-pine);
}

.map-section {
    margin-top: 4rem;
}

.map-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--forest-pine);
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* =============================================
   THANK YOU PAGE - Enhanced Design
   ============================================= */

.thankyou-section {
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mint-frost) 0%, var(--white) 50%, var(--mint-frost) 100%);
}

.thankyou-container {
    max-width: 700px;
    margin: 0 auto;
}

.thankyou-content {
    text-align: center;
    background-color: var(--white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(22, 74, 65, 0.15);
    border: 3px solid var(--mint-frost);
}

.thankyou-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    animation: successPulse 1.5s ease infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.thankyou-heading {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--forest-pine);
}

.thankyou-message {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: var(--mint-frost);
    border-radius: 12px;
}

.thankyou-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   LEGAL PAGES - Enhanced Design
   ============================================= */

.legal-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--mint-frost) 0%, var(--white) 50%, var(--mint-frost) 100%);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(22, 74, 65, 0.1);
}

.legal-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--forest-pine);
    border-bottom: 4px solid var(--clay-terracotta);
    padding-bottom: 1rem;
}

.legal-updated {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--forest-pine);
    padding-left: 1rem;
    border-left: 4px solid var(--golden-oat);
    background-color: var(--mint-frost);
    padding: 1rem;
    border-radius: 8px;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--forest-pine);
    padding-left: 1rem;
    border-left: 3px solid var(--dusty-grey);
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--clay-terracotta);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.legal-content ul {
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: var(--mint-frost);
    border-radius: 8px;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.legal-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--forest-pine);
    font-weight: bold;
    font-size: 1.3rem;
}

.legal-content strong {
    color: var(--forest-pine);
    font-weight: 600;
}

.legal-content a {
    color: var(--clay-terracotta);
    text-decoration: underline;
    font-weight: 600;
}

.legal-content a:hover {
    color: var(--golden-oat);
}

/* =============================================
   RESPONSIVE DESIGN - TABLET
   ============================================= */

@media (max-width: 1024px) {
    .hero-heading {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .knowledge-article {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .knowledge-visual {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-intro-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================= */

@media (max-width: 768px) {
    .header-container {
        padding: 1rem 1.5rem;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .primary-nav .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 1.5rem;
    }

    .primary-nav .nav-menu.nav-active {
        left: 0;
    }

    .hero-section {
        padding: 4rem 1.5rem;
    }

    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .content-grid,
    .topics-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .learning-paths-grid,
    .knowledge-stats-grid,
    .concepts-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .intro-grid,
    .categories-grid,
    .reference-grid {
        grid-template-columns: 1fr;
    }

    .intro-grid-reviews,
    .methodology-grid,
    .criteria-grid,
    .review-stats-grid {
        grid-template-columns: 1fr;
    }

    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .review-rating {
        order: -1;
    }

    .review-boxes-grid {
        grid-template-columns: 1fr;
    }

    .review-title {
        font-size: 1.5rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
    }

    .stage-item {
        flex-direction: column;
        gap: 1rem;
    }

    .stage-number {
        margin: 0 auto;
    }

    .popular-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .popular-content {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-group-inline {
        flex-direction: column;
    }

    .form-input-inline {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-notice {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .page-hero-title {
        font-size: 2.2rem;
    }

    .page-hero-subtitle {
        font-size: 1.1rem;
    }

    .knowledge-cta-section,
    .review-article {
        padding: 2rem;
    }

    .thankyou-content {
        padding: 2.5rem 1.5rem;
    }

    .thankyou-heading {
        font-size: 2.2rem;
    }

    .legal-title {
        font-size: 2.2rem;
    }
}

/* =============================================
   CAROUSEL SECTION
   ============================================= */

.carousel-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--mint-frost) 0%, var(--white) 100%);
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(22, 74, 65, 0.15);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: none;
    flex-direction: column;
}

.carousel-slide.active {
    display: flex;
}

.carousel-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.carousel-caption {
    background: var(--white);
    padding: 2.5rem;
    text-align: center;
}

.carousel-caption h3 {
    font-size: 1.8rem;
    color: var(--forest-pine);
    margin-bottom: 1rem;
}

.carousel-caption p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--forest-pine);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--clay-terracotta);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--dusty-grey);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--forest-pine);
    width: 30px;
    border-radius: 6px;
}

/* =============================================
   STATISTICS SECTION
   ============================================= */

.statistics-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: var(--mint-frost);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(22, 74, 65, 0.12);
}

.stat-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--forest-pine);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clay-terracotta);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* =============================================
   PROCESS SECTION
   ============================================= */

.process-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--mint-frost) 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(22, 74, 65, 0.08);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(22, 74, 65, 0.15);
}

.process-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.process-heading {
    font-size: 1.4rem;
    color: var(--forest-pine);
    margin-bottom: 1rem;
}

.process-text {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* =============================================
   ADVANTAGES SECTION
   ============================================= */

.advantages-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--mint-frost);
    border-radius: 12px;
    border-left: 4px solid var(--clay-terracotta);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(22, 74, 65, 0.1);
}

.advantage-icon-wrapper {
    flex-shrink: 0;
}

.advantage-heading {
    font-size: 1.3rem;
    color: var(--forest-pine);
    margin-bottom: 0.8rem;
}

.advantage-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */

.testimonials-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--mint-frost) 0%, var(--white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(22, 74, 65, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(22, 74, 65, 0.15);
}

.testimonial-icon-wrapper {
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 2px solid var(--mint-frost);
    padding-top: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--forest-pine);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--dusty-grey);
}

/* =============================================
   FAQ SECTION
   ============================================= */

.faq-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.section-container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 2px solid var(--mint-frost);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--forest-pine);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--mint-frost);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest-pine);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--white);
}

.faq-icon {
    flex-shrink: 0;
}

.faq-question span:nth-child(2) {
    flex: 1;
}

.faq-toggle {
    font-size: 1.8rem;
    color: var(--clay-terracotta);
    font-weight: 400;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* =============================================
   SECTION HEADER CENTERED
   ============================================= */

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .hero-heading {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .card-heading {
        font-size: 1.3rem;
    }

    .newsletter-heading {
        font-size: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-actions .btn-primary,
    .thankyou-actions .btn-secondary {
        width: 100%;
    }

    .carousel-container {
        padding: 0 50px;
    }

    .carousel-image {
        height: 300px;
    }

    .carousel-caption {
        padding: 1.5rem;
    }

    .carousel-caption h3 {
        font-size: 1.4rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .stat-number-large {
        font-size: 2.5rem;
    }

    .path-heading {
        font-size: 1.4rem;
    }

    .concept-heading {
        font-size: 1.2rem;
    }

    .resource-item {
        transform: none;
    }

    .resource-item:hover {
        transform: translateY(-5px);
    }

    .article-image {
        height: 250px;
    }
}
