* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f8f8f8;
    color: #333;
}

.main-header {
    background: #7b2d26;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
}

.nav a:hover {
    text-decoration: underline;
}

section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

.hero {
    background: white;
    padding: 60px;
    border-radius: 10px;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    color: #7b2d26;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
}

/* MENU */
.menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.item h3 {
    color: #7b2d26;
    margin-bottom: 10px;
}

.item p {
    margin-bottom: 8px;
}

form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    background: #7b2d26;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

form button:hover {
    background: #5a201b;
}

.about, .contact {
    background: white;
    padding: 40px;
    border-radius: 10px;
}

.about h2, .contact h2 {
    color: #7b2d26;
    margin-bottom: 15px;
}

.contact-box {
    margin-top: 20px;
    padding: 20px;
    background: #f2f2f2;
    border-left: 5px solid #7b2d26;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

table th, table td {
    padding: 12px;
    border: 1px solid #ddd;
}

table th {
    background: #7b2d26;
    color: white;
}

footer {
    text-align: center;
    background: #7b2d26;
    color: white;
    padding: 15px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        margin-top: 10px;
    }

    .nav a {
        display: inline-block;
        margin: 10px;
    }
}
