/* General Reset */
body, h1, h2, p, form, label, input, select, textarea, button {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    background-color: #ff6f61;
    color: #fff;
    text-align: center;
    padding: 20px;
}

main {
    flex: 1;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 100px;
}

.intro, .services, .testimonials, .contact {
    margin-bottom: 30px;
}

.intro-image {
    width: 100%;
    border-radius: 8px;
    margin: 10px 0;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service img {
    width: 100%;
    border-radius: 8px;
}

.service h3 {
    margin-top: 10px;
    font-size: 1.2em;
}

blockquote {
    background-color: #fff;
    border-left: 4px solid #ff6f61;
    padding: 10px 20px;
    margin: 10px 0;
    font-style: italic;
}

.contact form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

input, select, textarea, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #ff6f61;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 5px 10px;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.5s;
    width: 200px; /* Set width to auto */
    display: block; /* Ensure the button is a block element */
    margin: 0 auto; /* Center the button */
}

button:hover {
    background-color: #6c5ce7;
}

.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}
/* End of catering-services.css */