/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Section Styles */
section {
    margin-bottom: 40px;
}

h2 {
    font-size: 24px;
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    color: #555;
}

/* Image Styles */
.image-container {
    text-align: center;
    margin-bottom: 30px;
}

.image-container img {
    width: auto;
    height: 300px;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* Contact Info Styles */
.contact-info {
    text-align: center;
    margin-top: 20px;
}

.contact-info a {
    color: #333;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}
