.service-serving-section {
    padding: 30px 40px;
    background-color: #000000;
    width: 100%;
}

.service-serving-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-serving-header {
    margin-bottom: 50px;
    width: 100%;
}

.service-serving-title {
    font-size: 42px;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    line-height: 1.25;
}

.service-serving-subtitle {
    font-size: 18px;
    font-family: var(--font-body);
    color: #ffffff;
    max-width: 950px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
    opacity: 0.9;
}

.serving-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.serving-tag {
    padding: 12px 35px;
    border: 1.5px solid #ffffff;
    border-radius: 50px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.serving-tag:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.service-serving-footer {
    font-size: 18px;
    font-family: var(--font-body);
    color: #ffffff;
    max-width: 950px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive Styles matching Home Page Standards */
@media (max-width: 1024px) {
    .service-serving-section {
        padding: 60px 40px;
    }

    .service-serving-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .service-serving-section {
        padding: 40px 20px;
    }

    .service-serving-title {
        font-size: 26px !important;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .service-serving-subtitle {
        font-size: 15px !important;
        margin-bottom: 30px;
    }

    .serving-grid {
        gap: 10px;
    }

    .serving-tag {
        padding: 8px 15px;
        font-size: 14px;
        border-width: 1px;
    }

    .service-serving-footer {
        font-size: 15px !important;
    }
}