.about-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
}

.about-col {
    padding: 20px;
    box-sizing: border-box;
}

/* Kolom kiri: gambar */
.about-image {
    flex: 0 0 50%;
    border-right: 1px solid #2CA779;
    /* garis hijau daun */
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 10px;
}

/* Kolom kanan: teks */
.about-text {
    flex: 0 0 50%;
}

.about-text h2 {
    color: #103F2F;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-readmore {
    display: inline-block;
    padding: 10px 20px;
    background: #2CA779;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-readmore:hover {
    background: #1f7a55;
}

/* Animasi muncul dari bawah */
.animate-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .about-row {
        flex-direction: column;
    }

    .about-image {
        border-right: none;
        border-bottom: 1px solid #2CA779;
        margin-bottom: 20px;
    }

    .about-text {
        flex: 1 1 100%;
    }
}