:root {
    --primary-green: #2d6a4f;
    --secondary-green: #40916c;
    --accent-gold: #d4a373;
    --light-bg: #f8f9fa;
    --text-dark: #1b4332;
    --text-light: #52b788;
    --white: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.container {
    max-width: 900px;
    width: 100%;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
}

header {
    margin-bottom: 2rem;
    text-align: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .content-wrapper {
        flex-direction: row;
        text-align: left;
    }

    .text-content {
        flex: 1;
        padding-left: 2rem;
    }

    .illustration-container {
        flex: 1;
        display: flex;
        justify-content: center;
    }
}

.illustration {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
    animation: float 6s ease-in-out infinite;
}

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

@media (min-width: 768px) {
    .text-content {
        text-align: left;
    }
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}

.status-message {
    font-weight: 600;
    color: var(--secondary-green);
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 6px rgba(45, 106, 79, 0.2);
}

.cta-button:hover {
    background-color: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(45, 106, 79, 0.3);
}

footer {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}