*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #088a68;
  --primary-dark: #0b6138;
  --accent: #1cbac8;
  --dark: #333333;
  --light: #ffffff;
  --grey: #777777;
  --light-grey: #f5f5f5;
}
body { font-family: 'Open Sans', Arial, sans-serif; font-size: 15px; line-height: 1.9; color: var(--grey); background: var(--light); }
h1, h2, h3, h4 { font-family: 'Montserrat', Arial, sans-serif; color: var(--dark); font-weight: 700; }
a { color: var(--primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
header { background: var(--light); border-bottom: 1px solid #eee; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.logo img { max-width: 200px; height: auto; }
nav ul { display: flex; list-style: none; gap: 30px; }
nav a { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; color: var(--grey); }
nav a:hover, nav a.active { color: var(--primary); }
.hero { background: var(--primary-dark); color: var(--light); text-align: center; padding: 80px 20px; background-size: cover; background-position: center; }
.hero h1 { color: var(--light); font-size: 42px; margin-bottom: 20px; }
.hero p { font-size: 18px; max-width: 800px; margin: 0 auto 20px; }
.btn { display: inline-block; background: var(--primary); color: var(--light); padding: 15px 30px; border-radius: 5px; font-weight: 700; text-transform: uppercase; }
.btn:hover { background: var(--accent); color: var(--light); }
.section { padding: 60px 0; }
.section-green { background: var(--primary); color: var(--light); }
.section-green h2 { color: var(--light); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card { text-align: center; padding: 30px; }
.card img { width: 80px; height: 80px; margin-bottom: 20px; }
.card h3 { margin-bottom: 15px; color: var(--light); }
.card p { color: #d1d1d1; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.bg-image { background-size: cover; background-position: center; min-height: 400px; display: flex; align-items: center; justify-content: center; }
.bg-image h2 { color: var(--light); font-size: 36px; }
.info-section { background: var(--light-grey); }
footer { background: #1b1b1b; color: var(--grey); padding: 40px 0; }
footer h3 { color: var(--primary); margin-bottom: 20px; }
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer a { color: var(--grey); }
footer a:hover { color: var(--light); }
.footer-bottom { border-top: 1px solid #333; margin-top: 30px; padding-top: 20px; text-align: center; font-size: 13px; }
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.faq-item { background: var(--light); border: 1px solid #eee; margin-bottom: 15px; padding: 20px; border-radius: 5px; }
.faq-item h3 { cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-item .answer { margin-top: 15px; padding-top: 15px; border-top: 1px solid #eee; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.benefit-item { background: var(--light); padding: 25px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.benefit-item h3 { color: var(--primary); margin-bottom: 10px; }
.blog-card { background: var(--light); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card { padding: 20px; }
.blog-card h3 { margin-bottom: 10px; }
.blog-card .btn { margin-top: 15px; }
.mb-40 { margin-bottom: 40px; }
@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 20px; }
  nav ul { flex-wrap: wrap; justify-content: center; }
  .grid-3, .two-col, .benefits-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
}