
:root {
    --primary-color: #5D4037;
    --secondary-color: #A1887F;
    --accent-color: #FF8F00;
    --light-bg: #EFEBE9;
    --white-bg: #F5F5F5;
    --dark-text: #424242;
    --medium-text: #757575;
    --light-beige: #D7CCC8;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--dark-text);
    background-color: var(--white-bg);
}


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

.uk-navbar-nav > li > a:hover, .uk-navbar-nav > li.uk-active > a, .uk-navbar-nav > li > a {
  color: var(--light-beige) !important;
}

.handwritten-title {
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.handwritten-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 3px;
    width: 80px;
    margin: 0 auto;
}

.handwritten-subtitle {
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.handwritten-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    height: 2px;
    background-color: var(--accent-color);
    border-radius: 2px;
    width: 60px;
}


.uk-button-primary {
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.uk-button-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.uk-button-default {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.uk-button-default:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.uk-button-text {
    color: var(--primary-color);
    font-weight: 500;
}

.uk-button-text:hover {
    color: var(--accent-color);
}


.uk-navbar-container:not(.uk-navbar-transparent) {
    background-color: var(--white-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.uk-navbar-nav > li > a {
    color: var(--dark-text);
    font-weight: 500;
    text-transform: none;
    transition: all 0.3s ease;
}

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

.uk-navbar-nav > li > a::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.uk-navbar-nav > li > a:hover::before,
.uk-navbar-nav > li.uk-active > a::before {
    transform: scaleX(1);
}

.uk-navbar-toggle {
    color: var(--primary-color);
    z-index: 100;
    position: relative;
}

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

.uk-nav-default > li > a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.uk-nav-default > li > a:hover,
.uk-nav-default > li.uk-active > a {
    color: white;
}


.hero-section {
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section > div {
    position: relative;
    z-index: 2;
}


.uk-card {
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.uk-card-default {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.custom-card {
    background-color: var(--white-bg);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.news-card {
    position: relative;
}

.news-card .uk-card-badge {
    background-color: var(--accent-color);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 12px;
}

.article-card {
    height: 100%;
}

.article-card .uk-article-title {
    font-size: 1.5rem;
    line-height: 1.4;
}

.article-card .uk-badge {
    background-color: var(--light-beige);
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 12px;
}

.advantage-card {
    text-align: center;
    padding: 30px 20px;
}

.advantage-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.success-case-card {
    height: 100%;
}

.success-case-card .uk-card-title {
    font-size: 1.3rem;
}

.faq-card .uk-accordion-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.faq-card .uk-accordion-title::before {
    color: var(--accent-color);
}

.contact-info-card {
    text-align: center;
    padding: 30px 20px;
}

.contact-info-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.calculator-card {
    background-color: var(--white-bg);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.office-hours-card {
    background-color: var(--light-bg);
}


.custom-list .list-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-list .contact-icon {
    width: 30px;
    height: 30px;
    background-color: var(--light-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 0.9rem;
}


.feature-item {
    display: flex;
    margin-bottom: 25px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

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

.feature-content h4 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.1rem;
}


.calculator-wrapper {
    position: relative;
}

.calculator-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    background-color: var(--light-beige);
    border-radius: 8px;
    z-index: -1;
}


.map-container {
    height: 450px;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


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

.footer-logo {
    filter: brightness(0) invert(1);
}


.iti {
    width: 100%;
}


.thank-you-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.thank-you-card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}


#cookie-consent-banner {
    background-color: var(--white-bg);
    border-top: 1px solid var(--light-beige);
    z-index: 1000;
}


@media (max-width: 959px) {
    .handwritten-title {
        font-size: 2rem;
    }
    
    .handwritten-subtitle {
        font-size: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .calculator-wrapper::before {
        display: none;
    }
}

@media (max-width: 639px) {
    .handwritten-title {
        font-size: 1.8rem;
    }
    
    .handwritten-subtitle {
        font-size: 1.3rem;
    }
    
    .uk-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .contact-info-card,
    .advantage-card {
        padding: 20px 15px;
    }
}

.uk-position-top {
  z-index: 1001 !important;
}

.uk-navbar-container {
  z-index: 1001 !important;
}

.uk-navbar-nav {
  z-index: 1001 !important;
}