.big-button-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 2rem auto;
    max-width: 1200px;
    width: 100%;
}

.big-button {
    flex: 1;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: white;
    max-width: 500px;
    color: inherit;
}

.big-button:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.image-container {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.big-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.big-button:hover img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.big-button:hover .image-overlay {
    opacity: 0.9;
}

.big-button-title {
    padding: 25px 20px;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.big-button:hover .big-button-title {
    color: var(--red-dark);
}

.big-button-title:after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-red);
    transition: width 0.4s ease;
}

.big-button:hover .big-button-title:after {
    width: 100px;
}

.button-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: #7f8c8d;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .big-button-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .image-container {
        height: 250px;
    }
    
    .big-button-title {
        font-size: 1.8rem;
        padding: 20px 15px;
    }
    
    .big-button {
        max-width: 400px;
    }
}