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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #fffaf3 0%, #faf2e7 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #332928;
}

.container {
    width: 100%;
    max-width: 1440px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 20px;
    position: relative;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0 40px;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    width: 263px;
    height: 120px;
    display: block;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    line-height: 1.6;
    color: #bf2315;
    text-align: center;
    margin-bottom: 40px;
}

.hero-text p {
    margin-bottom: 12px;
}

.hero-text p:last-child {
    margin-bottom: 0;
}

.divider {
    width: 100%;
    max-width: 792px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #bf2315 20%, 
        #bf2315 80%, 
        transparent 100%);
    margin: 30px 0;
}

.tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 30px;
    color: #332928;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 800px;
}

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

.footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
}

.footer-link {
    color: #332928;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #bf2315;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-dot {
    width: 6px;
    height: 6px;
    background-color: #332928;
    border-radius: 50%;
}

/* Tablet Styles */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }

    .header {
        padding: 40px 0 30px;
    }

    .logo-image {
        width: 200px;
        height: 91px;
    }

    .hero-text {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .tagline {
        font-size: 14px;
        line-height: 26px;
    }

    .footer-links {
        font-size: 13px;
        gap: 15px;
    }
}

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

    .header {
        padding: 30px 0 20px;
    }

    .logo-image {
        width: 180px;
        height: 82px;
    }

    .main-content {
        padding: 30px 15px;
    }

    .hero-text {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .hero-text p {
        margin-bottom: 10px;
    }

    .divider {
        margin: 20px 0;
    }

    .tagline {
        font-size: 12px;
        line-height: 22px;
        letter-spacing: 0.3px;
    }

    .footer {
        padding: 30px 15px 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
        font-size: 12px;
        line-height: 24px;
    }

    .footer-dot {
        display: none;
    }

    .footer-link {
        padding: 5px 0;
    }
}

/* Small Mobile Styles */
@media (max-width: 375px) {
    .logo-image {
        width: 160px;
        height: 73px;
    }

    .hero-text {
        font-size: 16px;
    }

    .tagline {
        font-size: 11px;
        line-height: 20px;
    }
}

/* Animation for smooth loading */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeIn 0.8s ease-out;
}

.hero-text {
    animation: fadeIn 1s ease-out 0.2s both;
}

.tagline {
    animation: fadeIn 1s ease-out 0.4s both;
}

.footer-links {
    animation: fadeIn 1s ease-out 0.6s both;
}