:root {
    --bg-primary: #F5F1E8;
    --bg-secondary: #FEFCF8;
    --text-primary: #3A4A3A;
    --text-secondary: #5A6A5A;
    --accent-yellow: #FFF9C4;
    --border-color: #3A4A3A;
    --grid-color: #B8C5B8;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.disclaimer {
    background-color: var(--accent-yellow);
    border-bottom: 2px solid var(--border-color);
    padding: 12px 20px;
    text-align: center;
    position: relative;
    z-index: 1000;
    font-size: 14px;
}

.disclaimer p {
    margin: 0;
    color: var(--text-primary);
    max-width: 1200px;
    margin: 0 auto;
    padding-right: 40px;
}

.disclaimer-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-primary);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.disclaimer-close:hover {
    opacity: 0.7;
}

.header {
    position: sticky;
    top: 0;
    background-color: var(--bg-primary);
    z-index: 100;
    border-bottom: 1px solid var(--grid-color);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 101;
}

.logo-icon {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo-text:hover {
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    transition: opacity 0.3s;
    position: relative;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link.active {
    font-weight: 600;
}

.dropdown {
    position: relative;
}

.chevron {
    font-size: 10px;
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.3s;
}

.chevron::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 2px;
}

.dropdown:hover .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    list-style: none;
    padding: 8px 0;
    margin-top: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: var(--accent-yellow);
}

.contact-btn {
    background-color: var(--accent-yellow);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 8px 20px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s;
    z-index: 101;
}

.contact-btn:hover {
    background-color: var(--bg-secondary);
    transform: translateY(-2px);
}

.btn-cfe-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--text-primary);
    color: var(--bg-secondary);
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.btn-cfe-link:hover {
    background-color: var(--text-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(58, 74, 58, 0.2);
}

.btn-cfe-wrapper {
    text-align: center;
    margin: 30px 0;
}

.menu-toggle {
    display: none;
}

.menu-overlay {
    display: none;
}

.main-content {
    position: relative;
    z-index: 1;
    padding-bottom: 0px;
}

.hero-section {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 40px;
    position: relative;
}

.hero-box {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 35px 50px;
    max-width: 900px;
    text-align: left;
    position: relative;
}

.hero-tagline {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -2px;
}

.articles-section {
    padding: 80px 40px 40px;
}

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

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 60px;
    text-align: center;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.article-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(58, 74, 58, 0.1);
}

.article-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 30px;
}

.article-category {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.article-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.3s;
}

.article-title a:hover {
    opacity: 0.7;
}

.article-excerpt {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--grid-color);
}

.article-date {
    font-size: 14px;
    color: var(--text-secondary);
}

.read-more {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.read-more:hover {
    opacity: 0.7;
}

.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 40px 30px;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 14px;
}

.copyright {
    margin-top: 20px;
    font-size: 12px;
}

.footer-disclaimer {
    width: 100%;
    background-color: rgba(255, 243, 224, 0.3);
    border-top: 2px solid var(--border-color);
    margin-top: 40px;
    padding: 40px 20px;
}

