


:root {
    --primary: #1a365d;
    --secondary: #4a9f9c;
    --accent: #f9a03f;
    --background-light: #f8f9fa;
    --background-dark: #2c3e50;
    --text-primary: #333333;
    --text-secondary: #6c757d;
    --success: #2ecc71;
    --warning: #e74c3c;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
}

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


.uk-text-lead {
    font-weight: 300;
    color: var(--text-secondary);
}

.text-primary {
    color: var(--primary);
}

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

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

.text-success {
    color: var(--success);
}




header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.uk-logo img {
    max-height: 50px;
}


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

.uk-navbar-nav > li > a {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

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


.uk-button {
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

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

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

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

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

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

.uk-button-default:hover {
    color: var(--secondary);
    border-color: var(--secondary);
}


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

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

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

.uk-card-primary .uk-card-title {
    color: #ffffff;
}

.uk-card-media-top img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
}


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


.process-step {
    position: relative;
    padding: 20px;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-detail {
    position: relative;
    padding: 20px;
}

.process-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.8;
    margin-bottom: 10px;
}


.uk-form-label {
    font-weight: 600;
}

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

.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(74, 159, 156, 0.1);
}


.iti {
    width: 100%;
}

.iti__flag-container {
    z-index: 3;
}


footer {
    background-color: var(--background-dark);
    color: #ffffff;
}

footer h4 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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


.cookie-consent-banner {
    background-color: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1000;
}

.cookie-category {
    padding: 15px;
    margin-bottom: 10px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
}

#cookie-settings-modal .uk-modal-dialog {
    border-radius: var(--border-radius);
}


@media (max-width: 960px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .uk-heading-medium {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .process-number {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 30px 0;
    }
    
    .uk-heading-medium {
        font-size: 1.75rem;
    }
    
    .uk-card-body {
        padding: 20px;
    }
    
    .process-number {
        font-size: 28px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}


:focus {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

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


@media (forced-colors: active) {
    .uk-button-primary,
    .uk-button-secondary {
        forced-color-adjust: none;
    }
}


@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}


@media print {
    header, footer, .uk-button, #cookie-consent-banner {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
}