/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

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

header h1 {
    font-size: 2.5em;
    margin: 0;
}

header p {
    font-size: 1.2em;
    margin: 5px 0 0;
}

nav {
    background: #34495e;
    padding: 10px 0;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

nav a:hover {
    text-decoration: underline;
    color: #1abc9c;
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

.contact-info h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1.2em;
    color: #555;
}

.contact-info a {
    color: #1abc9c;
    text-decoration: none;
}

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

.social-media {
    text-align: center;
    margin-top: 20px;
}

.social-media h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.social-media p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

.social-media a {
    text-decoration: none;
    color: #1abc9c;
    font-size: 1.2em;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.social-media a:hover {
    text-decoration: underline;
}

.facebook-logo {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    font-size: 14px;
}

footer a {
    color: #1abc9c;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
