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

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styling */
.sidebar {
    width: 280px;
    background-color: #fff;
    border-right: 1px solid #ddd;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
}

.sidebar .logo {
    padding: 0 20px 20px 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.sidebar .logo h2 {
    font-size: 1.2rem;
    color: #1a5c7c;
}

.sidebar nav {
    flex-grow: 1;
}

/* We inherited the original <nav> structure, we need to style it */
.sidebar nav ul {
    list-style: none;
}

.sidebar nav a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.sidebar nav a:hover {
    background-color: #f0f7fa;
    color: #1a5c7c;
}

.sidebar nav img, .sidebar nav svg {
    display: none; /* Hide unnecessary icons inherited from original nav */
}

.sidebar nav span {
    display: block;
    margin-bottom: 10px;
    padding: 0 20px;
    font-weight: bold;
    color: #1a5c7c;
}

/* Main Content Styling */
.content {
    flex-grow: 1;
    padding: 40px;
    background-color: #fff;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.content h1, .content h2, .content h3 {
    color: #1a5c7c;
    margin-bottom: 15px;
    font-weight: 300;
}

.content p {
    margin-bottom: 15px;
}

.content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 4px;
}

/* Original classes specific to Google Sites to reset/hide wrappers */
.mYVXT {
    margin-bottom: 20px;
}

.yaqOZd {
    padding-bottom: 20px;
}

.CDt4Ke {
    /* override some inherited properties if any */
}

/* Some sections had a blue background originally, we can keep it clean */
.IFuOkc {
    display: none; /* Often an empty background layer in G-sites */
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
}
