:root {
    --primary-blue: #1E3A8A;
    --secondary-teal: #0D9488;
    --accent-orange: #EA580C;
    --light-gray: #F8FAFC;
    --white: #FFFFFF;
    --dark-navy: #0F172A;
    --primary-text: #1E293B;
    --secondary-text: #64748B;
    --light-text: #94A3B8;
    --success-green: #10B981;
    --warning-yellow: #F59E0B;
    --error-red: #EF4444;
}

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

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

.main-header {
    height: 60px;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .navbar {
    padding: 0;
    height: 60px;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: var(--primary-text);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

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

.lang-switcher {
    color: var(--secondary-teal);
    font-weight: 600;
}

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--primary-blue);
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.value-proposition {
    padding: 80px 0;
    background: var(--white);
}

.value-card {
    padding: 2rem;
    border-radius: 12px;
    background: var(--light-gray);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    border-color: var(--secondary-teal);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.value-card p {
    color: var(--secondary-text);
    margin: 0;
}

.how-it-works {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
}

.process-step {
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    height: 100%;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-teal);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 20px;
}

.process-step h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.process-step p {
    color: var(--secondary-text);
    position: relative;
    z-index: 1;
}

.interactive-demo {
    padding: 80px 0;
    background: var(--white);
}

.demo-container {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.scenario-toggle {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.scenario-toggle .btn {
    min-width: 150px;
}

.budget-visualization {
    max-width: 600px;
    margin: 0 auto;
}

.budget-item {
    margin-bottom: 2rem;
}

.budget-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--dark-navy);
}

.budget-percentage {
    color: var(--secondary-teal);
}

.progress-bar-container {
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.demo-insights {
    margin-top: 2rem;
}

.scenarios-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.scenario-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.scenario-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), var(--warning-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.scenario-icon i {
    font-size: 2rem;
    color: var(--white);
}

.scenario-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.scenario-card p {
    color: var(--secondary-text);
}

.quiz-section {
    padding: 80px 0;
    background: var(--white);
}

.quiz-container {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2.5rem;
}

.quiz-question {
    margin-bottom: 2.5rem;
}

.quiz-question h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-option {
    background: var(--white);
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quiz-option:hover {
    border-color: var(--secondary-teal);
    background: #F0FDFA;
}

.quiz-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.quiz-option input[type="radio"]:checked + span {
    color: var(--primary-blue);
    font-weight: 600;
}

.quiz-results {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}

.result-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.result-content p {
    font-size: 1.125rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
}

.result-score {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    color: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.result-score span {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.result-score strong {
    font-size: 3rem;
    font-weight: 700;
}

.resources-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.resource-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.resource-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.resource-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.resource-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.resource-card p {
    color: var(--secondary-text);
    margin-bottom: 1.5rem;
}

.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-form {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-check-label {
    color: var(--secondary-text);
}

.form-check-label a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.iti,
#phone {
    width: 100%;
}

.main-footer {
    background: var(--dark-navy);
    color: var(--light-text);
    padding: 60px 0 20px;
}

.main-footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.75rem;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--secondary-teal);
}

.footer-contact a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--white);
}

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

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

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

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

.legal-date {
    font-size: 0.875rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-mission,
.about-method {
    padding: 80px 0;
}

.method-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 2px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.method-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--secondary-teal);
    opacity: 0.1;
    position: absolute;
    top: -10px;
    right: 10px;
}

.method-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.method-card p {
    color: var(--secondary-text);
    position: relative;
    z-index: 1;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.article-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.article-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.article-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.article-header:hover {
    background: var(--light-gray);
}

.article-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.article-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.article-info {
    flex: 1;
}

.article-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.25rem;
}

.article-meta {
    font-size: 0.875rem;
    color: var(--secondary-text);
}

.collapse-icon {
    color: var(--secondary-teal);
    transition: transform 0.3s ease;
}

.article-header[aria-expanded="true"] .collapse-icon {
    transform: rotate(180deg);
}

.article-content {
    border-top: 1px solid var(--light-gray);
}

.content-body {
    padding: 2rem;
}

.content-body h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.content-body p {
    color: var(--secondary-text);
    margin-bottom: 1rem;
}

.article-cta {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.article-cta p {
    margin-bottom: 1rem;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-info-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-info-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--secondary-text);
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-form-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.map-section {
    padding: 60px 0;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success-green), var(--secondary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon i {
    font-size: 3rem;
    color: var(--white);
}

.thanks-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.thanks-info {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.thanks-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.contact-details {
    font-size: 1.125rem;
    margin-top: 1rem;
}

.contact-details i {
    color: var(--secondary-teal);
    margin-right: 0.5rem;
}

.contact-details a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.legal-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.legal-header .legal-date {
    font-size: 1rem;
    opacity: 0.9;
}

.legal-content {
    padding: 80px 0;
}

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

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.legal-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--secondary-text);
    margin-bottom: 1rem;
}

.legal-section ul {
    color: var(--secondary-text);
    padding-left: 2rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.legal-section a:hover {
    text-decoration: underline;
}

.contact-box {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-navy);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin-bottom: 0.5rem;
}

.cookie-text a {
    color: var(--secondary-teal);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

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

.cookie-modal-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin: 0;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-text);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin: 0;
}

.cookie-category p {
    font-size: 0.875rem;
    color: var(--secondary-text);
    margin: 0;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--secondary-teal);
}

input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .thanks-actions {
        flex-direction: column;
    }
    
    .scenario-toggle {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .thanks-section h1 {
        font-size: 2rem;
    }
}