


.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    padding: 2rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/1.jpg') center/cover no-repeat;
    filter: blur(8px);
    transform: scale(1.1);
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(13, 58, 82, 0.6), rgba(13, 58, 82, 0.6));
}

.hero-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.hero-image-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-left img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-content {
    text-align: left;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-image-left {
        order: 1;
    }

    .hero-content {
        order: 2;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}


.about-section {
    background-color: var(--color-light);
}

.about-content {
    padding: 2rem 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}


.score-section {
    background-color: var(--color-white);
}


.competitions-section {
    background-color: var(--color-light);
}

.competitions-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.competitions-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}


.trust-section {
    background-color: var(--color-white);
}


.cta-section {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    text-align: center;
}

.cta-section .section-title,
.cta-section .section-subtitle {
    color: var(--color-white);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    margin-top: 1.5rem;
}
