body {
    font-family: 'Raleway', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}
.header {
    background-image: url('falevel.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px;
    text-align: center;
    color: white;
}
.header h1 {
    font-size: 3em;
}
.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background-color: #4CAF50;
    padding: 16px;
    color: white;
}
.contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255,255,255,0.12);
    font-weight: 600;
    white-space: nowrap;
}
.main-content {
    padding: 20px;
}
.box {
    border-radius: 8px;
    padding: 20px;
    background-color: #4CAF50;
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.order-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.order-info .card {
    background-color: #4CAF50;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}
.contact-form {
    display: flex;
    flex-direction: column;
}
.contact-form input,
.contact-form textarea {
    display: block;
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.contact-form button {
    background-color: white;
    color: #4CAF50;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-start;
}
.contact-form button:hover {
    background-color: #45a049;
    color: white;
}
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-info a {
        justify-content: flex-start;
        width: 100%;
        white-space: normal;
    }
    .header h1 {
        font-size: 2.2em;
    }
}


/* Schedule table */
.schedule { width: 100%; border-collapse: collapse; margin: 10px 0; color: white; }
.schedule td { padding: 4px 8px; vertical-align: top; }
.schedule tr:nth-child(even) td { background-color: rgba(255,255,255,0.08); }

.announcement {
    background-color: #4CAF50;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}
.announcement strong { font-weight: 900; }

.box a { color: white; text-decoration: underline; font-weight: 700; }
.box a:hover { text-decoration: none; }
