/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    color: #333;
}

main {
    padding: 20px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    background-color: #7b3130;
    color: #fafafa;
    padding: 40px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.hero-section h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* About Details */
.about-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.about-content, .vision {
    flex: 1 1 calc(50% - 20px);
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-content h2, .vision h3 {
    color: #7b3130;
}

.about-content p {
    line-height: 1.6;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: #fafafa;
}

.about-spacer {
    height: 300px; /* Adjust the height as needed */
}

.about-section-img {
    background-image: url('./boxes.jpg'); /* Replace with the actual path */
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    color: #fafafa;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 15px;
    width: 80%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section-img {
        background-size: cover;
    }
    .about-details {
        flex-direction: column;
    }
    .about-content, .vision, .values {
        flex: 1 1 100%;
    }

    .hero-section {
        padding: 20px;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}
