:root {
    --hunter-blue: #004f9f;
    --hunter-yellow: #ffcd1c;
    --hunter-white: #ffffff;
    --text-light: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--hunter-blue) 0%, #002b5e 100%);
    color: var(--hunter-white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 50px;
    border-radius: 20px;
    max-width: 650px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.8s ease-out;
}

.logo-container {
    margin-bottom: 20px;
    animation: pulse 3s infinite;
}

.logo-container img {
    max-width: 180px;
    height: auto;
    margin: 0 auto;
    display: block;
}

h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p.subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-info a {
    color: var(--hunter-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--hunter-white);
}

.contact-info i {
    color: var(--hunter-yellow);
    width: 25px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--hunter-yellow);
    color: var(--hunter-blue);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    transform: scale(1.1);
    background-color: var(--hunter-white);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    p.subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .logo-container img {
        max-width: 150px;
    }

    .contact-info {
        font-size: 0.85rem;
        gap: 10px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}