/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    text-align: center;
    background: #4267B2;
    color: #fff;
    padding: 2rem;
}

header h1 {
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
}

.button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: #fff;
    color: #4267B2;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.button:hover {
    background: #f1f1f1;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 2rem;
    margin: 1rem auto;
    max-width: 800px;
}

#facebook-feed {
    text-align: center;
}

#about {
    background: #f9f9f9;
    border-radius: 8px;
}

#contact form {
    display: flex;
    flex-direction: column;
}

#contact label {
    margin-top: 0.5rem;
}

#contact input, #contact textarea, #contact button {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#contact button {
    background: #4267B2;
    color: #fff;
    cursor: pointer;
    margin-top: 1rem;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #ddd;
}

#form-message {
    margin-top: 1rem;
    font-weight: bold;
}
