/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Font Style */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f5f5f5;
}

/* Header and Navigation */
header {
    background-color: #000;
    color: white;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo a {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

header ul {
    display: flex;
    list-style: none;
}

header ul li {
    margin: 0 15px;
}

header ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    transition: background 0.3s ease;
}

header ul li a:hover {
    background-color: #f7a800;
    border-radius: 4px;
}

/* Hero Section */
#hero {
    background: url('your-image-path.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

#hero .hero-content {
    max-width: 800px;
}

#hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

#hero p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-button {
    background-color: #f7a800;
    color: white;
    padding: 14px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e69300;
}

/* Section Styles */
section {
    padding: 60px 20px;
    background-color: white;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.event, .participate-item {
    margin-bottom: 30px;
}

#participate .participate-item {
    display: inline-block;
    width: 30%;
    margin: 15px;
}

form input, form textarea {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #f7a800;
    color: white;
    padding: 14px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: 18px;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}
