/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    text-align: center;
    padding: 2rem 1rem;
    border-bottom: 1px solid #eaeaea;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

.motto {
    font-style: italic;
    color: #666;
    margin-top: 0.5rem;
}

/* Layout */
.content {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Sidebar */
.sidebar-left {
    border-right: 1px solid #eee;
    padding-right: 1rem;
}

.sidebar-left ul {
    list-style-type: none;
    padding: 0;
}

.sidebar-left li {
    margin-bottom: 1rem;
}

/* Center Column */
.main-column article {
    padding: 0 1rem;
}

.main-column h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* Right Sidebar */
.sidebar-right {
    border-left: 1px solid #eee;
    padding-left: 1rem;
    color: #444;
}

.widget {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
}

.widget h3 {
    margin-top: 0;
}

blockquote {
    margin: 0;
    font-style: italic;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sidebar-left,
    .sidebar-right {
        border: none;
        padding: 0;
    }
}

.justify {
    text-align: justify;
}
