.find-impossible-container {
    padding: 180px 2rem 2rem;
    min-height: 100vh;
}

.hero-section {
    height: 10vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: transparent;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.hero-section .subtitle {
    font-size: 2.0rem;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.content-section {
    padding: 4rem 2rem;
    text-align: center;
    background: transparent;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.content-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.action-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--color-text);
    text-decoration: none;
    border: 2px solid var(--color-text);
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--color-text);
    color: var(--color-bg);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .content-section {
        padding: 2rem 1rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .content-section p {
        font-size: 1rem;
    }

    .action-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
} 