/* ABOUT PAGE CONTENT STYLES ONLY */

/* Overall About section */
.about-section {
    background-color: #f9fdf9;
    color: #2e7d32;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 0;
}

.about-section:not(:first-of-type) {
    padding-top: 20px;
}
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Headings */
.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1b5e20;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Grid layout for "What Makes Us Different?" and "Why Choose Us?" */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* was 240px */
    gap: 20px;
    margin-top: 20px;
    text-align: left;
    justify-content: center;
}


/* Individual card styles */
.about-card {
    background: #e8f5e9;
    border-radius: 16px;
    padding: 24px 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2e7d32;
}

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

/* Responsive tweaks */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 16px;
    }

    .about-section h2 {
        font-size: 26px;
    }

    .about-content p {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

