.big-button-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
    padding: 1rem;
    margin-top: 100px;
}

.big-button-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.big-button-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.button-image {
    width: 100%;
    overflow: hidden;
}

.button-image a {
    display: block;
    width: 100%;
}

.button-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.big-button-wrapper:hover .button-image img {
    transform: scale(1.05);
}

.button-content {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.big-button-title,
.button-subtitle {
    display: block;
}

.big-button-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--red-dark);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
    display: block;
}

.button-subtitle {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
    line-height: 1.5;
    margin-top: 0.25rem;
    text-decoration: none;
}

.button-content a {
    text-decoration: none;
    color: inherit;
}

/* Remove extra margins from the links inside button-content */
.button-content > a {
    display: block;
    margin: 0.25rem 0;
}





/* Responsive adjustments */
@media (max-width: 768px) {
    .big-button-container {
        gap: 1.5rem;
    }
    
    .big-button-wrapper {
        min-width: 100%;
    }
    
    .button-image img {
        height: 200px;
    }
    
    .button-content {
        padding: 1.25rem;
    }
    
    .big-button-title a {
        font-size: 1.6rem;
    }
}