body {
    font-family: Georgia, serif;
    background-color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.container {
    width: 60%;
    display: flex;
    padding: 40px 0;
}

.sidebar {
    width: 25%;
    padding-right: 20px;
}

.sidebar a {
    display: block;
    color: #0066cc;
    text-decoration: none;
    margin-bottom: 10px;
}

.content {
    width: 75%;
}

.content h1 {
    font-size: 24px;
}

.content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.content a {
    color: #0066cc;
    text-decoration: none;
}
.content ol {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.content ol li {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom:0.4rem;
}

/* Contact Info Styles */
.contact-info {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.contact-info p {
    margin: 10px 0;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    font-size: 16px;
    margin-top: 10px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    font-size: 16px;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: Georgia, serif;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #66a0db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: Georgia, serif;
}

.contact-form button:hover {
    background-color: #005bb5;
}

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

.mobile-title {
    display: none;
}

.image {
    width: 100%;
    max-width: 600px;
    display: block;
    border-radius: 2px;
}

.post-item {
    margin-top: 1.5em;
}

.post-item h2 a {
    font-size: 20px;
    color: #333; 
    font-weight: 700;
}

.post-horizontal-dividert{
    border: #949494 0.2px solid;

}

iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; 
    max-width: 600px;
    display: block;
    border-radius: 2px;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

    

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 20px;
        flex-direction: column;
    }

    .hamburger {
        display: block;
    }

    .sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        padding: 80px 20px 20px;
        z-index: 999;
        overflow-y: auto;
        box-sizing: border-box;
        text-align: center;
    }

    .sidebar.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sidebar h3 {
        margin-bottom: 30px;
    }

    .sidebar a {
        margin-bottom: 15px;
        font-size: 18px;
    }

    .content {
        width: 100%;
    }

    .mobile-title {
        display: block;
        margin-bottom: 20px;
    }

    .top-name{
        margin-top:0.4em;
    }

    .sidebar h3 {
        display: none;
    }

    .sidebar.active + .content .mobile-title {
        display: none;
    }

    .sidebar.active h3 {
        display: block;
        margin-bottom: 30px;
    }
}