
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Poppins, sans-serif;
    background: #f3f4f6;
    color: #111827;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    width: 100%;
    background: #ffffff;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.logo {
    font-family: "Katibeh", serif;
    font-size: 56px;
    color: #111827;
}


nav a {
    margin-left: 25px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    color: #111827;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F7DF1E;
    transition: width 0.25s ease;
}

nav a:hover::after {
    width: 100%;
}


.container {
    width: 80%;
    max-width: 1100px;
    margin: 50px auto;
}

.page-title {
    font-size: 30px;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}


.criteria-item {
    margin-bottom: 35px;
    padding: 25px;
    border-left: 6px solid #f7df1e;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.criteria-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.criteria-item .description {
    font-size: 16px;
    color: #444;
}


footer {
    margin-top: auto;
    background: #e5e7eb;
    padding: 20px 60px;
    font-size: 18px;
    font-style: italic;
    color: #4b5563;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .right {
    font-weight: 600;
}
@media (max-width: 900px) {

    .container {
        width: 90%;
    }

    .page-title {
        font-size: 22px;
    }

    .criteria-item {
        padding: 18px;
    }

    .criteria-item h3 {
        font-size: 18px;
    }

    .criteria-item .description {
        font-size: 14px;
    }
}
/* ===== GLOBAL RESPONSIVE ===== */

@media (max-width: 900px) {

    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
        gap: 10px;
    }

    .logo {
        font-size: 38px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    nav a {
        margin: 0;
        font-size: 16px;
    }

    footer {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 15px 20px;
        font-size: 14px;
        height: auto;
    }
}