/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    background-color: #2b2b2b;
}

a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #357abd;
    text-decoration: underline;
}

.wrapper {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Site Structure */
#page {
    min-height: 100vh;
}

.site-wrapper {
    background-color: #fff;
    max-width: 980px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background-color: #2b2b2b;
    padding: 15px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo-area:hover {
    opacity: 0.9;
    text-decoration: none;
}

.logo-box {
    width: 50px;
    height: 50px;
    background-color: #d4e157;
    color: #2b2b2b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    letter-spacing: -1px;
}

.logo-text {
    color: #fff;
}

.logo-title {
    font-size: 20px;
    font-weight: bold;
}

.logo-url {
    font-size: 12px;
    color: #ccc;
}

/* Navigation */
.main-navigation {
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

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

.nav-menu li {
    padding: 0;
}

.nav-menu a {
    color: #555;
    font-size: 12px;
    font-weight: normal;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    text-transform: uppercase;
    transition: all 0.3s;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    background-color: #e0e0e0;
    color: #333;
    text-decoration: none;
}

/* Hero Image */
.hero-image {
    width: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Main Content Layout */
#main {
    padding: 30px 0;
    display: grid;
    grid-template-columns: 200px 1fr 220px;
    gap: 20px;
}

/* Sidebars */
.sidebar {
    padding: 0;
}

#sidebar-left {
    background-color: #2b2b2b;
    color: #fff;
    padding: 20px 15px;
}

#sidebar-right {
    background-color: transparent;
}

/* Widgets */
.widget {
    margin-bottom: 25px;
}

#sidebar-left .widget-title {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #d4e157;
    text-transform: uppercase;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    margin-bottom: 8px;
}

.menu-list a {
    color: #ccc;
    font-size: 12px;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.menu-list a:hover {
    color: #d4e157;
    text-decoration: none;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 1.6;
}

.benefits-list li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.benefits-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4e157;
}

/* Right Sidebar Boxes */
.highlight-box {
    background-color: #2b2b2b;
    color: #fff;
    padding: 20px;
}

.highlight-box .widget-title {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 12px;
}

.highlight-box .widget-content {
    font-size: 13px;
    line-height: 1.6;
}

.steps-box {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 15px;
}

.steps-box .widget-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.steps-box .widget-content {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

/* Content Area */
.site-content {
    background-color: #fff;
    padding: 0 20px;
}

/* Article */
article {
    margin-bottom: 40px;
}

.entry-header {
    margin-bottom: 25px;
}

.entry-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0;
}

.entry-content {
    font-size: 14px;
    line-height: 1.8;
}

.entry-content p {
    margin: 0 0 18px 0;
}

.entry-content h2 {
    font-size: 22px;
    font-weight: bold;
    margin: 30px 0 15px 0;
    color: #333;
}

.entry-content h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 25px 0 12px 0;
    color: #444;
}

.entry-content ul {
    margin: 15px 0 15px 25px;
}

.entry-content li {
    margin-bottom: 8px;
}

.entry-content blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    background-color: #f0f0f0;
    border-left: 4px solid #d4e157;
    font-style: italic;
    color: #555;
}

.entry-content blockquote p {
    margin: 0;
}

/* CTA Button */
.cta-button {
    text-align: center;
    margin: 30px 0;
}

.button-primary {
    display: inline-block;
    background-color: #e53935;
    color: #fff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.button-primary:hover {
    background-color: #c62828;
    text-decoration: none;
}

/* Form Placeholder */
.form-placeholder {
    margin: 30px 0;
}

.form-box {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    background-color: #f9f9f9;
    text-align: center;
}

.form-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

/* Footer */
.site-footer {
    background-color: #2b2b2b;
    padding: 20px 0;
    color: #fff;
    text-align: center;
}

.site-info {
    font-size: 12px;
    color: #ccc;
}

/* Responsive */
@media screen and (max-width: 992px) {
    #main {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    #sidebar-left {
        order: 1;
    }
    
    .site-content {
        order: 2;
    }
    
    #sidebar-right {
        order: 3;
    }
}

@media screen and (max-width: 768px) {
    .logo-title {
        font-size: 16px;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .entry-title {
        font-size: 24px;
    }
    
    .site-content {
        padding: 0 10px;
    }
}