* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Titillium Web', sans-serif;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


body {
    background: url('../../res/img/backgrounds/bg2.png') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-banner {
    margin: 0;
    padding: 0;
    background: url(/res/img/backgrounds/gallerybg.png) no-repeat center center / cover;
    min-height: 50vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: -25px;
    text-align: center;
}

.seal {
    width: 220px;
}

.seal_logo {
    width: 100%;
    height: auto;
    display: block;
}

.main-title {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.main-title h2 {
    font-family: 'Bree Serif', serif;
    font-size: 70px;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    margin: 0;
}

.mv {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    width: 85%;
    margin: auto;
    margin-top: 20px;
    justify-items: center;
    align-items: stretch;
}

.mv .mission {
    background-color: rgba(255, 255, 255, 0.6);
    color: #122348;
    border-radius: 5px;
    text-align: center;
    padding: 20px 30px;
    margin: 0 auto;
    animation: fadeIn 1s ease-in forwards 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.mv h3 {
    font-family: 'Bree Serif', serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.mv hr {
    width: 50%;
    margin-bottom: 15px;
}

.mv p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 768px) {
    .mv {
        grid-template-columns: 1fr;
    }

    .mv .mission {
        width: 100%;
    }
}

hr {
    border: 0;
    height: 3px;
    background-color: #cda757;
    margin-bottom: 20px;
}

.head {
    background-color: rgba(255, 255, 255, 0.6);
    color: #122348;
    border-radius: 5px;
    width: 85%;
    text-align: justify;
    padding: 20px;
    margin: 20px auto;
    animation: fadeSlideIn 1s ease-out forwards;
    animation-delay: 0.5s;
}

.head_grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
    padding: 20px;
}

.head_center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

.description {
    gap: 30px;
    padding: 20px;
}

.head_img {
    width: 100%;
    max-width: 350px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.head_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.head_description {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.head_description-center {
    text-align: center;
}

.head_description h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.head_description h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #233b66;
}

.head_description hr {
    width: 100%;
    margin-bottom: 15px;
}

.head_description p {
    line-height: 1.6;
    font-size: 1rem;
    color: #333;
    text-align: justify;
}

@media (max-width: 768px) {
    .head_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .head_img {
        max-width: 100%;
    }

    .head_description {
        align-items: center;
        text-align: center;
    }
}

/* Accordion */
.accordion {
    width: 85%;
    border-radius: 5px;
    margin: 20px auto;
    animation: fadeIn 1s ease-in forwards 0.5s;
}

.accordion-item {
    border-bottom: 3px solid rgba(205, 168, 87, 0.8);
}

.accordion-header {
    background-color: rgba(255, 255, 255, 0.6);
    color: #122348;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 4px;
}

.accordion-header:hover {
    background-color: #122348;
    color: white;
}

.accordion-header.active {
    background-color: #122348 !important;
    color: white !important;
}

.accordion-header::before {
    content: "+";
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
}

.accordion-header.active::before {
    content: "-";
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
}

.accordion-content {
    display: none;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #122348;
}

.accordion-content a {
    display: block;
    padding: 5px 0;
    color: #122348;
    font-weight: bold;
    text-decoration: none;
    font-size: 20px;
}

.accordion-content a:hover {
    text-decoration: underline;
    color: #cda757;
}

.accordion-content {
    display: none;
    padding: 10px;
}

.accordion-content.active {
    display: block;
}

@media screen and (max-width: 1024px) {
    .main-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .seal {
        display: block;
        width: auto;
    }

    .seal_logo {
        width: 90px;
        margin: 0;
    }

    .seal h2 {
        font-size: 1.5rem;
        margin-top: 10px;
    }

    .seal_description h3 {
        font-size: 1.5rem;
    }

    /* Accordion */
    .accordion-header {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .main-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .seal {
        display: block;
        width: auto;
        margin: 30px;
    }

    .main-title h2 {
        font-size: 1.5rem;
    }

    .seal_logo {
        width: 90px;
        margin: 0;
    }

    .seal h2 {
        font-size: 1.5rem;
        margin-top: 10px;
    }

    .seal_description h3 {
        font-size: 1.5rem;
    }

    /* Accordion */
    .accordion-header {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .main-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .seal {
        display: block;
        width: auto;
        margin: 30px;
    }

    .seal_logo {
        width: 90px;
        margin: 0;
    }

    .seal h2 {
        font-size: 1.5rem;
        margin-top: 10px;
    }

    .seal_description h3 {
        font-size: 1.5rem;
    }

    /* Accordion */
    .accordion-header {
        font-size: 1.5rem;
    }
}
