html {
    scroll-behavior: smooth;
}

/* #about { */
.section-container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    /* background-color: #f9f9f9; */
}

.about-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    width: 90%;
}

.about-box {
    background-color: #edece2;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-box h3 {
    color: rgb(93, 93, 93);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: "Gravitas One", serif;
}

.about-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-box ul li {
    color: rgb(93, 93, 93);
    font-size: 1.1rem;
    line-height: 2;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(93, 93, 93, 0.1);
}

.about-box ul li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}