.about-hero {
    background: linear-gradient(135deg, #d4868f, #c27380);
    color: white;
    padding: 100px 40px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.about-hero p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.about-section {
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-section:nth-child(even) {
    direction: rtl;
}

.about-section:nth-child(even) > * {
    direction: ltr;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 300;
    color: #d4868f;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.about-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-section {
    background: linear-gradient(135deg, #d4868f, #c27380);
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    color: white;
    margin: 60px 40px;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #d4868f;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 36px;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-section:nth-child(even) {
        direction: ltr;
    }
}
