* {
    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;
}

.seal {
    background-color: #122348;
    border-radius: 5px;
    width: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    flex-grow: 1;
    animation: fadeIn 1s ease-in forwards 0.5s;
}

.seal_logo {
    width: 150px;
    height: auto;
    margin-right: 60px;
}

.seal h2 {
    font-size: 50px;
    font-family: 'Bree Serif', serif;
    letter-spacing: 5px;
    line-height: 1;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    color: white;
}

.seal_description {
    background-color: rgba(255, 255, 255, 0.6);
    color: #122348;
    border-radius: 5px;
    width: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: justify;
    padding: 20px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    display: inline-block;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in forwards 0.5s;
}

hr {
    border: 0;
    height: 3px;
    background-color: #cda757;
    margin-bottom: 20px;
}

.seal_description h3 {
    font-size: 30px;
    font-weight: bold;
}

/* 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: 25px;
    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);
}

.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;
}

.subcategory-item {
    margin-top: 10px;
}

.subcategory-header {
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #122348;
}

.subcategory-content {
    margin-left: 20px;
    padding-left: 10px;
    border-left: 2px solid #cda757;
}

.subcategory-content a {
    display: block;
    padding: 5px 0;
    font-size: 16px;
    font-weight: normal;
}

.empty-category,
.empty-subcategory {
    font-style: italic;
    color: gray;
    padding-left: 20px;
}

@media screen and (max-width: 1024px) {
    .seal h2 {
        font-size: 2.2rem;
        margin-top: 10px;
    }

    .seal_description h3 {
        font-size: 1.5rem;
    }

    /* Accordion */
    .accordion-header {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .seal {
        display: block;
    }

    .seal_logo {
        width: 90px;
        margin: 0;
    }

    .seal h2 {
        font-size: 1.5rem;
        margin-top: 10px;
    }
}