/* ===== PAGE BACKGROUND ===== */
.about-page {
    background-color: #f3f4f6; /* light grey like Amazon */
    padding: 60px 20px;
    min-height: 100vh;
}

/* ===== MAIN WHITE CARD ===== */
.about-hero,
.about-section {
    max-width: 1100px;
    margin: 0 auto 40px auto;
}

.about-hero-content {
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* ===== HEADINGS ===== */
.about-hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-hero-content p {
    font-size: 16px;
    color: #555;
    max-width: 800px;
}

/* ===== ABOUT GRID ===== */
.about-section {
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-text h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-content,
    .about-section {
        padding: 30px 25px;
    }
}
