
body {
    font-family: 'Open Sans', sans-serif;
    color: #2C3E50;
    background-color: #F5F7FA;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    color: #3E6990;
    transition: color 0.3s ease;
}

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


.gradient-text {
    background: linear-gradient(135deg, #3E6990 0%, #F27649 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}


.uk-button-primary {
    background-color: #3E6990;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.uk-button-primary:hover {
    background-color: #F27649;
    color: white;
}

.uk-button-secondary {
    background-color: #F27649;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

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


.uk-navbar-container:not(.uk-navbar-transparent) {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.uk-navbar-nav > li > a {
    font-weight: 600;
    color: #2C3E50;
    transition: color 0.3s ease;
}

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


.hero-section {
    position: relative;
}

.hero-image {
    filter: brightness(0.7);
}

.uk-overlay-primary {
    background: rgba(26, 42, 58, 0.6);
}


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

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

.uk-card-title {
    font-weight: 700;
}

.uk-card-primary {
    background: linear-gradient(135deg, #3E6990 0%, #5886B8 100%);
}

.uk-card-primary .uk-card-title {
    color: white;
}


.service-icon {
    color: #3E6990;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-icon:hover {
    color: #F27649;
}


.uk-section-secondary {
    background-color: #1A2A3A;
}

.uk-totop {
    background-color: #3E6990;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.uk-totop:hover {
    background-color: #F27649;
    color: white;
}


#cookie-consent-banner {
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}


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

.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
    border-color: #3E6990;
}


.parallax {
    border-radius: 8px;
    overflow: hidden;
}


.uk-table th {
    font-weight: 700;
    color: #3E6990;
}

.uk-table-hover tbody tr:hover {
    background-color: rgba(62, 105, 144, 0.05);
}


.uk-accordion-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3E6990;
}

.uk-accordion-title:hover {
    color: #F27649;
}


.uk-label {
    background-color: #3E6990;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 0.8rem;
}


.iti { 
    width: 100%; 
}


@media (max-width: 960px) {
    .uk-heading-medium {
        font-size: 2.5rem;
    }
    
    .uk-heading-small {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .uk-heading-medium {
        font-size: 2rem;
    }
    
    .uk-heading-small {
        font-size: 1.5rem;
    }
    
    .uk-card-body {
        padding: 15px;
    }
}


.typed-cursor {
    opacity: 1;
    animation: typedjsBlink 0.7s infinite;
}

@keyframes typedjsBlink {
    50% { opacity: 0.0; }
}