﻿
/* Tablet view */
@media (max-width: 768px) {
    .about {
        flex-direction: column;
        justify-content: center;
        background-position: top center;
        background-size: cover;
        padding: 20px;
        min-height: auto;
    }

    .about-text {
        max-width: 90%;
        margin-top: 20px;
    }

    .corner-img {
        width: 80px;
        bottom: 5px;
        right: 5px;
    }
}

/* Mobile view */
@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .corner-img {
        display: none; /* hide decorative leaf on very small screens */
    }
}
