/* About Section */
.about {
    background-color: var(--primary-bg);
}

.about-grid {
    display: flex;
    gap: 48px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.profile-img {
    flex: 1;
    text-align: center;
}

.profile-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {

    .about-grid {
        flex-direction: column;
        gap: 32px;
    }
}