* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.site-title {
    text-align: center;
    padding: 30px 20px;
    background-color: #eb008b;
}

.site-title h1 {
    font-size: 2.5em;
    color: #f8f8f8;
    margin-bottom: 10px;
}

.site-title p {
    font-size: 1.2em;
    color: #666;
    font-style: italic;
}

nav {
    background-color: #eb008b;
    border-top: 3px solid #f8f8f8;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
}

nav li {
    margin: 5px 15px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 12px;
    display: block;
    transition: color 0.3s;
}

nav a:hover {
    color: #eb008b;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content h2 {
    font-size: 2em;
    color: #eb008b;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eb008b;
}

.content p {
    margin-bottom: 20px;
    text-align: justify;
}

.content strong {
    color: #eb008b;
}

.highlight-box {
    background-color: #fff0f5;
    border-left: 4px solid #eb008b;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

.event-date {
    text-align: center;
    font-size: 1.5em;
    color: #eb008b;
    font-weight: bold;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 100%);
    border-radius: 8px;
}

.image-container {
    margin: 40px 0;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.footer {
    background-color: #f8f8f8;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 3px solid #eb008b;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    background-color: #eb008b;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #c2185b;
}

@media (max-width: 768px) {
    .site-title h1 {
        font-size: 1.8em;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav li {
        margin: 5px 0;
    }

    .content h2 {
        font-size: 1.5em;
    }
}