/* English Version Specific Styles */

/* Buttons Section - 3 buttons layout */
.buttons-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 2rem;
    max-width: 600px;
    width: 100%;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.9s both;
}

/* First two buttons - top row */
.buttons-section a:nth-child(1),
.buttons-section a:nth-child(2) {
    grid-column: span 1;
}

/* Third button - centered below */
.buttons-section a:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .buttons-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .buttons-section a:nth-child(3) {
        grid-column: 1;
        max-width: 100%;
    }
}
