/* About Container */
.about-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.main-header {
    background-color: #8B0000;
    color: white;
    padding: 1rem 0 0 0;
    font-family: 'Montserrat', sans-serif;
}

.cart-badge, .wishlist-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #8B0000;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    font-weight: 600;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.cart-icon, .wishlist-icon {
    position: relative;
    display: flex;
    align-items: center;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.pexels.com/photos/3768916/pexels-photo-3768916.jpeg');
    background-size: cover;
    background-position: center 40%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-section {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* About Sections */
.about-section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section:nth-child(even) {
    background-color: #f8f9fa;
    max-width: 100%;
    width: 100%;
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    width: 64px;
    height: 64px;
    background: #8B0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.mission-card h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1rem;
}

.mission-card p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature h4 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-item h4 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-item p {
    font-size: 1rem;
    color: #666;
    margin: 0.5rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mission-card,
.feature,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

.mission-card:nth-child(2) {
    animation-delay: 0.2s;
}

.mission-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .mission-grid,
    .features-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 3rem 1rem;
    }

    .section-content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .mission-card,
    .feature,
    .contact-item {
        padding: 1.5rem;
    }
}
