
.about-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
}

/* Image */
.about-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.18), 
    0 8px 25px rgba(0, 0, 0, 0.22);
    transition: transform 0.4s ease;
    /*border: 2px solid #000;*/
    padding:20px;
}

    .about-image img:hover {
        transform: scale(1.03);
        box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.25), 0 12px 30px rgba(0, 0, 0, 0.3);
    }

.about-image-accosiation img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.18), 0 8px 25px rgba(0, 0, 0, 0.22);
    transition: transform 0.4s ease;
}

    .about-image-accosiation img:hover {
        transform: scale(1.03);
        box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.25), 0 12px 30px rgba(0, 0, 0, 0.3);
    }

/* Content */
.about-content {
    max-width: 520px;
}

    .about-content h2 {
        font-size: 36px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .about-content .line {
        display: block;
        width: 50px;
        height: 2px;
        background: #7a003c;
        margin-bottom: 25px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 18px;
    }

/* Button */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #006CCC;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .about-btn:hover {
        background: #006CCC;
        transform: translateY(-2px);
    }

.yt-gif {
    width: 26px;
    height: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content .line {
        margin: 0 auto 25px;
    }
}
