:root {
  --accent-color: #4A7865;
  --text-primary: #2A2A2A;
  --text-secondary: #666666;
  --bg-light: #FAFAFA;
  --bg-white: #FFFFFF;
  --border-light: #E8E8E8;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-primary);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

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

a:hover {
  opacity: 0.9;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-color);
  letter-spacing: -0.02em;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  text-transform: lowercase;
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

section {
  padding: 100px 0;
}

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

.section-content {
  max-width: 900px;
  margin: 0 auto;
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.content-with-image:last-child {
  margin-bottom: 0;
}

.content-with-image.reverse {
  direction: rtl;
}

.content-with-image.reverse > * {
  direction: ltr;
}

.content-column img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.product-card {
  background: var(--bg-white);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card-content {
  padding: 30px;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.faq-item {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: var(--accent-color);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background-color: var(--accent-color);
  color: var(--bg-white);
  border-radius: 8px;
  font-weight: 400;
  font-size: 1rem;
  transition: opacity 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg-light);
  border-radius: 10px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

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

.disclaimer-box {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
}

.disclaimer-box h3 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

footer {
  background-color: var(--text-primary);
  color: var(--bg-light);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 400;
}

.footer-section p,
.footer-section a {
  color: var(--bg-light);
  font-size: 0.95rem;
  line-height: 1.8;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--accent-color);
}

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

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.modal-content {
  background: var(--bg-white);
  max-width: 800px;
  width: 100%;
  border-radius: 10px;
  padding: 60px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--accent-color);
}

.modal-content h2 {
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.modal-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(42, 42, 42, 0.98);
  backdrop-filter: blur(10px);
  padding: 25px;
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-banner-content p {
  color: var(--bg-light);
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner-content button {
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: var(--bg-white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.cookie-banner-content button:hover {
  opacity: 0.9;
}

.success-message {
  display: none;
  background: var(--accent-color);
  color: var(--bg-white);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.success-message.show {
  display: block;
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .content-with-image {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .nav-menu {
    gap: 1.5rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-menu {
    display: none;
  }
  
  .modal-content {
    padding: 40px 30px;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
}
