/* General Reset */
body, h1, h2, h3, h4, h5, h6, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
    text-align: center;
    font-size: 14px;
}

/* Header */
header {
    background: #00539c;
    color: white;
    padding: 20px;
    text-align: center;
}



/* Navigation Menu */
nav {
    background: #003366;
    padding: 10px;
    text-align: center;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Content Layout */
.content-container {
    width: 80%;
    margin: auto;
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    margin-top: 20px;
}

h2, h3 {
    color: #00539c;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

/* Image Gallery */
.gallery-preview img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-top: 15px;
    border-radius: 5px;
}

/* Contact Section */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00539c;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #003366;
}

.telephone {
    font-size: 22px;
    font-weight: bold;
    color: #00539c;
}

/* Social Share */
.social-share {
    margin-top: 20px;
}

/* Footer */
footer {
    background: #003366;
    color: white;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-container {
        width: 95%;
        padding: 15px;
    }
    .telephone {
        font-size: 18px;
    }
}