/* About Section Stilleri */
.about {
    background: #fefefe;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    color: #00244f;
}

.about-text p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1rem;
}

.about-features {
    margin-top: 2rem;
}

.about-features li {
    color: #00244f;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.about-features li::before {
    color: #4c9fd4;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 36, 79, 0.15);
    height: 450px;
    position: relative;
}

/* About Slideshow */
.about-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 450px;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-slide.active {
    opacity: 1;
}

.about-slide-1 {
    background-image: url('../images/slayt/1.jpeg');
}

.about-slide-2 {
    background-image: url('../images/slayt/2.jpeg');
}

.about-slide-3 {
    background-image: url('../images/slayt/3.jpeg');
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content {
        gap: 2rem;
    }

    .about-image {
        height: 380px;
    }

    .about-slide {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        text-align: center;
    }

    .about-image {
        height: 300px;
    }

    .about-slide {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .about-image {
        height: 240px;
    }

    .about-slide {
        height: 240px;
    }

    .about-text p {
        font-size: 0.9rem;
    }
}
