body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 20px;
}

header img {
    max-width: 100%;
    height: auto;
}

.intro {
    text-align: center;
    padding: 20px;
    font-size: 1.2em;
}

.highlight {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.highlight-item {
    text-align: center;
    max-width: 45%;
}

.highlight-item img {
    width: 100%;
    height: auto;
}

.social-media {
    background-color: #3b5998;
    text-align: center;
    padding: 20px;
}

.social-media-text {
    font-size: 1.2em;
}

.social-media-icons img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

.gallery {
    text-align: center;
    padding: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-grid img.enlarged {
    transform: scale(1.5);
    width: 500px;
    height: 500px;
}

.contact {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.contact-info,
.contact-form {
    max-width: 45%;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #fff;
    background-color: #333;
    color: #fff;
}

.contact-form input[type="submit"] {
    background-color: #3b5998;
    border: none;
    cursor: pointer;
}

.contact-form input[type="submit"]:hover {
    background-color: #fff;
    color: #000;
}

#thankYouMessage {
    text-align: center;
    padding: 20px;
    color: #0f0;
}
