/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Accessibility improvements */
.skip-link {
    position: absolute;
    top: -9999px;
    left: -9999px;
    background: black;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.skip-link:focus {
    top: 6px;
    left: 6px;
    opacity: 1;
    visibility: visible;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: whitesmoke;
    color: black;
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Main container */
.container {
    text-align: center;
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    width: 100%;
    overflow: visible;
}

/* Logo section */
.logo-section {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    width: 100%;
    overflow: visible;
}

.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.company-name {
    font-size: 1.2rem;
    font-weight: 300;
    color: black;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: visible;
    padding: 0 0.5rem;
    max-width: 100%;
}

/* Social media section */
.social-media {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    color: black;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.social-link:hover {
    background-color: black;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.social-link i {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 0.5rem 1rem;
    text-align: center;
    width: 100%;
    border-top: 3px solid black;
    flex-shrink: 0;
}

.footer p {
    color: black;
    font-size: 0.85rem;
    margin-bottom: 0;
    font-weight: 400;
}

.footer-link {
    color: black;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #333;
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 1200px) {
    .company-name {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0.8rem;
    }

    .logo-section {
        margin-bottom: 1rem;
    }

    .company-name {
        font-size: 1rem;
        white-space: normal;
    }

    .logo {
        max-width: 200px;
        margin-bottom: 0.8rem;
    }

    .social-media {
        gap: 0.6rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }

    .logo-section {
        margin-bottom: 0.8rem;
    }

    .company-name {
        font-size: 0.8rem;
        letter-spacing: 1px;
        white-space: normal;
        padding: 0 0.3rem;
        overflow: visible;
    }

    .logo {
        max-width: 180px;
        margin-bottom: 0.6rem;
    }

    .social-media {
        gap: 0.5rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .social-link i {
        font-size: 0.9rem;
    }

    .footer {
        padding: 0.4rem 0.5rem;
    }

    .footer p {
        font-size: 0.75rem;
    }
}