/* General Styles */
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

body {
    background-color: #f4f4f4;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #16335B;
    color: white;
    transition: all 0.3s;
    z-index: 1000;
}

.navbar.shrink {
    padding: 10px;
    background-color: #0f1c42;
}

.logo img {
    height: 40px;
    width: auto;
    padding-left: 20px;
}

.nav-links {
    display: flex;
    gap: 20px;
    padding-right: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Banner Styles */
.banner {
    width: 100%;
    text-align: center;
    margin-top: 80px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.banner img {
    width: 100%;
    height: auto;
}

.banner.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Content Styles */
.content {
    flex: 1;
    padding: 20px;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.document-style {
    width: 90%;
    max-width: 800px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    margin: 20px;
}

.document-style p {
    margin-bottom: 20px;
}

/* Footer Styles */
.footer {
    width: 100%;
    background-color: #16335B;
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    bottom: 0;
}

/* Privacy Styles */
.privacy-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.privacy-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background-color: #16335B;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    border-radius: 10px;
    transition: background 0.3s ease;
    margin: 10px;
}

.privacy-button img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.privacy-button:hover {
    background-color: #0f1c42;
}

/* Contact Styles */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: #16335B;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
    text-align: left;
}

.contact-item img {
    width: 30px;
    height: 30px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        margin-top: 10px;
        padding: 0;
    }

    .nav-links a {
        margin: 5px 0;
    }

    .logo {
        margin-left: 20px;
    }

    .privacy-button {
        width: 100%;
        max-width: 300px;
        height: auto;
        padding: 20px;
        justify-content: flex-start;
        text-align: left;
    }

    .privacy-button img {
        margin-right: 10px;
    }
}