body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    background: #2c7be5;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

nav {
    background: #1f5fbf;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0.75rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

section {
    padding: 2rem;
    max-width: 900px;
    margin: auto;
    background: white;
    margin-top: 1rem;
    border-radius: 6px;
}

h2 {
    color: #2c7be5;
}

.event, .news {
    border-left: 4px solid #2c7be5;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: white;
    margin-top: 2rem;
}

input, textarea, button {
    width: 100%;
    padding: 0.6rem;
    margin-top: 0.5rem;
}

button {
    background: #2c7be5;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background: #1f5fbf;
}

iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.social-links {
    margin-top: 0.75rem;
}

.social-links a {
    display: inline-block;
    background: #1877f2; /* Facebook blue */
    color: white;
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background 0.2s ease;
}

.social-links a:hover {
    background: #145dbf;
}