
html, body {
    font-family: 'Figtree', sans-serif;
    color: #4B5563;
    background-color: #F9FAFB;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    color: #0F172A;
}

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

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

.uk-button-primary {
    background-color: #1E3A8A;
}

.uk-button-primary:hover {
    background-color: #3B82F6;
}

.uk-section-primary {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

.uk-section-secondary {
    background-color: #0F172A;
}


.iti {
    width: 100%;
}


header {
    border-bottom: 1px solid #E5E7EB;
}

.uk-navbar-nav > li > a {
    font-weight: 500;
}

.uk-navbar-nav > li.uk-active > a {
    color: #1E3A8A;
    font-weight: 700;
}


.hero-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

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


.membership-badges {
    display: flex;
    gap: 20px;
}

.membership-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.uk-badge.free-badge {
    background-color: #10B981;
}

.uk-badge.pro-badge {
    background-color: #3B82F6;
}

.uk-badge.enterprise-badge {
    background-color: #7C3AED;
}


.filter-sidebar {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.filter-sidebar h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

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


.applied-filters {
    padding: 15px;
    border-radius: 8px;
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
}

.filter-tag {
    background-color: #EFF6FF;
    color: #1E3A8A;
    border: 1px solid #DBEAFE;
    margin-right: 8px;
    padding: 4px 10px;
    display: inline-flex;
    align-items: center;
    border-radius: 16px;
}

.filter-tag a {
    color: #4B5563;
}

.filter-tag a:hover {
    color: #EF4444;
}


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

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

.program-card .uk-card-title {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.premium-card {
    border: 2px solid #DBEAFE;
    background-color: #F8FAFC;
}

.compare-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}


.comparison-table th {
    background-color: #F1F5F9;
    font-weight: 700;
}

.comparison-table .highlight-row {
    background-color: #DBEAFE;
}


.recommendation-card {
    height: 100%;
}

.recommendation-card h3 {
    color: #1E3A8A;
    font-size: 1.2rem;
}


.checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.checklist-item i {
    color: #10B981;
    margin-right: 10px;
    margin-top: 3px;
}


#calendar {
    height: 500px;
}


.cookie-banner {
    z-index: 1000;
    padding: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.cookie-settings-button {
    z-index: 990;
}


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

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


footer {
    margin-top: auto;
}

footer h4 {
    color: #FFFFFF;
    margin-bottom: 15px;
}

footer ul.uk-list li {
    margin-bottom: 8px;
}

footer ul.uk-list li i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}


@media (max-width: 959px) {
    .uk-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .uk-heading-medium {
        font-size: 2rem;
    }
    
    .uk-text-lead {
        font-size: 1.25rem;
    }
}

@media (max-width: 639px) {
    .hero-section {
        padding: 30px 0;
    }
    
    .uk-heading-medium {
        font-size: 1.75rem;
    }
    
    .uk-text-lead {
        font-size: 1.1rem;
    }
    
    .membership-badges {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    #calendar {
        height: 400px;
    }
}


.uk-article-title {
    font-size: 2.5rem;
    color: #0F172A;
    margin-bottom: 10px;
}

.uk-article-meta {
    color: #6B7280;
    margin-bottom: 30px;
}

.uk-article p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.uk-article h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #0F172A;
}

.uk-article h3 {
    font-size: 1.35rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1E3A8A;
}


.view-grid-btn, .view-list-btn {
    padding: 5px 10px;
}

.view-grid-btn.active, .view-list-btn.active {
    background-color: #1E3A8A;
    color: white;
}


.contact-info-icon {
    font-size: 2rem;
    color: #3B82F6;
}