/* About Section */
.about {
    padding: 6em 2em;
    background-color: var(--color-slot-bg);
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--g-gap);
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Text Content */
.about-text {
    flex: 1 1 500px;
    animation: fadeInLeft 1s ease forwards;
    opacity: 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1em;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5em;
    color: var(--color-text);
}

/* Bullet Points */
.about-list {
    list-style: none;
    padding-left: 0;
}

.about-list li {
    font-size: 1rem;
    margin-bottom: 0.8em;
    color: var(--color-text);
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInRight 0.8s ease forwards;
}

.about-list li:nth-child(1) {
    animation-delay: 0.5s;
}

.about-list li:nth-child(2) {
    animation-delay: 0.7s;
}

.about-list li:nth-child(3) {
    animation-delay: 0.9s;
}

.about-list li:nth-child(4) {
    animation-delay: 1.1s;
}

/* Image Content */
.about-image {
    flex: 1 1 400px;
    text-align: center;
    animation: fadeInRight 1s ease forwards;
    opacity: 0;
}

.about-image img {
    max-width: 100%;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
}

/* Animations */
@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }

    from {
        opacity: 0;
        transform: translateX(-30px);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }

    from {
        opacity: 0;
        transform: translateX(30px);
    }
}

/* Responsive */
@media screen and (max-width: 992px) {
    .about-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-text,
    .about-image {
        flex: 1 1 100%;
        animation: fadeInUp 1s ease forwards;
    }

    .about-list li {
        transform: translateY(20px);
    }
}

@media screen and (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }

    .about-description {
        font-size: 1rem;
    }
}