body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f6f8;
    color: #333;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.circle-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff; 
}

.main-nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
}

.btn-nav {
    background: #6c63ff;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 5px;
}

/* Hero */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: #eef0ff;
}

.hero h1 {
    margin-bottom: 10px;
}

.btn-primary {
    display: inline-block;
    margin-top: 20px;
    background: #6c63ff;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
}

/* Content */
.content {
    padding: 40px;
}

.content-block {
    margin-bottom: 40px;
}

.split {
    display: flex;
    gap: 40px;
}

.event-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Footer */
.site-footer {
    background: #fff;
    padding: 40px;
    border-top: 1px solid #ddd;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer li {
    margin-bottom: 6px;
}

.footer-note {
    margin-top: 20px;
    font-size: 0.9em;
    color: #666;
}
