/* ===== MODULES ===== */
.modules-section {
    padding: 20px 20px;
    background: linear-gradient(180deg, #e8fff0 0%, #c8f7d4 100%);
    text-align: center;
}

/* HEADER */
.modules-header {
    text-align: center;
    margin-bottom: 50px;
}

.modules-header h2 {
    font-size: 36px;
    color: #0b2f26;
    margin-bottom: 10px;
}

.modules-header p {
    color: #0b2f26;
    max-width: 600px;
    margin: 0 auto;
}

/*
.modules-header h2 {
    font-size: 36px;
    color: #0f3d2e;
    margin-bottom: 10px;
}

.modules-header p {
    color: #2f5d4a;
    margin-bottom: 40px;
}
*/

/* GRID */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.module-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    cursor: pointer;
}

.module-card {
    text-align: center;
}

.module-card i {
    font-size: 40px;
    color: #0f3d2e;
    margin-bottom: 15px;
}

.module-card h3 {
    margin-bottom: 10px;
    color: #0f3d2e;
}

.module-card p {
    font-size: 14px;
    color: #355c4a;
}

/* HOVER EFFECT */
.module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

@media (max-width: 992px){
    .modules-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px){
    .modules-grid{
        grid-template-columns: 1fr;
    }

    .modules-header h2{
        font-size: 24px;
    }

    .modules-section{
        padding: 20px 10px;
    }
}