h2 { 
    text-align: center; 
    color: #0000008a; 
    font-size: 2.5rem;
    margin-top: 40px;
}
.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 40px auto;
    padding: 60px 20px;
    background: #ddc2b4;
    border-radius: 20px;
}

.about-intro img {
    width: 320px;
    height: 420px;
    object-fit: cover;
    border-radius: 160px 160px 20px 20px; 
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(231, 182, 201, 0.4);
}

.about-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    max-width: 800px;
    margin: 0 auto;
}

.about-separator {
    width: 150px;
    height: 2px;
    background: linear-gradient(to right, transparent, #f7cfe3, transparent);
    margin: 60px auto;
}

.about-story {
    background: white;
    padding: 40px 20px;
    margin-bottom: 80px;
}

.about-story-content {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-story-content { flex-direction: row-reverse; }

.about-story-text {
    flex: 1.5;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.about-story-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.about-story-image img:first-child {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 10px 10px 0px #ddc2b4;
}

.about-logo {
    width: 140px;
    height: auto;
    margin-top: 30px;
    transition: transform 0.3s ease;
}

.about-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .about-story-content {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }

    .about-intro img {
        width: 260px;
        height: 340px;
    }

    .about-intro p, .about-story-text {
        text-align: center;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    h2 { font-size: 1.8rem; }
    
    .about-intro {
        padding: 30px 15px;
        margin: 20px;
    }

    .about-intro img {
        width: 200px;
        height: 280px;
    }

    .about-logo {
        width: 100px;
    }
}