
:root {
    --primary-color: #1a2b57;
    --secondary-color: #4a90e2;
    --accent-color: #7e57c2;
    --background-color: rgba(240, 245, 255, 0.8);
    --text-color: #252834;
    --light-text: #f8f9fa;
    --transparent-ui: rgba(255, 255, 255, 0.15);
    --gradient-overlay: linear-gradient(135deg, rgba(74, 144, 226, 0.3) 0%, rgba(126, 87, 194, 0.2) 100%);
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --backdrop-blur: blur(10px);
    --transition-standard: all 0.3s ease;
}

body, html {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    background-color: #f9fafc;
    scroll-behavior: smooth;
    overflow-x: hidden;
    line-height: 1.6;
}

.iti {
    width: 100%;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

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

a {
    color: var(--secondary-color);
    transition: var(--transition-standard);
}

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


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition-standard);
}

header .uk-navbar-container {
    background: transparent !important;
    padding: 10px 0;
}

.uk-navbar-nav > li > a {
    font-weight: 600;
    min-height: 50px;
    color: var(--text-color);
    transition: var(--transition-standard);
    position: relative;
}

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

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

.uk-navbar-nav > li > a:hover::after,
.uk-navbar-nav > li.uk-active > a::after {
    width: 30px;
}

.cta-button {
    background: var(--gradient-overlay), var(--primary-color) !important;
    color: white !important;
    border-radius: 4px;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(26, 43, 87, 0.2);
    transition: all 0.3s ease !important;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 43, 87, 0.3);
}


.futuristic-card {
    background: var(--transparent-ui);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-standard);
    overflow: hidden;
}

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

.uk-button {
    font-weight: 600;
    text-transform: none;
    border-radius: 4px;
    transition: var(--transition-standard);
}

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

.uk-button-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.uk-button-default {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.uk-button-default:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}


.hero-section {
    padding: 140px 0 80px;
    position: relative;
    background: var(--gradient-overlay);
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

.hero-content h1 {
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
    opacity: 0.3;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}


.features-section {
    position: relative;
    background: white;
}

.feature-card {
    padding: 30px;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}


.how-it-works {
    position: relative;
    background: var(--background-color);
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-standard);
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


.membership-section {
    position: relative;
    background: white;
}

.plan-card {
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    background: white;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-standard);
    position: relative;
}

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

.plan-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #777;
}

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

.uk-card-primary h3,
.uk-card-primary .plan-price {
    color: white;
}

.uk-card-primary .plan-price span {
    color: rgba(255, 255, 255, 0.7);
}

.uk-card-primary .uk-list-bullet > li::before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22white%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E");
}

.uk-card-badge {
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    top: 15px;
    right: 15px;
}


.events-section {
    position: relative;
    background: var(--background-color);
}

.event-card {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-standard);
    margin-bottom: 20px;
    height: 100%;
}

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

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    background: var(--primary-color);
    color: white;
    padding: 15px 10px;
    font-weight: 600;
}

.event-date .day {
    font-size: 1.5rem;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-content {
    padding: 20px;
    flex-grow: 1;
}

.event-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(126, 87, 194, 0.1);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.event-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}


.security-section {
    position: relative;
}

.security-section img {
    border-radius: 10px;
    overflow: hidden;
}

.security-card {
    margin-bottom: 20px;
}

.security-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.security-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}


.benefits-section {
    position: relative;
}

.benefits-section img {
    border-radius: 10px;
    overflow: hidden;
}

.uk-list-bullet > li {
    margin-bottom: 10px;
}


.contact-section {
    position: relative;
    background: white;
}

.uk-form-label {
    font-weight: 600;
    color: var(--primary-color);
}

.uk-input,
.uk-textarea {
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition-standard);
}

.uk-input:focus,
.uk-textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
}

.contact-info .uk-card {
    height: 100%;
    border-radius: 10px;
}

.uk-checkbox {
    margin-right: 8px;
    position: relative;
    top: -1px;
}

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


footer {
    background: var(--primary-color) !important;
    color: var(--light-text);
    position: relative;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-standard);
}

footer a:hover {
    color: white;
    text-decoration: none;
}

footer h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
}


.page-title-section {
    padding-top: 120px;
    background: var(--background-color);
    position: relative;
}


.value-card,
.audience-card,
.format-card {
    padding: 25px;
    background: white;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-standard);
    text-align: center;
}

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

.value-card i,
.audience-icon i,
.format-icon i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.audience-icon,
.format-icon {
    width: 60px;
    height: 60px;
    background: rgba(126, 87, 194, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--secondary-color);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-date {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-top: 0;
}


.course-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-standard);
    margin-bottom: 30px;
    height: 100%;
}

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

.course-image {
    position: relative;
}

.course-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-content {
    padding: 20px;
}

.course-content h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.course-meta {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.course-meta span {
    font-size: 0.9rem;
    color: #666;
}

.course-meta i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.course-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.course-skills span {
    background: rgba(74, 144, 226, 0.1);
    color: var(--secondary-color);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.expert-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-standard);
}

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

.expert-bio h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 5px;
}

.expert-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.process-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-standard);
    position: relative;
}

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

.process-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
}


.contact-info-card {
    display: flex;
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-standard);
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(126, 87, 194, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.contact-details h3 {
    margin-top: 0;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-details p {
    margin: 0;
}


.thanks-section {
    padding-top: 140px;
}

.thanks-content {
    text-align: center;
}

.thanks-content i {
    font-size: 5rem;
    color: var(--success-color);
}

.recommendation-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-standard);
}

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

.recommendation-card h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.recommendation-card i {
    color: var(--accent-color);
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin-top: 0;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.cookie-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.cookie-modal-content {
    position: relative;
    margin: 10% auto;
    padding: 30px;
    width: 80%;
    max-width: 600px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    animation: modal-in 0.3s ease-out;
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: #777;
    cursor: pointer;
    transition: var(--transition-standard);
}

.cookie-close:hover {
    color: var(--primary-color);
}

.cookie-modal h2 {
    margin-top: 0;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cookie-options {
    margin: 20px 0;
}

.cookie-option {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.cookie-category {
    font-weight: 600;
    color: var(--primary-color);
    margin-left: 5px;
}

.cookie-option p {
    margin: 5px 0 0 25px;
    font-size: 0.9rem;
    color: #666;
}

.cookie-actions {
    text-align: right;
    margin-top: 20px;
}


@media (max-width: 959px) {
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-date {
        left: 20px;
        transform: none;
    }
    
    .timeline-content {
        width: 80%;
        margin-left: auto !important;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 15px;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        margin-left: 0;
        margin-top: 15px;
        justify-content: center;
    }
}

@media (max-width: 639px) {
    h1.uk-heading-medium {
        font-size: 2rem;
    }
    
    h2.uk-heading-small {
        font-size: 1.5rem;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        padding: 10px;
        flex-direction: row;
        justify-content: center;
        min-width: initial;
    }
    
    .event-date .day {
        margin-right: 5px;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
    }
    
    .uk-button {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .cookie-modal-content {
        width: 90%;
        margin: 20% auto;
        padding: 20px;
    }
}