:root {
  --accent-color: #33691E;
  --text-dark: #2c2c2c;
  --text-medium: #555555;
  --text-light: #777777;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}

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

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

h1 {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1.2rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 15px;
}

header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
}

.logo:hover {
  opacity: 0.8;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}

nav ul li a {
  color: var(--text-dark);
  font-weight: 500;
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px - 300px);
}

.hero {
  background-color: var(--bg-light);
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
  border-radius: 4px;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background-color: var(--bg-light);
}

.content-image {
  max-width: 350px;
  height: auto;
  margin: 1rem 0;
  border-radius: 4px;
}

.image-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.image-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

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

.card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.card h3 {
  color: var(--accent-color);
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--accent-color);
  color: var(--bg-white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.9;
  color: var(--bg-white);
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-item h3 {
  color: var(--accent-color);
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
}

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

.disclaimer-box {
  background-color: #f5f5dc;
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem;
  margin: 2rem 0;
}

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

footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

footer a {
  color: var(--bg-white);
}

footer a:hover {
  opacity: 0.8;
}

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

.footer-section h4 {
  color: var(--bg-white);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 44, 44, 0.98);
  color: var(--bg-white);
  padding: 1.5rem;
  z-index: 2000;
  display: none;
}

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

.cookie-content {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--bg-white);
  color: var(--bg-white);
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  body {
    font-size: 1rem;
  }
  
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .content-image {
    max-width: 100%;
    float: none !important;
    margin: 1rem 0 !important;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 2rem 0;
  }
  
  .section {
    padding: 2rem 0;
  }
}
