
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    color: #333F4D;
    background-color: #FFFFFF;
    line-height: 1.6;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: #2B3945;
}

.uk-text-lead {
    font-weight: 400;
    color: #2B3945;
}

.uk-background-default {
  background-color: inherit;
}


.uk-button-primary {
    background-color: #0A4B94;
}

.uk-button-primary:hover {
    background-color: #083b75;
}

.uk-button-secondary {
    background-color: #FF7D3B;
}

.uk-button-secondary:hover {
    background-color: #e66a2a;
}

.uk-section-primary {
    background-color: #0A4B94;
}

.uk-section-secondary {
    background-color: #2B3945;
}


a {
    color: #0A4B94;
    transition: color 0.2s ease;
}

a:hover {
    color: #00C2A8;
    text-decoration: none;
}


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

.uk-button-large {
    padding: 0 2rem;
}

.uk-button-default {
    border: 1px solid #0A4B94;
    color: #0A4B94;
}

.uk-button-default:hover {
    background-color: #F5F7FA;
    color: #0A4B94;
    border-color: #0A4B94;
}


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

.uk-navbar-nav > li > a {
    font-weight: 500;
    color: #2B3945;
    text-transform: none;
    min-height: 70px;
    transition: color 0.2s ease;
}

.uk-navbar-nav > li:hover > a, 
.uk-navbar-nav > li.uk-active > a {
    color: #0A4B94;
}


.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 57, 69, 0.7);
    z-index: 0;
}

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

.hero-section h1 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section .uk-text-lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}


.service-icon {
    color: #0A4B94;
}


.stat-box {
    padding: 1.5rem;
    border-radius: 8px;
    background: #F5F7FA;
    margin-bottom: 1rem;
}

.stat-box span {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0A4B94;
    display: block;
    line-height: 1;
}

.stat-box p {
    margin-top: 0.5rem;
    margin-bottom: 0;
    color: #2B3945;
    font-weight: 500;
}


.integration-item {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background-color: #F5F7FA;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.integration-item i {
    color: #0A4B94;
    margin-right: 10px;
}


.uk-card-title a {
    color: #2B3945;
    transition: color 0.2s ease;
}

.uk-card-title a:hover {
    color: #0A4B94;
    text-decoration: none;
}


.uk-form-label {
    font-weight: 500;
    color: #2B3945;
}

.uk-input, .uk-textarea, .uk-select {
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.uk-input:focus, .uk-textarea:focus, .uk-select:focus {
    border-color: #0A4B94;
}


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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-buttons {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}


.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #0A4B94;
}

input:focus + .slider {
    box-shadow: 0 0 1px #0A4B94;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


.legal-content h2 {
    margin-top: 2.5rem;
    font-size: 1.6rem;
}

.legal-content h3 {
    margin-top: 2rem;
    font-size: 1.3rem;
}

.legal-content h4 {
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.legal-content p, .legal-content ul, .legal-content ol {
    margin-bottom: 1rem;
}


footer {
    color: rgba(255, 255, 255, 0.8);
}

footer h4 {
    color: white;
    margin-bottom: 1.2rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
    color: white;
}

footer .uk-list > li:nth-child(n+2) {
    margin-top: 0.5rem;
}


@media (max-width: 960px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .uk-text-lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    html {
        font-size: 14px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .uk-button-large {
        padding: 0 1.5rem;
    }
    
    .stat-box {
        padding: 1rem;
    }
    
    .stat-box span {
        font-size: 2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}


.iti {
    width: 100%;
}