:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --bg-color: #ecf0f1;
    --text-color: #34495e;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

header {
    padding: 2rem 0;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    animation: fadeIn 1.5s ease-out;
    width: 100%;
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.text-content {
    flex: 1;
    text-align: left;
}

.hero-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.text-content h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.status {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
}

.status::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

footer {
    padding: 2rem 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .image-container {
        justify-content: center;
    }

    .text-content {
        text-align: center;
    }

    .logo {
        font-size: 2rem;
    }

    .status {
        font-size: 2rem;
    }

    .text-content h2 {
        font-size: 1.5rem;
    }
}