
:root {
    --primary-color: #800020; 
    --secondary-color: #2F4F4F; 
    --accent-color: #DAA520; 
    --background-color: #F5F5DC; 
    --text-color: #333333; 
    --heading-color: #4A0000; 
    --link-color: #800020; 
    --link-hover-color: #DAA520; 
    --light-bg: #F8F8F0; 
    --card-bg: #FFFFFF; 
    --footer-bg: #2F4F4F; 
    --footer-text: #F5F5DC; 
    --error-color: #D32F2F; 
    --success-color: #388E3C; 
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: var(--link-color);
    transition: color 0.3s ease;
}

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


.uk-container-small {
    max-width: 600px;
}


.uk-button {
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.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: white;
}


.uk-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.uk-card-body {
    padding: 30px;
}

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


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

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

.uk-navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease, left 0.3s ease;
}

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

.uk-navbar-nav > li:hover > a::after,
.uk-navbar-nav > li.uk-active > a::after {
    width: 70%;
    left: 15%;
}


.hero-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(128, 0, 32, 0.05) 0%, rgba(218, 165, 32, 0.05) 100%);
    z-index: 0;
}

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


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


.process-step {
    display: flex;
    margin-bottom: 30px;
}

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

.process-content {
    padding-top: 5px;
}


.testimonial-card {
    height: 100%;
}

.testimonial-icon {
    background-color: var(--accent-color);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.testimonial-text {
    font-style: italic;
}


.value-card {
    height: 100%;
}

.value-icon {
    background-color: var(--accent-color);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}


.approach-card {
    height: 100%;
}

.approach-icon {
    background-color: var(--secondary-color);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}


.impact-card {
    text-align: center;
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 8px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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


.case-study {
    margin-bottom: 20px;
}


.cta-card {
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}


.contact-list {
    margin-top: 20px;
}

.contact-icon {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; 
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


.thank-you-icon {
    color: var(--success-color);
    font-size: 80px;
    display: block;
    margin-bottom: 20px;
}


.uk-input,
.uk-textarea,
.uk-select {
    border-radius: 4px;
    border: 1px solid #ddd;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.uk-input:focus,
.uk-textarea:focus,
.uk-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(128, 0, 32, 0.2);
}

.uk-form-label {
    font-weight: 500;
    margin-bottom: 5px;
}


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

.uk-section-secondary a {
    color: var(--footer-text);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.uk-section-secondary a:hover {
    color: var(--footer-text);
    opacity: 1;
    text-decoration: none;
}

.uk-section-secondary h4 {
    color: var(--footer-text);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    display: inline-block;
}


.cookie-banner {
    z-index: 1000;
    display: none;
}


.iti {
    width: 100%;
}


@media (max-width: 959px) {
    .uk-card-body {
        padding: 20px;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .process-number {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

@media (max-width: 639px) {
    h1.uk-heading-medium {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h2.uk-heading-small {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .uk-text-lead {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}


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

.fadeIn {
    animation: fadeIn 0.8s ease forwards;
}


.splide__arrow {
    background: var(--primary-color);
    opacity: 1;
}

.splide__arrow svg {
    fill: white;
}

.splide__pagination__page.is-active {
    background: var(--primary-color);
}


.uk-accordion-title {
    font-size: 1.2rem;
    color: var(--heading-color);
    transition: color 0.3s ease;
}

.uk-accordion-title:hover {
    color: var(--primary-color);
}

.uk-accordion-content {
    margin-top: 15px;
}


@media print {
    body {
        font-size: 12pt;
        background: white;
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
    
    .uk-navbar-container,
    .uk-offcanvas-bar,
    .cookie-banner,
    #cookie-settings-modal,
    .uk-button {
        display: none !important;
    }
    
    .uk-container {
        max-width: 100%;
        padding: 0;
    }
    
    .uk-card {
        box-shadow: none !important;
        border: 1px solid #ddd;
    }
}