/* ============================================
   Module Page Styles
   ============================================ */

.module-page {
    padding: 60px 0;
    min-height: 60vh;
}

.module-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.module-header {
    margin-bottom: 40px;
    text-align: center;
}

.module-title {
    font-size: 48px;
    font-weight: 700;
    color: #043266;
    margin-bottom: 20px;
    font-family: "Kanit", sans-serif;
}

.module-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.module-body p {
    margin-bottom: 20px;
}

.module-body h1,
.module-body h2,
.module-body h3,
.module-body h4,
.module-body h5,
.module-body h6 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #043266;
    font-family: "Kanit", sans-serif;
}

.module-body h2 {
    font-size: 36px;
    font-weight: 600;
}

.module-body h3 {
    font-size: 28px;
    font-weight: 600;
}

.module-body ul,
.module-body ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.module-body li {
    margin-bottom: 10px;
}

.module-body a {
    color: #2c7be5;
    text-decoration: underline;
}

.module-body a:hover {
    color: #043266;
}

.module-body blockquote {
    border-left: 4px solid #c9a961;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #666;
}

.module-body img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.module-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.module-body table th,
.module-body table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.module-body table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .module-page {
        padding: 40px 0;
    }

    .module-title {
        font-size: 36px;
    }

    .module-body h2 {
        font-size: 28px;
    }

    .module-body h3 {
        font-size: 24px;
    }

    .module-content {
        padding: 0 15px;
    }
}

