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

body {
  font-family: system-ui, -apple-system, Roboto, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #333;
  background: #ffffff;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
  padding: 20px 0;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #27AE60;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #27AE60;
}

main {
  margin-top: 80px;
  padding: 40px 0;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #1a1a1a;
}

h2 {
  font-size: 1.9rem;
  line-height: 1.4;
  margin-bottom: 15px;
  margin-top: 40px;
  color: #1a1a1a;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.4;
  margin-bottom: 12px;
  margin-top: 30px;
  color: #1a1a1a;
}

p {
  margin-bottom: 15px;
}

.hero {
  background: #f8f9fa;
  padding: 80px 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 30px;
}

.hero-image {
  max-width: 600px;
  height: auto;
  margin: 30px auto;
  display: block;
}

.section {
  padding: 50px 0;
}

.section-alt {
  background: #f8f9fa;
}

.content-image {
  max-width: 350px;
  height: auto;
  margin: 20px;
}

.image-left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}

.image-right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.cta-button {
  display: inline-block;
  background: #27AE60;
  color: #ffffff;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background: #229954;
  color: #ffffff;
}

.disclaimer-box {
  background: #f0f0f0;
  border-left: 4px solid #27AE60;
  padding: 25px;
  margin: 40px 0;
}

.disclaimer-box h3 {
  margin-top: 0;
}

footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 50px 0 30px;
  margin-top: 60px;
}

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

.footer-section h3 {
  color: #27AE60;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: #cccccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: #27AE60;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.faq-item {
  margin-bottom: 30px;
}

.faq-item h3 {
  color: #27AE60;
}

.contact-form {
  max-width: 600px;
  margin: 30px 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-disclaimer {
  background: #fff3cd;
  border: 1px solid #ffc107;
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #ffffff;
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.cookie-banner button {
  background: #27AE60;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
}

.cookie-banner button:hover {
  background: #229954;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .content-image {
    max-width: 100%;
    float: none !important;
    margin: 20px 0;
  }

  .hero {
    padding: 50px 0;
  }

  .hero-image {
    max-width: 100%;
  }
}
