﻿body {
}

h1 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    letter-spacing: 5px;
}

/* ---------- Main Content Area ---------- */
.main-content {
    padding-top: 100px;
    min-height: 100vh;
}

.page-header {
    background: linear-gradient(135deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
}

    .page-header h1 {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .page-header p {
        color: var(--text-light);
        font-size: 1.1rem;
    }

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.9rem;
}

    .breadcrumb a {
        color: var(--text-light);
        transition: color 0.3s;
    }

        .breadcrumb a:hover {
            color: var(--primary-color);
        }

    .breadcrumb span {
        color: var(--text-light);
    }

.content-section {
    padding: 60px 20px;
}

.section-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.content-box {
    background: var(--bg-mid);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

    .content-box h3 {
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .content-box p {
        color: var(--text-light);
        line-height: 1.8;
        margin-bottom: 15px;
    }

h1 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    letter-spacing: 5px;
}

.section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    /* background: #ffffff; */
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

    .section h2, h3 {
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .section p {
        margin-bottom: 15px;
        text-align: justify;
    }

    /* Image styling */
    .mainImg01Wrapper, .section img {
        display: flex;
        justify-content: center;
        /* margin: 15px 0; */
    }

    .mainImg01, .section img {
        max-width: 100%;
        height: auto;
        /* border-radius: 8px; */
    }

    /* List styling */
    .section ul {
        margin: 15px 0 15px 20px;
        padding: 0;
    }

    .section li {
        margin-bottom: 8px;
    }

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

th {
    background: var(--bg-dark);
    color: #fff;
}

tr:nth-child(even) {
    background: var(--bg-mid);
}

tr:hover {
    background: #00406e;
}

/* Responsive */
@media (max-width: 768px) {

    .section {
        margin: 10px;
        padding: 15px;
    }

    table, th, td {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .section h2 {
        font-size: 20px;
    }

    .section h3 {
        font-size: 18px;
    }

    .section p {
        font-size: 14px;
    }
}