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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
header {
    background-color: #2c5530;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-brand a {
    color: white;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #7fb069;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #7fb069 0%, #2c5530 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-placeholder {
    background-color: rgba(255,255,255,0.2);
    padding: 3rem;
    border-radius: 10px;
    margin-top: 2rem;
    font-style: italic;
    color: #e8f5e8;
}

/* Featured Posts */
.featured-posts {
    padding: 4rem 0;
    background-color: white;
}

.featured-posts h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5530;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.post-image {
    background-color: #e8f5e8;
    padding: 3rem;
    text-align: center;
    font-style: italic;
    color: #666;
    border-bottom: 1px solid #eee;
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.3;
}

.post-content h3 a {
    color: #2c5530;
    text-decoration: none;
}

.post-content h3 a:hover {
    color: #7fb069;
}

.post-content p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.5;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #888;
}

/* Recent Posts */
.recent-posts {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.recent-posts h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5530;
}

.posts-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.post-item {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.post-item:hover {
    transform: translateY(-3px);
}

.post-image-small {
    background-color: #e8f5e8;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    font-style: italic;
    color: #666;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-item .post-content {
    flex: 1;
    padding: 0;
}

.post-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.post-item h3 a {
    color: #2c5530;
    text-decoration: none;
}

.post-item h3 a:hover {
    color: #7fb069;
}

/* Newsletter */
.newsletter {
    background-color: #2c5530;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background-color: #7fb069;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #6da055;
}

/* Footer */
footer {
    background-color: #1a3d1e;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #7fb069;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #7fb069;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #7fb069;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Article Pages */
.article-header {
    background-color: #2c5530;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.article-meta {
    font-size: 1.1rem;
    color: #b8e6c1;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 20px;
    background-color: white;
    line-height: 1.8;
}

.article-content h2 {
    color: #2c5530;
    font-size: 2rem;
    margin: 2rem 0 1rem;
}

.article-content h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: #444;
}

.article-content ul, .article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: #444;
}

.article-image {
    background-color: #e8f5e8;
    padding: 3rem;
    text-align: center;
    font-style: italic;
    color: #666;
    border-radius: 10px;
    margin: 2rem 0;
}

.product-recommendation {
    background-color: #f0f8f0;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #7fb069;
}

.product-recommendation h4 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.amazon-link {
    display: inline-block;
    background-color: #ff9900;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 1rem;
}

.amazon-link:hover {
    background-color: #e68900;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-item {
        flex-direction: column;
    }
    
    .post-image-small {
        min-width: auto;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .article-content {
        padding: 2rem 20px;
    }
}