/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: flex;
    align-items: center;
}

.about-text {
    flex: 1;
    padding-right: 5%;
}

.about-text h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.about-text p {
    margin-bottom: 20px;
    max-width: 600px;
}

.signature {
    margin-top: 30px;
}

.about-image {
    position: relative;
    background-color: var(--dark-gray);
    border-radius: 10px;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
}
