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

body {
    font-family: Georgia, 'Times New Roman', serif;
    color: #2c2c2c;
    line-height: 1.8;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background: #2d6a2d;
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    font-family: Georgia, serif;
}

.logo span {
    color: #a8e063;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

nav ul li a {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-family: 'Segoe UI', sans-serif;
    transition: color 0.2s;
    font-weight: 500;
}

nav ul li a:hover {
    color: #a8e063;
}

.hero {
    background: #f5f5f0;
    border-bottom: 3px solid #2d6a2d;
    padding: 0;
}

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 420px;
}

.hero-text {
    padding: 60px 50px 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text .category {
    font-size: 0.8rem;
    font-family: 'Segoe UI', sans-serif;
    color: #2d6a2d;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hero-text h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 16px;
}

.hero-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 24px;
}

.hero-text .read-more {
    display: inline-block;
    background: #2d6a2d;
    color: white;
    padding: 10px 28px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s;
}

.hero-text .read-more:hover {
    background: #1e4d1e;
}

.hero-image {
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding: 50px 0;
}

.main-content {}

.sidebar {}

.article-card {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 36px;
    margin-bottom: 36px;
}

.article-card:last-child {
    border-bottom: none;
}

.article-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 18px;
}

.article-meta {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-meta .category {
    color: #2d6a2d;
    font-weight: 700;
    margin-right: 12px;
}

.article-card h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.3;
}

.article-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.35;
}

.article-card p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 14px;
}

.read-link {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    color: #2d6a2d;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-link:hover {
    text-decoration: underline;
}

.sidebar-widget {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid #e5e5e5;
}

.sidebar-widget:last-child {
    border-bottom: none;
}

.sidebar-widget h3 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2d6a2d;
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list li a {
    color: #333;
    transition: color 0.2s;
}

.sidebar-list li a:hover {
    color: #2d6a2d;
}

.sidebar-img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 14px;
}

.contact-box {
    background: #f5f5f0;
    border-left: 4px solid #2d6a2d;
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.9rem;
}

.contact-box p {
    margin-bottom: 8px;
    color: #555;
}

.contact-box strong {
    color: #2d6a2d;
}

.full-article {
    padding: 50px 0;
}

.full-article h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 30px 0 14px;
    font-weight: 700;
}

.full-article p {
    color: #555;
    margin-bottom: 18px;
    font-size: 1rem;
}

.full-article img {
    width: 100%;
    margin: 24px 0;
    border-radius: 4px;
}

.full-article ul {
    margin: 14px 0 18px 24px;
    color: #555;
}

.full-article ul li {
    margin-bottom: 10px;
}

.tips-numbered {
    counter-reset: tip-counter;
    list-style: none;
    margin: 20px 0;
}

.tips-numbered li {
    counter-increment: tip-counter;
    padding: 18px 18px 18px 60px;
    position: relative;
    border-bottom: 1px solid #eee;
    color: #555;
}

.tips-numbered li::before {
    content: counter(tip-counter);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: #2d6a2d;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
}

.tips-numbered li strong {
    display: block;
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 6px;
}

footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.7);
    padding: 50px 0 24px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    font-size: 1.4rem;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    font-family: 'Segoe UI', sans-serif;
}

.footer-links h4 {
    color: white;
    font-size: 0.8rem;
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-family: 'Segoe UI', sans-serif;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: #a8e063;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    font-family: 'Segoe UI', sans-serif;
}

.page-hero {
    background: #2d6a2d;
    color: white;
    padding: 50px 20px;
}

.page-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1rem;
    opacity: 0.85;
    font-family: 'Segoe UI', sans-serif;
}

.page-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-content h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 36px 0 14px;
    font-weight: 700;
}

.page-content h3 {
    font-size: 1.15rem;
    color: #1a1a1a;
    margin: 24px 0 12px;
    font-weight: 700;
}

.page-content p {
    color: #555;
    margin-bottom: 16px;
    font-family: 'Segoe UI', sans-serif;
}

.page-content ul {
    margin: 14px 0 18px 24px;
    color: #555;
    font-family: 'Segoe UI', sans-serif;
}

.page-content ul li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-inner, .main-layout, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-text h1 {
        font-size: 1.8rem;
    }
}
