* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Inter', sans-serif;
background: #fefaf5;
color: #1e2a2e;
line-height: 1.5;
}

.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
}

/* Header */
.site-header {
background: #ffffff;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
padding: 20px 0;
position: sticky;
top: 0;
z-index: 100;
background: rgba(255, 255, 255, 0.97);
backdrop-filter: blur(3px);
}

.logo-area {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 16px;
}

.logo h1 {
font-size: 1.9rem;
font-weight: 800;
background: linear-gradient(135deg, #2b5e3b, #c17b3c);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
}

.logo .logo-light {
font-weight: 300;
background: none;
color: #8b6b4a;
}

.logo p {
font-size: 0.8rem;
color: #5a6e6f;
margin-top: 4px;
}

.nav-links a {
margin-left: 28px;
text-decoration: none;
font-weight: 500;
color: #2c3e2f;
transition: color 0.2s;
}

.nav-links a i {
margin-right: 6px;
}

.nav-links a:hover {
color: #c17b3c;
}

.mobile-menu-btn {
display: none;
font-size: 1.5rem;
cursor: pointer;
color: #2b5e3b;
}

/* Hero */
.hero {
background: linear-gradient(135deg, #e9f0e5 0%, #f5ede3 100%);
border-radius: 36px;
margin: 32px 0 48px;
padding: 56px 40px;
text-align: center;
}

.hero-badge {
display: inline-block;
background: rgba(193, 123, 60, 0.15);
padding: 6px 16px;
border-radius: 50px;
font-size: 0.8rem;
font-weight: 600;
color: #c17b3c;
margin-bottom: 20px;
}

.hero h2 {
font-size: 3rem;
font-weight: 800;
color: #1f3b2c;
}

.hero h2 .highlight {
background: linear-gradient(135deg, #c17b3c, #e6a157);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
}

.hero p {
font-size: 1.2rem;
max-width: 650px;
margin: 16px auto 0;
color: #2d4a3b;
}

.hero-stats {
margin-top: 24px;
display: flex;
justify-content: center;
gap: 28px;
}

.hero-stats span {
font-size: 0.9rem;
color: #4a6652;
}

.hero-stats i {
color: #c17b3c;
margin-right: 6px;
}

/* Section Title */
.section-title {
font-size: 2rem;
font-weight: 700;
margin: 32px 0 28px;
border-left: 6px solid #c17b3c;
padding-left: 20px;
}

/* Articles Grid */
.articles-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
gap: 32px;
margin-bottom: 60px;
}

.article-card {
background: white;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
border: 1px solid #f0e4d4;
text-decoration: none;
display: block;
color: inherit;
}

.article-card:hover {
transform: translateY(-6px);
box-shadow: 0 20px 28px -12px rgba(0, 0, 0, 0.15);
}

.card-img {
height: 210px;
background-size: cover;
background-position: center;
background-color: #dfe6db;
position: relative;
}

.card-category {
position: absolute;
top: 16px;
left: 16px;
background: rgba(255, 255, 255, 0.9);
padding: 4px 12px;
border-radius: 30px;
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
color: #c17b3c;
}

.card-content {
padding: 24px 24px 28px;
}

.article-card h3 {
font-size: 1.45rem;
font-weight: 700;
margin-bottom: 12px;
line-height: 1.35;
}

.article-card p {
color: #3e5659;
margin-bottom: 20px;
font-size: 0.95rem;
}

.read-more {
font-weight: 600;
color: #2b5e3b;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
}

/* Article Page Styles */
.article-page {
padding: 40px 0 60px;
}

.article-header {
margin-bottom: 40px;
}

.article-header h1 {
font-size: 2.8rem;
font-weight: 800;
color: #1f3b2c;
margin: 20px 0 16px;
line-height: 1.2;
}

.article-meta {
display: flex;
gap: 20px;
color: #6b8a74;
font-size: 0.9rem;
margin-bottom: 30px;
}

.article-meta i {
margin-right: 6px;
color: #c17b3c;
}

.article-featured-image {
width: 100%;
height: 400px;
object-fit: cover;
border-radius: 24px;
margin-bottom: 40px;
}

.article-content {
font-size: 1.1rem;
line-height: 1.7;
color: #2c3e2f;
max-width: 800px;
margin: 0 auto;
}

.article-content h2 {
font-size: 1.8rem;
margin: 40px 0 20px;
color: #1f3b2c;
}

.article-content h3 {
font-size: 1.4rem;
margin: 30px 0 15px;
color: #2b5e3b;
}

.article-content p {
margin-bottom: 24px;
}

.article-content ul, .article-content ol {
margin-bottom: 24px;
padding-left: 28px;
}

.article-content li {
margin-bottom: 10px;
}

.article-content hr {
margin: 40px 0;
border: none;
border-top: 2px solid #e9dccc;
}

.article-content strong {
color: #c17b3c;
}

.back-to-home {
display: inline-flex;
align-items: center;
gap: 8px;
background: #f0e4d4;
padding: 12px 24px;
border-radius: 40px;
text-decoration: none;
color: #2b5e3b;
font-weight: 600;
margin-bottom: 30px;
transition: all 0.2s;
}

.back-to-home:hover {
background: #e0d0bc;
transform: translateX(-5px);
}

/* Newsletter */
.newsletter {
background: linear-gradient(135deg, #1f3b2c, #2b5e3b);
border-radius: 32px;
padding: 48px 32px;
text-align: center;
margin: 40px 0 60px;
color: white;
}

.newsletter i {
font-size: 3rem;
margin-bottom: 16px;
color: #e9c9a0;
}

.newsletter h3 {
font-size: 1.8rem;
margin-bottom: 12px;
}

.newsletter p {
opacity: 0.9;
margin-bottom: 24px;
}

.newsletter form {
display: flex;
justify-content: center;
gap: 12px;
flex-wrap: wrap;
max-width: 500px;
margin: 0 auto;
}

.newsletter input {
flex: 1;
min-width: 220px;
padding: 14px 20px;
border: none;
border-radius: 60px;
font-size: 1rem;
outline: none;
}

.newsletter button {
background: #c17b3c;
border: none;
padding: 14px 28px;
border-radius: 60px;
font-weight: 600;
color: white;
cursor: pointer;
transition: background 0.2s;
}

.newsletter button:hover {
background: #a5642e;
}

/* Footer */
footer {
background: #1a2c24;
color: #cfdfd3;
padding: 48px 0 24px;
margin-top: 48px;
border-radius: 32px 32px 0 0;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-col h4 {
margin-bottom: 18px;
font-size: 1.2rem;
color: #e9c9a0;
}

.footer-col a {
display: block;
color: #cfdfd3;
text-decoration: none;
margin-bottom: 10px;
font-size: 0.9rem;
}

.footer-col a:hover {
color: #c17b3c;
}

.social-icons {
display: flex;
gap: 16px;
margin-top: 16px;
}

.social-icons a {
font-size: 1.3rem;
margin-bottom: 0;
}

.footer-bottom {
text-align: center;
padding-top: 24px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
.container {
padding: 0 20px;
}

.nav-links {
display: none;
width: 100%;
flex-direction: column;
background: white;
padding: 20px;
border-radius: 20px;
margin-top: 16px;
}

.nav-links.active {
display: flex;
}

.nav-links a {
margin: 8px 0;
}

.mobile-menu-btn {
display: block;
}

.hero {
padding: 40px 24px;
}

.hero h2 {
font-size: 2rem;
}

.section-title {
font-size: 1.6rem;
}

.articles-grid {
gap: 24px;
}

.newsletter h3 {
font-size: 1.4rem;
}

.article-header h1 {
font-size: 2rem;
}

.article-featured-image {
height: 250px;
}
}

@media (max-width: 480px) {
.hero-stats {
flex-direction: column;
gap: 8px;
}

.article-card h3 {
font-size: 1.3rem;
}
}