
:root {
    --primary: #2E5077;
    --secondary: #F3A712;
    --accent: #E6523E;
    --light: #F8F9FA;
    --dark: #343A40;
    --neutral: #E9ECEF;
    --success: #28A745;
    --info: #17A2B8;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --radius: 8px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

.container {
    width: 90%;
    max-width: 1200px;
}

.btn {
    background-color: var(--primary);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: var(--secondary);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.btn-large {
    height: 48px;
    line-height: 48px;
    padding: 0 28px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.full-width {
    width: 100%;
}

.card {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.divider {
    margin: 1.5rem 0;
    background-color: var(--neutral);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.large-text {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}


.iti {
    width: 100%;
}


header {
    margin-bottom: 2rem;
}

.nav-extended {
    background-color: var(--primary);
}

.nav-wrapper {
    padding: 0.5rem 0;
}

.nav-content {
    background-color: rgba(0, 0, 0, 0.1);
}

.contact-bar {
    display: flex;
    justify-content: flex-end;
    padding: 0.5rem 0;
}

.contact-item {
    margin-left: 1.5rem;
    color: white;
    font-size: 0.9rem;
}

.contact-item i {
    margin-right: 0.5rem;
}

.brand-logo img {
    height: 40px;
    vertical-align: middle;
}

.logo {
    max-height: 40px;
}


.breadcrumbs {
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs a {
    color: #666;
}

.breadcrumbs a:hover {
    color: var(--primary);
}


.hero {
    padding: 4rem 0;
    background-color: white;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #555;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-image {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}


.mission {
    padding: 4rem 0;
    background-color: var(--neutral);
    margin-bottom: 3rem;
}

.mission-content p {
    margin-bottom: 1rem;
}

.mission-timeline {
    position: relative;
}

.mission-timeline img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.timeline-points {
    margin-top: 2rem;
}

.timeline-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.timeline-point .year {
    font-weight: 700;
    color: var(--primary);
    min-width: 80px;
}


.interactive-timeline {
    padding: 4rem 0;
    background-color: white;
    margin-bottom: 3rem;
}

.timeline-widget {
    background-color: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
}

.input-form {
    height: 100%;
}

.results-container {
    height: 100%;
}

.results-placeholder {
    text-align: center;
    padding: 2rem;
    color: #999;
}

.results-placeholder i {
    margin-top: 1rem;
    color: var(--neutral);
}

.timeline-visualization {
    margin-bottom: 2rem;
}

.timeline-track {
    height: 6px;
    background-color: var(--neutral);
    border-radius: 3px;
    position: relative;
    margin: 2rem 0;
}

.timeline-progress {
    height: 6px;
    background-color: var(--success);
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    transition: width 0.5s ease;
}

.timeline-markers {
    position: relative;
    height: 0;
}

.key-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-title {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.budget-tip {
    background-color: var(--neutral);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.budget-tip h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.tip-content {
    margin-bottom: 1.5rem;
}


.stories-teaser {
    padding: 4rem 0;
    background-color: var(--neutral);
    margin-bottom: 3rem;
}

.story-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.story-card .card-image {
    position: relative;
    max-height: 200px;
    overflow: hidden;
}

.story-card .card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.story-card .card-content {
    flex-grow: 1;
}

.story-card .card-title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.story-card .card-action {
    border-top: none;
    padding-top: 0;
}


.budget-tips-teaser {
    padding: 4rem 0;
    background-color: white;
    margin-bottom: 3rem;
}

.tip-card {
    background-color: var(--light);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 2rem;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tip-icon i {
    color: white;
    font-size: 1.5rem;
}

.tip-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}


.contact-form {
    padding: 4rem 0;
    background-color: var(--neutral);
    margin-bottom: 3rem;
}


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

.thank-you-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1.5rem;
}

.thank-you-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}


.page-header {
    padding: 4rem 0;
    background-color: white;
    margin-bottom: 3rem;
}

.budget-tips-content {
    padding-bottom: 4rem;
}

.tip-block {
    margin-bottom: 4rem;
}

.tip-block.reverse .row {
    flex-direction: row-reverse;
}

.tip-image {
    margin-bottom: 2rem;
}

.tip-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.tip-content h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.tip-content h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: var(--secondary);
}

.tip-content ul, .tip-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.tip-content li {
    margin-bottom: 0.5rem;
}

.tip-note {
    background-color: var(--neutral);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary);
    margin: 1.5rem 0;
}

.snowball-steps, .challenge-steps {
    margin: 2rem 0;
}

.snowball-steps .step {
    display: flex;
    margin-bottom: 1.5rem;
}

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

.step-content {
    flex-grow: 1;
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.challenge-steps .step {
    margin-bottom: 1.5rem;
}

.challenge-steps .step h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.tip-content.full-width {
    padding: 0 1rem;
}


.stories-content {
    padding-bottom: 4rem;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--neutral);
    top: 0;
    bottom: 0;
    left: 50px;
    margin-left: -2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    left: 50px;
    margin-left: -20px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-marker .date {
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
}

.timeline-content {
    margin-left: 100px;
}

.story-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background-color: var(--neutral);
    border-radius: var(--radius);
}

.stat {
    flex: 1;
    min-width: 200px;
}

.stat-title {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}


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

.contact-details {
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

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

.contact-card .icon i {
    color: white;
    font-size: 1.25rem;
}

.contact-card .details {
    flex-grow: 1;
}

.contact-card .details h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-card .details p {
    margin: 0;
}

.contact-image {
    margin-bottom: 2rem;
}

.contact-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.map-container {
    margin-bottom: 2rem;
}

.map-container h3 {
    margin-bottom: 1rem;
}

.map-wrapper {
    height: 450px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.map-info {
    margin-bottom: 1.5rem;
}

.map-info h4 {
    margin-bottom: 0.5rem;
}

.contact-message {
    background-color: var(--neutral);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 2rem;
}

.contact-message h3 {
    margin-bottom: 1rem;
}

.contact-message p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}


.cta-section {
    padding: 4rem 0;
    background-color: var(--primary);
    color: white;
    margin-bottom: 3rem;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background-color: white;
    color: var(--primary);
}


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

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

.update-date {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--neutral);
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
}

.legal-section ul, .legal-section ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

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


.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-text {
    flex-grow: 1;
    padding-right: 2rem;
}

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

.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 1rem;
}

.cookie-settings-content {
    background-color: white;
    border-radius: var(--radius);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--neutral);
}

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

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

.category-header h4 {
    margin: 0;
}

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


.page-footer {
    background-color: var(--primary);
    padding-top: 4rem;
    margin-top: 0;
}

.footer-contact p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

.footer-contact i {
    margin-right: 0.5rem;
}

.page-footer h5 {
    color: white;
    margin-bottom: 1.5rem;
}

.page-footer a {
    color: white;
    opacity: 0.9;
}

.page-footer a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-copyright {
    margin-top: 2rem;
}


.modal {
    border-radius: var(--radius);
    max-width: 500px;
}

.modal h4 {
    color: var(--primary);
}


@media only screen and (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content {
        margin-left: 60px;
    }
    
    .contact-bar {
        justify-content: flex-start;
    }
    
    .contact-item {
        margin-left: 0;
        margin-right: 1.5rem;
    }
    
    .cookie-consent-content {
        flex-direction: column;
    }
    
    .cookie-text {
        padding-right: 0;
        margin-bottom: 1rem;
    }
}

@media only screen and (max-width: 600px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 20px;
        width: 30px;
        height: 30px;
        margin-left: -15px;
    }
    
    .timeline-content {
        margin-left: 40px;
    }
    
    .stat {
        min-width: 100%;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .thank-you-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .thank-you-buttons .btn {
        width: 100%;
    }
}