:root {
    --primary-color: #102F60;
    --background-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--background-color);
    color: var(--primary-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.maintenance {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 1440px;
    width: 100%;
    text-align: center;
    padding: 40px 20px;
}

.logo {
    margin-bottom: 66px;
}

.logo svg {
    width: 100%;
    max-width: 124px;
    height: auto;
}

h1 {
    font-size: 44px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 80px;
}

.description {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    max-width: 660px;
    margin: 0 auto 20px;
}

.contact-info {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 20px;
}

.contact-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 52px;
    margin-bottom: 30px;
}

.contact-links a {
    color: var(--primary-color);
    text-decoration: underline;
    font-size: 16px;
    font-weight: 600;
}

.thank-you {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 49px;
}

.social-links {
    margin-bottom: 30px;
}

.social-links a {
    display: inline-block;
}

footer {
    text-align: center;
}

footer nav {
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 66px;
}

footer nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 180%;
    letter-spacing: 2%;
    margin: 0 10px;
}

.copyright {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 180%;
    letter-spacing: 2%;
}

/* Legal pages styles */
.legal-content {
    max-width: 660px;
    margin: 0 auto;
    text-align: left;
    padding: 20px;
}

.legal-content h2 {
    font-size: 30px;
    font-weight: 400;
    margin: 30px 0 24px;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 400;
    margin: 24px 0 16px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content ul {
    list-style-position: inside;
    margin-bottom: 24px;
    padding-left: 16px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 4px;
    list-style: none;
}

/* Tablet */
@media (max-width: 834px) {
    h1 {
        font-size: 38px;
    }
    .contact-links {
        display: block;
    }
    .contact-links a {
        margin-bottom: 20px;
        display: block;
    }
}

/* Mobile */
@media (max-width: 393px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 30px;
    }

    .logo svg {
        max-width: 100px;
    }

    .legal-content {
        padding: 10px;
    }

    .legal-content h2 {
        font-size: 20px;
    }
} 