.botones-page-content {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.botones-header {
    text-align: center;
    width: 100%;
}

.botones-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
}

.button-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 80%;
    max-width: 700px;
    margin: 0 auto;
}

.large-outline-button {
    background-color: #9c203d;
    border: 3px solid #5f1224;
    color: #ebebeb;
    opacity: 0.9;

    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem; 
    font-weight: 600;
    padding: 25px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.4;
}

.large-outline-button:hover {
    background-color: #ca2b50;
    border-color: #cb2b50;
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .button-grid {
        gap: 15px;
    }
    .large-outline-button {
        font-size: 1.1rem;
        padding: 20px 15px;
    }
}