.restaurant-visit-cta {
    width: 100%;
    height: 500px; 
    position: relative;
    background-image: url('../img/cta.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    border-radius: 0px !important;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
 
    padding: 20px;
}

.restaurant-visit-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius:0px;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1;
}

.cta-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-logo {
    margin-bottom: 30px;
}

.cta-logo img {
    max-width: 150px;
    height: auto;
}

.cta-content {
    width: 100%;
    max-width: 800px;
}

.cta-heading {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: white;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .restaurant-visit-cta {
        height: 400px;
    }
    
    .cta-heading {
        font-size: 24px;
    }
    
    .cta-text {
        font-size: 18px;
    }
    
    .cta-logo img {
        max-width: 120px;
    }
}