/* Clean English Code Only */

:root {
    --primary-color: #27ae60;
    --dark-bg: #1e272e;
    --text-main: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; color: var(--text-main); line-height: 1.7; scroll-behavior: smooth; }

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

/* Header & Nav */
.main-header { padding: 25px 0; background: var(--white); border-bottom: 2px solid #f1f1f1; position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 700; font-size: 20px; letter-spacing: 1px; }
.accent-text { color: var(--primary-color); }
.nav-menu ul { display: flex; list-style: none; gap: 30px; }
.nav-menu a { text-decoration: none; color: var(--text-main); font-weight: 700; font-size: 14px; transition: 0.3s; }
.nav-menu a:hover { color: var(--primary-color); }

.btn-cta { background: var(--primary-color); color: var(--white); padding: 12px 24px; border-radius: 4px; text-decoration: none; font-size: 14px; font-weight: 700; }

/* Hero */
.hero-section { background: url('https://images.unsplash.com/photo-1510673398445-94f476ef2cbc?auto=format&fit=crop&w=1600&q=80') center/cover; height: 85vh; position: relative; }
.hero-overlay { background: rgba(0,0,0,0.5); height: 100%; display: flex; align-items: center; color: var(--white); }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 64px; line-height: 1.1; margin-bottom: 25px; }
.hero-content p { font-size: 18px; max-width: 600px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 20px; }

.btn-primary { background: var(--primary-color); color: var(--white); padding: 18px 36px; text-decoration: none; font-weight: 700; }
.btn-secondary { border: 2px solid var(--white); color: var(--white); padding: 18px 36px; text-decoration: none; font-weight: 700; transition: 0.3s; }
.btn-secondary:hover { background: var(--white); color: var(--dark-bg); }

/* Content Grid */
.content-block { padding: 100px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.content-image img { width: 100%; border-radius: 8px; box-shadow: 20px 20px 0px var(--primary-color); }
h2 { font-family: 'Playfair Display', serif; font-size: 42px; margin-bottom: 30px; }

/* Services */
.services-section { background: #f9fbf9; padding: 100px 0; }
.section-title { text-align: center; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
.service-item { background: var(--white); padding: 50px 30px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); transition: 0.3s; }
.service-item:hover { transform: translateY(-10px); }
.icon { font-size: 40px; margin-bottom: 20px; display: block; }

/* Articles */
.articles-section { padding: 100px 0; }
.main-article { background: #fff; border-left: 5px solid var(--primary-color); padding: 40px; margin: 40px 0; box-shadow: 0 5px 25px rgba(0,0,0,0.03); }
.article-meta { font-size: 12px; color: var(--text-light); text-transform: uppercase; margin-bottom: 10px; }
.read-more { display: inline-block; margin-top: 20px; color: var(--primary-color); font-weight: 700; text-decoration: none; }
.article-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.article-card { background: #f1f1f1; padding: 30px; border-radius: 4px; }

/* Map */
.map-area { padding-bottom: 100px; text-align: center; }
.map-wrapper { margin-top: 50px; border: 10px solid #eee; border-radius: 8px; overflow: hidden; }

/* Footer */
.site-footer { background: var(--dark-bg); color: var(--white); padding: 80px 0 0; }
.footer-layout { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; padding-bottom: 60px; }
.footer-legal ul { list-style: none; }
.footer-legal a, .social-links a { color: #999; text-decoration: none; font-size: 14px; margin-bottom: 12px; display: block; }
.footer-legal a:hover, .social-links a:hover { color: var(--primary-color); }
.footer-bottom { border-top: 1px solid #333; padding: 30px 0; text-align: center; font-size: 13px; color: #666; }

/* Cookie Bar */
.cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; padding: 20px 0; border-top: 3px solid var(--primary-color); z-index: 9999; box-shadow: 0 -10px 30px rgba(0,0,0,0.1); }
.cookie-flex { display: flex; justify-content: space-between; align-items: center; }
.cookie-bar button { background: var(--dark-bg); color: #fff; border: none; padding: 12px 25px; cursor: pointer; font-weight: 700; }