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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #1a1a1a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #fff;
}

.container {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.logo-container {
    margin-bottom: 40px;
    color: #fff;
}

.logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.logo g:not(:last-child) {
    fill: #fff;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

.description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

.cta-button {
    display: inline-block;
    background: #e35f3f;
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 4px 15px rgba(227, 95, 63, 0.4);
    margin-top: 10px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 95, 63, 0.5);
    background: #f06b4a;
}

.cta-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .container {
        padding: 40px 30px;
    }

    .heading {
        font-size: 1.8rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .logo {
        max-width: 150px;
    }
}