:root {
    --primary: #2C3E50;
    --secondary: #E67E22;
    --accent: #16A085;
    --bg-color: #F9F6F0;
    --text-dark: #333333;
    --text-light: #ffffff;
    --font-main: 'Helvetica Neue', Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); background-color: var(--bg-color); color: var(--text-dark); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header & Nav */
header { background-color: var(--primary); color: var(--text-light); padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: bold; color: var(--secondary); display: flex; align-items: center; gap: 10px; }
.logo img { width: 30px; height: 30px; }
.nav-links { display: flex; gap: 20px; }
.nav-links a { font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--secondary); }
.menu-btn { display: none; font-size: 24px; cursor: pointer; background: none; border: none; color: white; }

/* Hero */
.hero { background-color: var(--primary); color: var(--text-light); text-align: center; padding: 100px 20px; position: relative; overflow: hidden; }
.hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: 48px; margin-bottom: 20px; color: var(--secondary); }
.hero p { font-size: 20px; margin-bottom: 30px; }
.btn { display: inline-block; background-color: var(--secondary); color: var(--text-light); padding: 12px 25px; border-radius: 5px; font-weight: bold; transition: background 0.3s; }
.btn:hover { background-color: #d67118; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.2; z-index: 1; }

/* Grid / Blog */
.section-title { text-align: center; font-size: 36px; margin: 60px 0 30px; color: var(--primary); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 60px; }
.card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: transform 0.3s; }
.card:hover { transform: translateY(-5px); }
.card-img { width: 100%; height: 200px; object-fit: cover; background-color: #ddd; }
.card-body { padding: 20px; }
.card-body h3 { color: var(--primary); margin-bottom: 10px; font-size: 22px; }
.card-body p { color: #666; margin-bottom: 15px; font-size: 15px; }
.read-more { color: var(--accent); font-weight: bold; display: inline-flex; align-items: center; }
.read-more:hover { text-decoration: underline; }

/* Article / Page */
.page-header { background-color: var(--primary); color: white; padding: 60px 20px; text-align: center; }
.page-header h1 { color: var(--secondary); margin-bottom: 10px; }
.content-area { background: #fff; padding: 40px; border-radius: 8px; margin: -30px auto 60px; max-width: 800px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); position: relative; z-index: 10; }
.content-area h2 { color: var(--primary); margin: 30px 0 15px; font-size: 28px; }
.content-area h3 { color: var(--accent); margin: 25px 0 10px; font-size: 22px; }
.content-area p { margin-bottom: 20px; font-size: 18px; color: #444; }
.content-area img { width: 100%; border-radius: 8px; margin: 20px 0; background-color: #eee; min-height: 300px; object-fit: cover; }
blockquote { border-left: 5px solid var(--secondary); background: #fdfaf6; padding: 20px; font-style: italic; font-size: 20px; margin: 30px 0; color: var(--primary); }

/* Forms */
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 5px; font-family: inherit; }
.contact-form button { align-self: flex-start; cursor: pointer; border: none; }

/* Footer */
footer { background-color: var(--primary); color: #ccc; text-align: center; padding: 30px 20px; margin-top: auto; }
footer a { color: var(--secondary); }

/* Animations */
.fade-in { animation: fadeIn 0.8s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile Adaptability */
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--primary); padding: 20px 0; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
    .nav-links.active { display: flex; }
    .menu-btn { display: block; }
    .hero h1 { font-size: 36px; }
    .content-area { padding: 20px; margin: 0 auto 40px; border-radius: 0; }
}