@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

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

body {
    font: 400 15px/1.7 'Montserrat', Arial, sans-serif;
    color: #5f5f5f;
    background: #f1f1f1;
}

a {
    color: #69af07;
    text-decoration: none;
}
a:hover {
    color: #558c06;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: #282828;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== HEADER ===== */
.header {
    background: #fff;
    border-bottom: 2px solid #69af07;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #282828;
    font-size: 20px;
    font-weight: 700;
}
.logo img {
    height: 50px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
}
.main-nav ul li a {
    display: block;
    padding: 24px 16px;
    color: #282828;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.2s;
}
.main-nav ul li a:hover,
.main-nav ul li.current a {
    color: #69af07;
}

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid #69af07;
    color: #69af07;
    padding: 8px 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #2b2b2b 0%, #1a3a00 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}
.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}
.hero h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}
.hero p {
    font-size: 17px;
    line-height: 1.7;
    color: #d4d4d4;
    max-width: 700px;
    margin: 0 auto 24px;
}
.hero-image {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-image img {
    width: 100%;
    display: block;
}

/* ===== CONTENT ===== */
.main-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-area {
    display: flex;
    gap: 40px;
}

.site-main {
    flex: 1;
    min-width: 0;
}

.site-main article {
    background: #fff;
    padding: 35px 40px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.entry-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #69af07;
}

.entry-content p {
    margin-bottom: 16px;
}

.entry-content h2 {
    font-size: 22px;
    margin: 28px 0 14px;
    color: #282828;
}

.entry-content h3 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: #3a3a3a;
}

.entry-content ul {
    margin: 10px 0 16px 20px;
    padding: 0;
}
.entry-content ul li {
    margin-bottom: 6px;
}

.entry-content .article-image {
    margin: 20px 0;
    border-radius: 6px;
    overflow: hidden;
}
.entry-content .article-image img {
    width: 100%;
    display: block;
}

/* ===== SIDEBAR ===== */
#sidebar {
    width: 300px;
    flex-shrink: 0;
}

.widget {
    background: #fff;
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #69af07;
    color: #282828;
}

.widget p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.widget ul {
    list-style: none;
    margin: 0;
}
.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
.widget ul li:last-child {
    border-bottom: none;
}
.widget ul li a {
    color: #282828;
    font-weight: 500;
}
.widget ul li a:hover {
    color: #69af07;
}

/* ===== SECTIONS (homepage) ===== */
.sections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.section-box {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.section-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.section-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.section-box .sec-content {
    padding: 20px;
}

.section-box h3 {
    font-size: 17px;
    margin-bottom: 8px;
}
.section-box h3 a {
    color: #282828;
}
.section-box h3 a:hover {
    color: #69af07;
}

.section-box p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 16px;
    background: #69af07;
    color: #fff;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}
.read-more:hover {
    background: #558c06;
    color: #fff;
}

/* ===== PRICE TABLE ===== */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.price-table th {
    background: #69af07;
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}
.price-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}
.price-table tr:nth-child(even) {
    background: #f9f9f9;
}
.price-table tr:hover {
    background: #f0f7e6;
}

/* ===== OPINIONS ===== */
.opinion {
    background: #fff;
    padding: 25px;
    border-left: 4px solid #69af07;
    margin-bottom: 20px;
    border-radius: 0 4px 4px 0;
}
.opinion p {
    font-style: italic;
    margin-bottom: 8px;
    color: #555;
}
.opinion .author {
    font-weight: 600;
    color: #282828;
    font-style: normal;
    font-size: 13px;
}

/* ===== FOOTER ===== */
.copyright-wrapper {
    background: #2b2b2b;
    color: #aaa;
    padding: 20px 0;
    margin-top: 40px;
}
.copyright-wrapper .container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.copyright-wrapper p {
    font-size: 13px;
}
.copyright-wrapper a {
    color: #69af07;
}
.copyright-wrapper a:hover {
    color: #8cd41a;
}

/* ===== MAP ===== */
.map-container {
    margin-top: 20px;
}
.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .content-area {
        flex-direction: column;
    }
    #sidebar {
        width: 100%;
    }
    .sections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }
    .menu-toggle {
        display: block;
    }
    .main-nav {
        display: none;
        width: 100%;
        order: 3;
    }
    .main-nav.active {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
    }
    .main-nav ul li a {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }
    .hero h1 {
        font-size: 26px;
    }
    .sections-grid {
        grid-template-columns: 1fr;
    }
    .site-main article {
        padding: 20px;
    }
    .entry-title {
        font-size: 22px;
    }
}
