.choice-page {
    display: flex;
    justify-content: center;
}

.choice-background {
    position:fixed;
    height: 100vh;
    width: 100vw;
    z-index: -1;
}

.choice {
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choice-container {
    max-width: 1000px;
    text-align: center;
}

.choice h2 {
    font-family: 'Chivo', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.choice-options {
    display: grid;
    grid-template-columns: 1fr 1fr;  /* Fixed 2-column layout */
    gap: 40px;
    margin-bottom: 40px;

}

.choice-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.choice-card-blocked {
    background: rgb(194, 194, 194);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: not-allowed;
}

.choice-card-blocked button {
    cursor: not-allowed;
}

.choice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.choice-card h3,
.choice-card-blocked h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #3246c6;
}

.choice-card p,
.choice-card-blocked p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.coaching-info {
    display: none;
    background: white;
    padding: 40px 80px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    text-align: left;
}

.coaching-info.show {
    display: block;
}

.coaching-info h3 {
    color: #3246c6;
    font-size: 1.8rem;
}

.coaching-info ul {
    list-style: none;
    padding-left: 0;
}

.coaching-info li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.coaching-info li:before {
    content: "✓";
    color: #667eea;
    font-weight: bold;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .choice {
        padding-top: 8vh;
        gap: 30px;
        width: 100%;
    }

    .choice-container {
        width: 100%;
    }

    .choice-background {
        width: 300vw;
        height: 120vh;
        text-align: center;

    }

    .choice-card {
        padding: 40px 10px;
    }

    .choice-page .text h1 {
        font-size: 2.5rem;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        margin-bottom: -5px;
    }

    .choice h1 {
        font-size: 2.5rem;
    }

    .choice p {
        font-size: 1rem;
    }

    iframe {
        width: calc(100vw - 40px);
        height: calc((100vw - 40px) * 9 / 16);
    }
}

@media (max-width: 420px) {
    .choice .text {
        margin-bottom: 5vh;
    }
}


