* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

header {
    background: #e6242c;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.contact-info {
    background: white;
    padding: 20px;
    text-align: center;
    margin: 10px;
    border-radius: 5px;
}

.gallery {
    padding: 20px;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 20px;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.offer-image {
    width: 250px;
    height: 250px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s;
}

.offer-image:hover {
    transform: scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover {
    color: #bbb;
}

footer {
    text-align: center;
    padding: 20px;
    background: #e6242c;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}