/* About Section */
.about-page {
    padding: 100px 0;
    margin-top: 30px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: var(--accent-color);
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--light-grey);
}

.about-image {
    flex: 1;
    height: 400px;
    background-color: var(--grey);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 58, 58, 0.5), rgba(26, 26, 26, 0.3));
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        order: -1;
    }
}