/* General Styles */
body {
    font-family: 'Kumbh Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}
/* Hero Section */
.about-hero {
    background: url('./images/about-banner.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 2.8rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
}

/* About Section */
.about-section {
    padding: 50px 20px;
    text-align: center;
    background: #fff;
}

.about-container {
    max-width: 800px;
    margin: auto;
}

.about-container h2 {
    font-size: 2rem;
    color: #D9534F;
}

.about-container .highlight {
    color: #0275d8;
    font-weight: bold;
}

/* Our Story */
.our-story {
    background: #f1f1f1;
    padding: 60px 20px;
    text-align: center;
}

.story-content {
    max-width: 900px;
    margin: auto;
}

.story-content h2 {
    font-size: 2rem;
    color: #5cb85c;
}

.story-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #666;
    margin: 20px 0;
}

/* What We Do Section */
.what-we-do {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    background: #e3e3e3;
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: #0275d8;
}

.feature-item h3 {
    margin: 15px 0;
    font-size: 1.5rem;
}

/* CTA Section */
.cta {
    text-align: center;
    background: #d9534f; /* A richer red tone */
    padding: 40px 20px;
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.cta-btn, .cta-side-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    color: #d9534f;
    background-color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.cta-btn:hover, .cta-side-btn:hover {
    background-color: #f5f5f5;
}




/* Footer */
.footer__container {
    background: #000;
    color: white;
    padding: 30px;
    text-align: center;
}

.social__icons a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
}

.social__icons a:hover {
    color: #D9534F;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }
}
