/* Module Page General Styles */
body.module-page-body {
    background: #f8f9fa;
}

main.module-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    gap: 2.5rem;
}

/* Page Header */
.module-header {
    text-align: center;
    border-bottom: 2px solid #e0e6ed;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
}

.module-header h2 {
    font-size: 2.5rem;
    text-align: center;
}

.module-header p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-top: 0.5rem;
    text-align: center;
}

/* Content Sections */
.module-content-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.module-content-section h3 {
    font-size: 1.6rem;
    color: #191c64;
    margin: 0 0 1rem 0;
    text-align: left;
}

.module-content-section p, .module-content-section ul {
    text-align: justify;
    color: #2c3e50;
}

.module-content-section ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.module-content-section li {
    position: relative;
    padding-left: 1.75rem;
}

.module-content-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: #27ae60;
    font-weight: 800;
}

/* Todo List */
.checklist li::before {
    content: '→';
    color: #6d126e;
}

/* CTA */
.module-cta {
    text-align: center;
}


