:root {
  --color-primary: #3A6A60;
  --color-secondary: #72ACA0;
  --color-accent: #CEB732;
  --color-light: #FCFFFE;
  --color-dark: #1a1a1a;
  --color-gray: #f5f5f5;
  --transition-speed: 0.55s;
  --header-sticky-opacity: 0.96;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--color-light);
  color: var(--color-dark);
  font-size: 17px;
  line-height: 1.72;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.72;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--color-secondary);
}

blockquote {
  font-style: italic;
  color: var(--color-primary);
  margin: 2rem 0;
  padding-left: 2rem;
  border-left: 4px solid var(--color-accent);
}

.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.container-wide {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(252, 255, 254, var(--header-sticky-opacity));
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(58, 106, 96, 0.1);
  transition: all var(--transition-speed) ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 32px;
  height: 32px;
}

nav {
  display: flex;
  gap: 2.5rem;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-primary);
  transition: color var(--transition-speed) ease;
}

nav a:hover {
  color: var(--color-secondary);
}

.hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin-bottom: 0;
}

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

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 800px;
  z-index: 2;
  animation: fadeInScale var(--transition-speed) ease forwards;
}

.hero-content h1 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

section {
  padding: 170px 2rem;
  width: 100%;
}

section.section-no-image {
  padding: 150px 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.two-column.reverse {
  grid-template-columns: 1fr 1fr;
}

.two-column.reverse .text-col {
  order: 2;
}

.two-column.reverse .image-col {
  order: 1;
}

.two-column img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  animation: fadeInScale var(--transition-speed) ease;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.product-card {
  background: var(--color-light);
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
  transition: all var(--transition-speed) ease;
  border: 1px solid rgba(58, 106, 96, 0.1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(58, 106, 96, 0.08);
  border-color: rgba(114, 172, 160, 0.3);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 2rem;
}

.product-card h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.product-card p {
  font-size: 0.95rem;
  color: var(--color-dark);
}

.balance-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(252, 255, 254, 1) 0%, rgba(206, 183, 50, 0.05) 100%);
  padding: 5rem 2rem;
  border-radius: 12px;
  margin-bottom: 4rem;
}

.balance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.balance-item {
  text-align: center;
}

.balance-item h4 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.balance-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.insights-section {
  background: var(--color-light);
  padding: 5rem 2rem;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.insight-item {
  padding: 2rem;
  background: var(--color-gray);
  border-left: 4px solid var(--color-accent);
  border-radius: 4px;
  transition: all var(--transition-speed) ease;
}

.insight-item:hover {
  box-shadow: 0 10px 30px rgba(58, 106, 96, 0.1);
  transform: translateX(5px);
}

.insight-item h4 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 3rem;
}

table th {
  background: var(--color-primary);
  color: var(--color-light);
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(58, 106, 96, 0.1);
}

table tr:hover {
  background: rgba(114, 172, 160, 0.05);
}

.faq-section {
  padding: 170px 2rem;
}

.faq-item {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(58, 106, 96, 0.1);
  padding-bottom: 2rem;
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.1rem;
  user-select: none;
  padding: 1rem 0;
}

.faq-question:hover {
  color: var(--color-secondary);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform var(--transition-speed) ease;
}

.faq-answer {
  display: none;
  padding: 1.5rem 0;
  color: var(--color-dark);
  line-height: 1.72;
}

.faq-answer.active {
  display: block;
  animation: fadeInScale var(--transition-speed) ease;
}

.disclaimer-section {
  background: rgba(206, 183, 50, 0.08);
  padding: 4rem 2rem;
  border-radius: 8px;
  margin-bottom: 4rem;
  text-align: center;
}

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

.disclaimer-section p {
  color: var(--color-dark);
  max-width: 900px;
  margin: 0 auto;
}

.cta-final {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--color-primary);
}

.cta-final h2 {
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.contact-section {
  padding: 170px 2rem;
  background: var(--color-light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 4rem;
}

.contact-info h3 {
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.contact-detail {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-detail strong {
  color: var(--color-primary);
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.form-container {
  background: var(--color-gray);
  padding: 3rem;
  border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(58, 106, 96, 0.2);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(114, 172, 160, 0.1);
}

.form-disclaimer {
  background: rgba(206, 183, 50, 0.1);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-dark);
  border-left: 3px solid var(--color-accent);
}

.button-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  text-transform: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-light);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(58, 106, 96, 0.3);
}

.button-reset {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.button-reset:hover {
  background: rgba(58, 106, 96, 0.05);
}

footer {
  background: var(--color-primary);
  color: var(--color-light);
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
}

.footer-content {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--color-light);
  margin-bottom: 1.5rem;
}

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

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

.footer-section a {
  color: rgba(252, 255, 254, 0.8);
  transition: color var(--transition-speed) ease;
  cursor: pointer;
}

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

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

.footer-message {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(206, 183, 50, 0.15);
  border-radius: 4px;
  font-weight: 600;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  overflow-y: auto;
  animation: fadeIn var(--transition-speed) ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--color-light);
  padding: 3rem;
  border-radius: 8px;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  width: 90%;
  animation: slideUp var(--transition-speed) ease;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.modal-header h2 {
  color: var(--color-primary);
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-primary);
  transition: color var(--transition-speed) ease;
}

.close-btn:hover {
  color: var(--color-secondary);
}

.modal-body {
  color: var(--color-dark);
  line-height: 1.72;
}

.modal-body h3 {
  color: var(--color-primary);
  margin-top: 2rem;
}

.modal-body ul, .modal-body ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.modal-body li {
  margin-bottom: 0.8rem;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  background: var(--color-primary);
  color: var(--color-light);
  padding: 2rem;
  z-index: 999;
  animation: slideUp var(--transition-speed) ease;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

.cookie-text a {
  color: var(--color-accent);
  text-decoration: underline;
  cursor: pointer;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  font-size: 0.95rem;
}

.cookie-accept {
  background: var(--color-accent);
  color: var(--color-dark);
}

.cookie-accept:hover {
  background: #d4c441;
}

.cookie-reject {
  background: transparent;
  color: var(--color-light);
  border: 2px solid var(--color-light);
}

.cookie-reject:hover {
  background: rgba(252, 255, 254, 0.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

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

  h2 {
    font-size: 2rem;
  }

  section {
    padding: 100px 2rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .balance-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  nav {
    gap: 1.5rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  body {
    font-size: 16px;
  }

  section {
    padding: 80px 1.5rem;
  }

  .hero-section {
    height: 400px;
  }

  .header-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  nav a {
    font-size: 0.8rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 2rem;
    width: 95%;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cookie-text {
    font-size: 0.9rem;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

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

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1rem;
  }

  body {
    font-size: 15px;
  }

  section {
    padding: 60px 1rem;
  }

  .hero-section {
    height: 300px;
  }

  nav {
    display: none;
  }

  .container {
    padding: 0 1rem;
  }

  .form-disclaimer {
    font-size: 0.85rem;
  }
}
