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

body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 14px;
    background: #2b2b2b;
    color: #333;
}

a {
    color: #7bb31a;
    text-decoration: none;
}

a:hover {
    color: #9dd620;
    text-decoration: underline;
}

/* ---- LAYOUT ---- */
#wrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

#outer {
    display: flex;
    flex: 1;
}

/* ---- LEFT SIDEBAR ---- */
#sidebar-left {
    width: 220px;
    min-width: 220px;
    background: #2b2b2b;
    padding: 20px 10px;
    flex-shrink: 0;
}

#logo-wrap {
    text-align: center;
    margin-bottom: 20px;
}

#logo-wrap a img {
    max-width: 190px;
    width: 100%;
}

#main-nav ul {
    list-style: none;
    margin-top: 10px;
}

#main-nav ul li {
    border-top: 1px solid #3a3a3a;
}

#main-nav ul li:last-child {
    border-bottom: 1px solid #3a3a3a;
}

#main-nav ul li a {
    display: block;
    color: #8dc63f;
    padding: 10px 10px 10px 22px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
}

#main-nav ul li a::before {
    content: '❖';
    position: absolute;
    left: 5px;
    font-size: 8px;
    color: #8dc63f;
    top: 50%;
    transform: translateY(-50%);
}

#main-nav ul li a:hover,
#main-nav ul li.active a {
    color: #bde84a;
    background: #333;
}

/* ---- MAIN CONTENT AREA ---- */
#content-wrap {
    flex: 1;
    display: flex;
    background: #f5f5f5;
}

#main-content {
    flex: 1;
    background: #fff;
    padding: 30px 35px;
    min-width: 0;
}

/* Page heading with first-letter effect */
#main-content h1.page-title {
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: normal;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

#main-content h1.page-title::first-letter {
    color: #8dc63f;
    font-size: 36px;
}

#main-content h1 {
    font-size: 22px;
    color: #444;
    margin-bottom: 15px;
    font-weight: bold;
}

#main-content h2 {
    font-size: 18px;
    color: #555;
    margin: 20px 0 10px;
}

#main-content h3 {
    font-size: 16px;
    color: #555;
    margin: 15px 0 8px;
    font-weight: bold;
}

#main-content h5 {
    font-size: 13px;
    color: #444;
    margin: 10px 0 8px;
    font-weight: bold;
    line-height: 1.6;
}

#main-content p {
    line-height: 1.7;
    margin-bottom: 12px;
    color: #444;
}

#main-content ul {
    margin: 10px 0 15px 20px;
}

#main-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

#main-content table {
    border-collapse: collapse;
    margin: 15px 0;
    width: 100%;
    max-width: 500px;
}

#main-content table td {
    padding: 8px 15px;
    border: 1px solid #ddd;
    color: #444;
}

#main-content table tr:nth-child(odd) td {
    background: #f9f9f9;
}

#main-content img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

/* ---- RIGHT SIDEBAR ---- */
#sidebar-right {
    width: 220px;
    min-width: 220px;
    background: #f5f5f5;
    padding: 20px 15px;
    border-left: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.widget {
    margin-bottom: 25px;
}

.widget h1, .widget h2 {
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8dc63f;
    border-bottom: 2px solid #8dc63f;
    padding-bottom: 6px;
    margin-bottom: 12px;
}

.widget p {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 6px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.hours-table th {
    background: #8dc63f;
    color: #fff;
    padding: 4px 6px;
    text-align: left;
    font-weight: bold;
}

.hours-table td {
    padding: 4px 6px;
    border-bottom: 1px solid #e0e0e0;
    color: #444;
}

.hours-table tr:nth-child(even) td {
    background: #f9f9f9;
}

.search-widget input[type="text"] {
    width: 65%;
    padding: 5px;
    border: 1px solid #ccc;
    font-size: 12px;
}

.search-widget button {
    padding: 5px 8px;
    background: #8dc63f;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 12px;
}

/* ---- FOOTER ---- */
#footer {
    background: #1e1e1e;
    color: #aaa;
    padding: 30px 0 0;
}

#footer-inner {
    display: flex;
    justify-content: space-between;
    padding: 0 30px 30px;
    max-width: 1200px;
}

#footer h2 {
    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8dc63f;
    border-bottom: 1px solid #8dc63f;
    padding-bottom: 6px;
    margin-bottom: 12px;
}

#footer ul {
    list-style: none;
}

#footer ul li {
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

#footer ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #8dc63f;
}

#footer ul li a {
    color: #aaa;
    font-size: 12px;
    text-decoration: none;
}

#footer ul li a:hover {
    color: #8dc63f;
}

#footer-contact h3 {
    color: #ccc;
    font-size: 13px;
    margin-bottom: 8px;
}

#footer-contact p {
    font-size: 12px;
    color: #aaa;
    line-height: 1.7;
}

#footer-contact strong {
    color: #ccc;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 12px;
    margin-bottom: 6px;
    text-decoration: none;
}

.social-links a:hover {
    color: #8dc63f;
}

.social-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
}

.social-icon.fb { background: #3b5998; }
.social-icon.gp { background: #dd4b39; }

#footer-bottom {
    background: #111;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #666;
}

#footer-bottom a {
    color: #8dc63f;
}

/* ---- CONTACT FORM ---- */
.contact-form {
    margin-top: 20px;
}

.contact-form .form-row {
    margin-bottom: 12px;
}

.contact-form label {
    display: block;
    font-size: 12px;
    color: #555;
    margin-bottom: 4px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    max-width: 400px;
    padding: 7px 10px;
    border: 1px solid #ccc;
    font-size: 13px;
    font-family: inherit;
}

.contact-form textarea {
    height: 100px;
    resize: vertical;
}

.contact-form button {
    background: #8dc63f;
    color: #fff;
    border: none;
    padding: 8px 25px;
    font-size: 13px;
    cursor: pointer;
    margin-top: 5px;
}

.contact-form button:hover {
    background: #7bb31a;
}

.address-block {
    margin-bottom: 20px;
}

.address-block h1 {
    font-size: 22px;
    color: #8dc63f;
    margin-bottom: 10px;
}

/* ---- BACK TO TOP ---- */
.back-to-top {
    text-align: center;
    margin-top: 20px;
}

.back-to-top a {
    display: inline-block;
    background: #555;
    color: #fff;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    #outer {
        flex-direction: column;
    }
    #sidebar-left {
        width: 100%;
    }
    #content-wrap {
        flex-direction: column;
    }
    #sidebar-right {
        width: 100%;
        border-left: none;
        border-top: 1px solid #e0e0e0;
    }
    #footer-inner {
        flex-direction: column;
        gap: 20px;
    }
}
