body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.container {
    width: 80%;
    margin: auto;
    background-color: white;
    padding: 20px;
}
.header {
    background-color: #c60b1c;
    color: white;
    text-align: center;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.header img {
    height: 100px;
    transition: opacity 0.3s ease;
}
.header h1 {
    margin: 0;
    transition: opacity 0.3s ease;
}
.header:hover img, .header:hover h1 {
    opacity: 0.5;
}
.title {
    color: #d00103;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
}
.images {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 30px;
    color: white;
    text-align: center;
}
.section-title {
    color: #d00103;
    font-size: 25px;
    font-weight: bold;
    margin: 20px 0;
    margin-left: 40px;
}
p {
    font-size: 16px;
    line-height: 1.6;
}
.qr-container {
    text-align: center;
    margin: 20px 0;
}
.qr-container img {
    width: 150px;
    height: auto;
}
.contact-info {
    margin-top: 20px;
    font-size: 16px;
}
.footer {
    background-color: #c60b1c;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-top: 20px;
}
.menu {
    background-color: #c60b1c;
    display: flex;
    justify-content: center;
    padding: 7px;
    margin-bottom: 20px;
}
.menu li {
    list-style: none;
    margin: 0 1px;
}
.menu li a {
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
}
.menu li a:hover {
    background-color: #dc6969;
    color: #571d1d;
    border-radius: 4px;
}