.catering-wrapper {
    width: 90%;
    max-width: 700px;
    margin: auto;
}


/* Description Section */

.catering-about {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    margin-top: 40px;
}

.catering-about h1 {
    font-size: 32px;
    color: #0f172a;
    margin-bottom: 15px;
}

.catering-about p {
    color: #475569;
    line-height: 1.7;
    font-size: 16px;
}


/* Form Section */

.catering-form-section {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.catering-form-section h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #0f172a;
}

.catering-form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #0f172a;
}

input,
textarea {
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 15px;
    width: 95%;
}

textarea {
    height: 120px;
    resize: none;
}

button {
    background: #0f172a;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #1e293b;
}


/* Responsive */

@media (max-width: 600px) {
    .catering-about,
    .catering-form-section {
        padding: 20px;
    }
}