.footer-disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-disclaimer-title {
    font-size: 20px;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-disclaimer-text {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.8;
}

.footer-disclaimer-text p {
    margin-bottom: 15px;
}

.footer-disclaimer-text p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.footer-disclaimer-warning {
    background-color: rgba(255, 235, 59, 0.15);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.footer-disclaimer-warning strong {
    color: #d32f2f;
    font-size: 15px;
    display: block;
    margin-bottom: 10px;
}

.footer-disclaimer-trademark {
    background-color: rgba(58, 74, 58, 0.05);
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 4px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .footer-disclaimer {
        padding: 30px 15px;
    }
    
    .footer-disclaimer-title {
        font-size: 18px;
    }
    
    .footer-disclaimer-text {
        font-size: 13px;
    }
    
    .footer-disclaimer-warning,
    .footer-disclaimer-trademark {
        padding: 12px 15px;
    }
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-secondary);
    border-top: 2px solid var(--border-color);
    padding: 20px 40px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    color: var(--text-primary);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-decline {
    padding: 10px 24px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: var(--text-primary);
    color: var(--bg-secondary);
}

.cookie-accept:hover {
    background-color: var(--text-secondary);
}

.cookie-decline {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.cookie-decline:hover {
    background-color: var(--accent-yellow);
}

@media (max-width: 968px) {
    .navbar {
        flex-wrap: wrap;
        padding: 10px 20px;
    }

    .nav-menu {
        position: static;
        transform: none;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-box {
        padding: 30px 25px;
    }

    .hero-section {
        padding: 30px 20px;
        min-height: 35vh;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 10px 20px;
        flex-wrap: nowrap;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-section {
        padding: 25px 15px;
        min-height: 30vh;
    }

    .hero-box {
        padding: 25px 20px;
    }

    .hero-tagline {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-primary);
        flex-direction: column;
        gap: 20px;
        padding: 80px 20px 20px;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 12px 0;
        font-size: 16px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        background-color: transparent;
        padding: 10px 0 10px 20px;
        margin-top: 0;
        box-shadow: none;
    }

    .logo-container {
        width: auto;
        justify-content: flex-start;
    }

    .contact-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 28px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        margin-left: auto;
    }

    .menu-toggle span {
        width: 100%;
        height: 2px;
        background-color: var(--text-primary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

.article-page {
    padding: 60px 40px;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--grid-color);
}

.article-page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 20px 0;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.article-author {
    color: var(--text-secondary);
    font-size: 14px;
}

.article-image-full {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 50px;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.article-image-full img {
    width: 100%;
    height: auto;
    display: block;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 50px;
}

.article-body h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-body p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.page-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
}

.page-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.contact-form {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 50px;
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--text-primary);
    color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 8px;
}

.submit-btn:hover {
    background-color: var(--text-secondary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .article-page-title {
        font-size: 36px;
    }

    .article-body {
        padding: 30px 20px;
    }

    .article-body h2 {
        font-size: 28px;
    }

    .article-body h3 {
        font-size: 20px;
    }

    .article-body p {
        font-size: 16px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

.faq-section {
    padding: 80px 40px;
    background-color: rgba(255, 249, 196, 0.4);
    position: relative;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(58, 74, 58, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background-color: var(--bg-secondary);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    transition: background-color 0.3s;
    font-family: inherit;
}

.faq-question:hover {
    background-color: rgba(255, 249, 196, 0.6);
}

.faq-question.active {
    background-color: rgba(255, 249, 196, 0.6);
}

.faq-chevron {
    font-size: 12px;
    color: var(--text-primary);
    transition: transform 0.3s;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-chevron::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
}

.faq-question.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: var(--bg-secondary);
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }

    .faq-answer.active {
        padding: 0 20px 18px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

.carousel-section {
    padding: 80px 40px;
    background-color: rgba(245, 241, 232, 0.7);
    position: relative;
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.carousel-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.carousel-see-all-btn {
    background-color: var(--accent-yellow);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 24px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.carousel-see-all-btn:hover {
    background-color: var(--bg-secondary);
    transform: translateY(-2px);
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    padding: 10px 0;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 calc(50% - 15px);
    min-width: 400px;
}

.carousel-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(58, 74, 58, 0.1);
}

.carousel-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.carousel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.carousel-card:hover .carousel-card-image img {
    transform: scale(1.05);
}

.carousel-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.carousel-card-meta {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: capitalize;
}

.carousel-card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
}

.carousel-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.carousel-nav-btn:hover {
    background-color: var(--accent-yellow);
    transform: scale(1.05);
}

.carousel-nav-btn:active {
    transform: scale(0.95);
}

.carousel-nav-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 1200px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 15px);
        min-width: 350px;
    }
}

@media (max-width: 968px) {
    .carousel-section {
        padding: 60px 20px;
    }

    .carousel-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .carousel-title {
        font-size: 36px;
    }

    .carousel-slide {
        flex: 0 0 85%;
        min-width: 300px;
    }

    .carousel-nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 640px) {
    .carousel-title {
        font-size: 28px;
    }

    .carousel-see-all-btn {
        width: 100%;
        text-align: center;
    }

    .carousel-slide {
        flex: 0 0 90%;
        min-width: 280px;
    }

    .carousel-card-image {
        height: 220px;
    }

    .carousel-card-title {
        font-size: 18px;
    }
}

.seo-info-section {
    padding: 80px 40px 20px;
    background: linear-gradient(135deg, rgba(245, 241, 232, 0.6) 0%, rgba(254, 252, 248, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.seo-info-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(58, 74, 58, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.seo-info-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 197, 184, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.seo-header {
    text-align: center;
    margin-bottom: 40px;
}

.seo-main-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.seo-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.seo-info-content {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.seo-info-text {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.seo-info-heading {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.seo-info-heading:first-child {
    margin-top: 0;
}

.seo-info-paragraph {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.seo-info-paragraph:last-child {
    margin-bottom: 0;
}

.stat-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 249, 196, 0.3), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(58, 74, 58, 0.15);
    border-color: var(--text-primary);
}

.stat-icon {
    color: var(--text-primary);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s;
}

.stat-card:hover .stat-icon {
    transform: rotate(10deg) scale(1.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    animation: fadeInUp 0.6s ease-out both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 249, 196, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 16px;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(58, 74, 58, 0.12);
    border-color: var(--text-primary);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 249, 196, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text-primary);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--accent-yellow);
    transform: rotate(5deg) scale(1.1);
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.seo-topics {
    text-align: center;
    padding: 40px 40px 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.8s ease-out 0.5s both;
    margin-bottom: 0;
}

.topics-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.topics-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.topic-badge {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
    animation: fadeInScale 0.4s ease-out both;
}

.topic-badge:nth-child(1) { animation-delay: 0.1s; }
.topic-badge:nth-child(2) { animation-delay: 0.15s; }
.topic-badge:nth-child(3) { animation-delay: 0.2s; }
.topic-badge:nth-child(4) { animation-delay: 0.25s; }
.topic-badge:nth-child(5) { animation-delay: 0.3s; }
.topic-badge:nth-child(6) { animation-delay: 0.35s; }
.topic-badge:nth-child(7) { animation-delay: 0.4s; }
.topic-badge:nth-child(8) { animation-delay: 0.45s; }

.topic-badge:hover {
    background-color: var(--accent-yellow);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(58, 74, 58, 0.15);
    border-color: var(--text-primary);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 968px) {
    .seo-info-section {
        padding: 60px 20px;
    }

    .seo-main-title {
        font-size: 40px;
    }

    .seo-subtitle {
        font-size: 18px;
    }

    .seo-info-content {
        margin-bottom: 60px;
    }

    .seo-info-text {
        padding: 35px 30px;
    }

    .seo-info-heading {
        font-size: 24px;
        margin-top: 30px;
    }

    .seo-info-paragraph {
        font-size: 16px;
    }

    .seo-features {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 60px;
    }

    .seo-topics {
        padding: 40px 20px;
    }

    .topics-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    .seo-main-title {
        font-size: 32px;
    }

    .seo-info-text {
        padding: 25px 20px;
    }

    .seo-info-heading {
        font-size: 22px;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .seo-info-paragraph {
        font-size: 15px;
        margin-bottom: 25px;
    }
}

.blogs-hero {
    padding: 20px 40px 15px;
    background-color: rgba(245, 241, 232, 0.5);
    text-align: center;
    border-bottom: 1px solid var(--grid-color);
    margin-top: 0;
    margin-bottom: 0;
}

.blogs-page-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    margin-top: 0;
    line-height: 1.2;
}

.blogs-page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 0;
}

.blogs-filter-section {
    padding: 10px 40px;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--grid-color);
    position: sticky;
    top: 48px;
    z-index: 10;
    margin-top: 0;
    margin-bottom: 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-btn {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 14px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    font-weight: 500;
}

.filter-btn:hover {
    background-color: var(--accent-yellow);
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: var(--text-primary);
    color: var(--bg-secondary);
    border-color: var(--text-primary);
}

.blogs-listing-section {
    padding: 40px 40px;
    background-color: var(--bg-primary);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(58, 74, 58, 0.15);
    border-color: var(--text-primary);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-category {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 600;
}

.blog-card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.3s;
}

.blog-card-title a:hover {
    opacity: 0.7;
}

.blog-card-excerpt {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid var(--grid-color);
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-secondary);
}

.blog-card-read-time {
    font-weight: 500;
}

.blog-card-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
    align-self: flex-start;
}

.blog-card-link:hover {
    opacity: 0.7;
    transform: translateX(5px);
}

.blogs-pagination {
    text-align: center;
    margin-top: 60px;
}

.pagination-btn {
    background-color: var(--text-primary);
    color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.pagination-btn:hover:not(:disabled) {
    background-color: var(--text-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(58, 74, 58, 0.2);
}

.pagination-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

@media (max-width: 968px) {
    .blogs-hero {
        padding: 60px 20px 40px;
    }

    .blogs-page-title {
        font-size: 40px;
    }

    .blogs-page-subtitle {
        font-size: 18px;
    }

    .blogs-filter-section {
        padding: 30px 20px;
        top: 48px;
    }

    .blogs-listing-section {
        padding: 60px 20px;
    }

    .blogs-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .blogs-page-title {
        font-size: 32px;
    }

    .blogs-filter-section {
        top: 48px;
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 14px;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .btn-cfe-link {
        padding: 12px 20px;
        font-size: 14px;
        max-width: 100%;
        width: 100%;
        display: block;
    }
}

    .blog-card-image {
        height: 220px;
    }

    .blog-card-title {
        font-size: 20px;
    }
}

/* Interactive Elements Styles */
.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
}

.article-table th {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 600;
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
}

.article-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--grid-color);
    color: var(--text-secondary);
}

.article-table tr:hover {
    background-color: var(--bg-secondary);
}

.article-table tr:last-child td {
    border-bottom: none;
}

.checklist {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.checklist-item:hover {
    background-color: var(--bg-primary);
}

.checklist-item::before {
    content: "";
    color: var(--text-primary);
    font-weight: bold;
    margin-right: 12px;
    font-size: 18px;
    flex-shrink: 0;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background-color: var(--border-color);
    border: 1px solid var(--border-color);
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-cell {
    background-color: var(--bg-secondary);
    padding: 20px;
    color: var(--text-secondary);
}

.comparison-cell.header {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
}

.stat-box {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 10px 0;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-box {
    background-color: var(--bg-secondary);
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

.info-box.warning {
    background-color: rgba(255, 152, 0, 0.1);
}

.info-box.success {
    background-color: rgba(76, 175, 80, 0.1);
}

.progress-bar-container {
    background-color: var(--bg-primary);
    border-radius: 10px;
    height: 30px;
    margin: 20px 0;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
    transition: width 0.5s ease;
}

.timeline {
    position: relative;
    padding-left: 40px;
    margin: 30px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    background-color: var(--bg-secondary);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 25px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--text-primary);
    border: 2px solid var(--bg-primary);
}

.timeline-year {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-content {
    color: var(--text-secondary);
}

