body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

.header {
    background-color: var(--background-color);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-toggle, .nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.nav-menu {
    display: flex;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu li {
    margin-left: 1rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
}

.hidden {
    display: none;
}
.container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.images {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.images img {
    width: 48%;
    border-radius: 8px;
    object-fit: cover;
}

h2 {
    margin-top: 1.5rem;
    color: #444;
}

.social-links {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.social-links li {
    margin-bottom: 0.5rem;
}

.social-links a {
    color: #0066cc;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin: 2rem 0;
    font-size: 0.9rem;
    color: #555;
}
