.pizzeria-contact-section {
    font-family: inherit;
    padding: 60px 20px;
    border-radius: 20px;
    text-align: center;
}

.pz-header {
    margin-bottom: 50px;
}

.pz-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.pz-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.pz-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

.pz-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pz-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pz-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.pz-icon-wrapper i {
    font-size: 35px;
    color: #ffffff;
}

.pz-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.pz-bold-text {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.pz-desc-text {
    font-size: 0.95rem;
    opacity: 0.7;
    margin: 0;
}

.pz-buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.pz-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.pz-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.pz-banner {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    border-top: 5px solid;
}

.pz-banner-icon {
    font-size: 50px;
}

.pz-banner-content h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.pz-banner-content p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .pizzeria-contact-section {
        padding: 50px 15px;
    }
    
    .pz-header h2 {
        font-size: 2.2rem;
    }
    
    .pz-cards-container {
        gap: 20px;
    }
    
    .pz-card {
        flex: 1 1 calc(50% - 20px);
        max-width: none;
        padding: 30px 20px;
    }
    
    .pz-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 15px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .pizzeria-contact-section {
        padding: 40px 10px;
    }

    .pz-header {
        margin-bottom: 30px;
    }

    .pz-header h2 {
        font-size: 1.8rem;
    }

    .pz-header p {
        font-size: 1rem;
    }

    .pz-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .pz-card {
        width: 100%;
        max-width: 100%;
        padding: 25px 15px;
    }

    .pz-buttons-container {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
        width: 100%;
        align-items: center;
    }

    .pz-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        font-size: 1rem;
        padding: 12px 20px;
    }

    .pz-banner-icon {
        font-size: 40px;
    }

    .pz-banner-content h4 {
        font-size: 1.2rem;
    }

    .pz-banner-content p {
        font-size: 0.95rem;
    }
}