/* ropa-sans-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Ropa Sans';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/ropa-sans-v15-latin-regular.woff2') format('woff2'),
         url('./fonts/ropa-sans-v15-latin-regular.ttf') format('truetype');
}

body {
    font-family: 'Ropa Sans', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #061a54;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-opacity: 0.5;
}

.background, .background.next {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
}

.background {
    opacity: 0.5;
}

.background.next {
    opacity: 0.0;
}

header {
    width: 100%;
    background-color: #061a54;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
}

.logo {
    height: 50px;
}

.right-section {
    display: flex;
    align-items: left;
}

.language {
    position: relative;
}

.language-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0;
    left: auto;
    text-align: left;
}

.language-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.language-content a:hover {
    background-color: #ddd;
}

.language:hover .language-content {
    display: block;
}

.world-icon {
    height: 50px;
    margin-right: 25px;
}

.menu-icon {
    width: 50px;
    height: 50px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0;
    left: auto;
    text-align: left;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.hero-section {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ddd;
    padding: 40px 0;
    position: relative;
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    animation: zoomIn 4s ease-in-out;
}

.hero-slogan {
    position: absolute;
    bottom: 20px;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
}

.hero-slogan h2 {
    margin: 0;
    font-size: 2rem;
}

.privacy-policy-container {
    width: 90%;
    height: 600px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 25px;
    background-color: #f9f9f9;
    margin: 0 auto;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

main {
    width: 100%;
    max-width: 800px;
    margin: 40px 0;
    padding: 0 10px;
}

section {
    margin-bottom: 60px;
    padding: 60px 20px;
    margin: 20px auto;
    background-color: #ddd;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.5s ease-out forwards;
}

section h2 {
    font-size: 2em;
    color: #2653b8;
    margin-bottom: 20px;
}

section p {
    font-size: 1.2em;
    color: #555;
}

h2 {
    font-family: 'Ropa Sans', sans-serif;
    color: #061a54;
    font-size: 24px;
    margin-bottom: 20px;
    padding: 0 10px;
}

p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 20px;
    padding: 0 20px;
}

footer {
    margin-top: auto;
    color: white;
}

footer p {
    color: white;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

details summary {
    background-color: transparent;
    font-family: 'Ropa Sans', sans-serif;
    color: #061a54;
    font-size: 24px;
    margin-bottom: 20px;
    padding: 0 10px;
    cursor: pointer;
    outline: none;
}

details[open] summary {
    font-weight: bold;
}

/* Mobile Friendly Styles */
@media (max-width: 768px) {
    .dropdown-content {
        right: 0;
        left: auto;
    }

    main {
        padding: 0 20px;
    }

    .hero-section {
        flex-direction: column;
        width: 100%;
        padding: 50px 0;
    }

    .hero-image {
        width: 90%;
    }

    .hero-slogan {
        position: static;
        margin-top: 0px;
        width: 100%;
        max-width: none;
    }

    .hero-slogan h2 {
        font-size: 1.3rem;
    }
}
