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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.logo {
    margin-bottom: 40px;
}

.logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

h1 {
    font-size: 3rem;
    font-weight: 300;
    color: #BE1E2D;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 40px;
    font-weight: 300;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background-color: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 40px;
}

.progress-fill {
    width: 60%;
    height: 100%;
    background-color: #BE1E2D;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

.description {
    font-size: 1rem;
    color: #666666;
    font-weight: 300;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .logo img {
        max-width: 200px;
    }
}
