
:root {
    --primary-color: #0E4C92;
    --secondary-color: #59A5D8;
    --accent-color: #E36F1E;
    --light-bg-color: #F5F9FC;
    --dark-bg-color: #1D3557;
    --text-color: #333333;
    --secondary-text-color: #666666;
    --white: #ffffff;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

.uk-text-lead {
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 1.5;
}

.uk-heading-medium {
    font-weight: 700;
    letter-spacing: -1px;
}

.uk-heading-small {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.uk-article p {
    font-size: 1.1rem;
    line-height: 1.7;
}


a {
    color: var(--primary-color);
    transition: color 0.2s ease-in-out;
}

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


.uk-button {
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: none;
}

.uk-button-default {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

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

.uk-button-primary {
    background-color: var(--primary-color);
}

.uk-button-primary:hover {
    background-color: var(--dark-bg-color);
}

.uk-button-large {
    padding: 0 40px;
    line-height: 52px;
    font-size: 1.1rem;
}


header {
    padding: 15px 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.uk-navbar-container:not(.uk-navbar-transparent) {
    background: transparent;
}

.uk-navbar-nav > li > a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    text-transform: none;
    transition: color 0.2s ease;
    min-height: 60px;
}

.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li.uk-active > a {
    color: var(--primary-color);
}


.uk-offcanvas-bar {
    background-color: var(--dark-bg-color);
}

.uk-offcanvas-bar .uk-nav-default > li > a {
    color: var(--white);
    font-size: 1.1rem;
    padding: 10px 0;
}

.uk-offcanvas-bar .uk-nav-default > li.uk-active > a {
    color: var(--accent-color);
}


.uk-section-primary {
    background-color: var(--primary-color);
}

.uk-section-secondary {
    background-color: var(--dark-bg-color);
}

.uk-section-muted {
    background-color: var(--light-bg-color);
}


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


.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg-color) 100%);
}


.uk-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uk-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.uk-card-media-top img {
    width: 100%;
    height: auto;
}

.uk-card-default .uk-card-title {
    color: var(--primary-color);
}

.uk-card-secondary {
    background: var(--dark-bg-color);
}


.contact-form-card {
    background-color: var(--dark-bg-color);
    border-radius: 8px;
}

.contact-form-card h3 {
    color: var(--white);
}


.expense-card {
    background-color: var(--white);
}

.expense-category {
    margin-bottom: 25px;
}

.expense-slider {
    height: 10px;
    margin: 10px 0;
}

.expense-value, .expense-percentage {
    font-weight: 700;
    font-size: 0.9rem;
}

.expense-percentage {
    color: var(--accent-color);
}


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

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 20px 0;
    position: relative;
}

.timeline-date {
    position: absolute;
    width: 120px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    z-index: 1;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}


.thank-you-section {
    min-height: 60vh;
}

.thank-you-icon {
    color: var(--accent-color);
}


footer {
    background-color: var(--light-bg-color);
}

footer h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

footer a {
    color: var(--text-color);
}

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


#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
}


@media (max-width: 959px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-date {
        left: 20px;
        transform: translate(-50%, -50%);
        width: 80px;
        font-size: 0.8rem;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
}

@media (max-width: 639px) {
    .uk-heading-medium {
        font-size: 2rem;
    }
    
    .uk-heading-small {
        font-size: 1.5rem;
    }
    
    .uk-text-lead {
        font-size: 1.1rem;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .page-header {
        padding: 30px 0;
    }
    
    .uk-button-large {
        padding: 0 30px;
        line-height: 44px;
        font-size: 1rem;
    }
}


.noUi-target {
    border: none;
    box-shadow: none;
    background-color: #e5e5e5;
    height: 8px;
    border-radius: 4px;
}

.noUi-connects {
    border-radius: 4px;
}

.noUi-connect {
    background: var(--primary-color);
}

.noUi-handle {
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    background: var(--white);
    width: 20px !important;
    height: 20px !important;
    top: -6px !important;
    right: -10px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.noUi-handle::before,
.noUi-handle::after {
    display: none;
}


#expense-chart {
    margin: 20px 0;
}