* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Times New Roman", serif;
    font-size: clamp(16px, 1.8vw, 18px);
    color: #000;
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2% 5%;
    border-bottom: 1px solid #ddd;
    background: white;
}

.logo {
    height: 8vh;
    max-height: 60px;
    width: auto;
}

/* NAVIGATION */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5vw;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: clamp(15px, 1.5vw, 18px);
    padding: 0.4vw 1vw;
}

.nav-links a:hover {
    background: #f2f2f2;
}

/* TITLE */
.logo-section {
    margin: 7vh auto 4vh auto;
    text-align: center;
    width: 90%;
}

.mak {
    font-size: clamp(28px, 4.8vw, 42px);
    font-weight: bold;
    text-decoration: none;
    color: black;
    line-height: 1.3;
}

.mak:hover {
    color: crimson;
}

/* TWO COLUMNS */

.gri2{
    text-align: justify;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1;
    color: #636363;
    padding: 1px 10%;
    font-size: 30px;
    margin: 0 -45px;
}
.gri{
    text-align: justify;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1;
    color: #636363;
    padding: 1px 10%;
    font-size: 20px;
    margin: 0 -45px;
}

.text-section {
    display: flex;
    width: 90%;
    margin: 5vh auto;
    gap: 5%;
}

.column, .column2 {
    flex: 1;
    text-align: justify;
    font-size: clamp(16px, 1.6vw, 18px);
}

.column {
    color: #5a3eae;
}

.column2 {
    color: #2c5b72;
}

/* ORGANIZATION STRUCTURE */
.org-structure {
    width: 90%;
    max-width: 1200px;
    margin: 5vh auto;
    padding: 0 2%;
}

.org-section {
    margin-bottom: 4rem;
    text-align: center;
}

.org-title {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: bold;
    color: #000;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
}

.org-content {
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.7;
}

.org-content p {
    margin-bottom: 1.2rem;
}

/* COPYRIGHT */
.cop {
    text-align: center;
    margin: 8vh 0 5vh 0;
    font-size: clamp(12px, 1.2vw, 14px);
}

/* MOBILE */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 2vh;
        text-align: center;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4vw;
    }

    .text-section {
        flex-direction: column;
    }

    .column, .column2 {
        margin-bottom: 2vh;
    }

    .mak {
        font-size: clamp(26px, 7vw, 36px);
    }
    
    .org-structure {
        width: 95%;
        padding: 0;
    }
    
    .org-content {
        text-align: left;
    }
}

.mak2 {
    font-size: clamp(16px, 1.6vw, 18px);
    font-weight: bold;
    text-decoration: none;
    color: #4f4f4e;
    line-height: 1.3;
}

.mak2:hover {
    color: crimson;
}