body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    text-align: center;
    color: white;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Creates 4 equal columns */
    gap: 0; /* Removes the space between grid items */
    justify-items: center; /* Centers each link within its grid cell */
    background-color: #f8f8f8;
    padding: 10px;
    border-radius: 5px;
}

nav a {
    text-align: center;
    padding: 10px;
    text-decoration: none;
    color: blue; /* Link color */
    font-weight: bold;
    border: 1px solid transparent;
    transition: background-color 0.3s, border 0.3s;
    width: 100%; /* Ensures the link takes up the full width of its cell */
    box-sizing: border-box; /* Ensures padding and borders don't affect width */
}

nav a:hover {
    background-color: #e0e0e0;
    border: 1px solid blue;
}

@media (max-width: 768px) {
    nav {
        grid-template-columns: repeat(2, 1fr); /* On smaller screens, create 2 columns */
    }
}

@media (max-width: 480px) {
    nav {
        grid-template-columns: 1fr; /* On very small screens, stack the links in a single column */
    }
}



.container {
    width: 70%;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h2 {
    margin-top: 40px;
    font-size: 2em;
    border-bottom: 2px solid #007BFF;
    padding-bottom: 10px;
    text-align: left;
    color: #007BFF;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    text-align: left;
    color: #555;
}

.gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

figure {
    margin: 10px;
    text-align: center;
    flex: 1 1 300px;
    max-width: 300px;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
}

.gallery img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    border-bottom: 2px solid #007BFF;
}

.gallery img:hover {
    transform: scale(1.05);
}

figcaption {
    padding: 10px;
    font-size: 1em;
    color: #333;
}

footer {
    background-color: #f4f4f4;
    padding: 10px;
    text-align: center;
    color: #333;
    margin-top: 20px;
    border-top: 2px solid #007BFF;
}

.contact-button-container {
    text-align: center;
    margin: 40px 0;
}

.contact-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.7em;
    color: #fff;
    background-color: #007BFF;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #0056b3;
}

ul {
    list-style-type: disc; /* Default bullet point style */
    padding-left: 20px; /* Indentation for bullet points */
    margin-top: 20px;
}

li {
    margin-bottom: 10px; /* Space between each bullet point */
    font-size: 1.1em; /* Slightly larger font */
}

