/* simplified Engagement & Requirements Section Styling */

.info-section {
    padding: 8rem 0 2rem 0;
    background-color: #000;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
}

.info-section-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Styling - Mirroring About Page */
.section-header-simple {
    text-align: center !important;
    margin-bottom: 5rem;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
}

.section-header-simple p {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
    color: #fff;
    font-weight: 500;
}

.section-header-simple h2 {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: #fff;
    max-width: 800px;
    margin: 0 auto !important;
    text-align: center !important;
}

.section-header-simple h2 .serif-italic {
    font-size: 1.15em;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

/* Engagement Grid - 4 Columns in a row (matches requirements-grid) */
.engagement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    width: 100%;
    margin-bottom: 2rem;
}

/* Requirements Grid - 4 Columns */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    width: 100%;
}

.req-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.req-icon {
    width: 54px;
    height: 54px;
    color: #facc15;
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
}

.req-item:hover .req-icon {
    transform: scale(1.15) rotate(5deg);
}

.req-item h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fff;
}

.req-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Layouts */
@media (max-width: 1200px) {
    .engagement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .engagement-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .section-header-simple h2 {
        font-size: 2.5rem;
    }

    .info-section {
        padding: 6rem 0;
    }
}