.about-container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    font-family: 'DM Sans', sans-serif;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 40px;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
}

.about-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: auto;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.about-section img {
    width: 100%;
    border-radius: 10px;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
}

.about-text p {
    line-height: 1.7;
    color: #444;
}

.features {
    margin-top: 60px;
}

.features h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #555;
}

.team {
    margin-top: 80px;
    text-align: center;
}

.team h2 {
    font-size: 30px;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.team-member img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.team-member h4 {
    margin: 5px 0;
}

.team-member span {
    font-size: 13px;
    color: #666;
}

@media (max-width: 768px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-header h1 {
        font-size: 32px;
    }

    .about-header p {
        font-size: 16px;
    }
}