/* About Section */
.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 42fr 58fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    background: #000000;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 24px;
}

.about-content h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #000000;
}

.about-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #667085;
    margin-bottom: 40px;
}

.signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 36px;
    font-weight: 400;
    color: #3675ff;
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}