@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

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

:root {
  --primary-bg: #FAFEFD;
  --accent-dark: #3B6D63;
  --accent-light: #74B0A4;
  --accent-gold: #D0BC36;
  --text-dark: #2c3e3f;
  --text-light: #5a6b6c;
  --border-light: #e8f0f0;
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-dark);
  line-height: 1.75;
  font-size: 17px;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  color: var(--accent-dark);
  margin: 1.5rem 0 1rem 0;
  font-weight: 500;
  line-height: 1.4;
}

h1 {
  font-size: 2.5rem;
  font-weight: 500;
  margin: 2rem 0 1.5rem 0;
}

h2 {
  font-size: 2rem;
  font-weight: 500;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.75;
}

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

/* Header Styles */
header {
  background-color: rgba(250, 254, 253, 0.94);
  backdrop-filter: blur(10px);
  padding: 1.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--accent-light);
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-light);
  transition: width 0.3s ease;
}

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

nav a:hover::after {
  width: 100%;
}

/* Body Padding for Fixed Header */
body {
  padding-top: 80px;
}

/* Hero Section */
.hero {
  height: 600px;
  background: linear-gradient(135deg, rgba(250, 254, 253, 0.8), rgba(116, 176, 164, 0.15));
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 100px;
  animation: fadeIn 0.8s ease-in;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  color: var(--accent-dark);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.hero p {
  font-size: 1.3rem;
  color: var(--accent-dark);
  font-weight: 300;
}

/* Section Styles */
section {
  margin: 150px auto;
  max-width: 1300px;
  padding: 0 2rem;
  animation: slideIn 0.6s ease-out;
}

.section-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.section-intro h2 {
  margin-bottom: 1.5rem;
}

.section-intro p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 4rem 0;
}

.two-column-reverse {
  grid-auto-flow: dense;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(59, 109, 99, 0.1);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.two-column img:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(59, 109, 99, 0.15);
}

.column-content h2 {
  margin-top: 0;
}

.column-content p {
  color: var(--text-light);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 4rem 0;
}

.product-card {
  background-color: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(59, 109, 99, 0.08);
  transition: all 0.6s ease;
  border: 1px solid var(--border-light);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(59, 109, 99, 0.12);
  border-color: var(--accent-light);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  transition: transform 0.6s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  margin-top: 0;
  color: var(--accent-dark);
}

.product-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Balance Section */
.balance-content {
  background-color: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 5px 20px rgba(59, 109, 99, 0.08);
  margin: 2rem 0;
}

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

.balance-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(116, 176, 164, 0.1), rgba(208, 188, 54, 0.05));
  border-radius: 15px;
  transition: all 0.3s ease;
}

.balance-item:hover {
  background: linear-gradient(135deg, rgba(116, 176, 164, 0.15), rgba(208, 188, 54, 0.1));
  transform: translateY(-5px);
}

.balance-item h4 {
  color: var(--accent-dark);
  margin: 1rem 0 0.5rem 0;
}

.balance-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* Insights Section */
.insights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 3rem 0;
}

.insight-card {
  background-color: white;
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--accent-light);
  box-shadow: 0 3px 15px rgba(59, 109, 99, 0.05);
  transition: all 0.3s ease;
}

.insight-card:hover {
  box-shadow: 0 8px 25px rgba(59, 109, 99, 0.12);
  transform: translateX(5px);
}

.insight-card h4 {
  color: var(--accent-dark);
  margin-top: 0;
}

.insight-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Table Styles */
.table-container {
  overflow-x: auto;
  margin: 3rem 0;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(59, 109, 99, 0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
}

table thead {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
  color: white;
}

table th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 500;
}

table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
}

table tbody tr:hover {
  background-color: rgba(116, 176, 164, 0.05);
}

table tbody tr:last-child td {
  border-bottom: none;
}

/* FAQ Section */
.faq-container {
  max-width: 900px;
  margin: 4rem auto;
}

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

.faq-question {
  background-color: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 3px 12px rgba(59, 109, 99, 0.06);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.faq-question:hover {
  box-shadow: 0 8px 20px rgba(59, 109, 99, 0.12);
  background-color: rgba(116, 176, 164, 0.05);
  border-color: var(--accent-light);
}

.faq-question h4 {
  margin: 0;
  color: var(--accent-dark);
  font-size: 1.1rem;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-toggle.active {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background-color: rgba(116, 176, 164, 0.05);
  border-radius: 0 0 12px 12px;
}

.faq-answer.active {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  color: var(--text-light);
  margin: 0;
}

/* Disclaimer Section */
.disclaimer-section {
  background: linear-gradient(135deg, rgba(116, 176, 164, 0.08), rgba(208, 188, 54, 0.05));
  border-radius: 20px;
  padding: 3rem;
  margin: 4rem 0;
  border-left: 4px solid var(--accent-light);
}

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

.disclaimer-section p {
  color: var(--text-dark);
  margin: 1rem 0;
}

/* Contact Section */
.contact-section {
  background-color: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 5px 20px rgba(59, 109, 99, 0.08);
  margin: 4rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-info {
  background: linear-gradient(135deg, rgba(59, 109, 99, 0.05), rgba(116, 176, 164, 0.05));
  padding: 2rem;
  border-radius: 15px;
}

.contact-info h3 {
  margin-top: 0;
}

.contact-info p {
  margin: 0.5rem 0;
  color: var(--text-dark);
}

.contact-info strong {
  color: var(--accent-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: white;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(116, 176, 164, 0.1);
}

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

.form-disclaimer {
  background-color: rgba(116, 176, 164, 0.08);
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--text-dark);
  border-left: 3px solid var(--accent-light);
  margin-bottom: 1rem;
}

.form-btn {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.6s ease;
  position: relative;
  overflow: hidden;
}

.form-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.6s ease;
  z-index: -1;
}

.form-btn:hover::before {
  left: 100%;
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 109, 99, 0.25);
}

/* Final CTA Section */
.final-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(116, 176, 164, 0.08), rgba(208, 188, 54, 0.05));
  border-radius: 20px;
  margin: 4rem 0;
}

.final-cta h2 {
  margin-top: 0;
  font-size: 2.2rem;
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 1.5rem auto;
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 2rem 1.5rem;
  margin-top: 150px;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-section h4 {
  color: var(--accent-gold);
  margin-top: 0;
  margin-bottom: 1rem;
}

.footer-section p {
  font-size: 0.9rem;
  color: #ccc;
  margin: 0.5rem 0;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin: 0.5rem 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.footer-message {
  margin-top: 1.5rem;
  color: var(--accent-gold);
  font-weight: 500;
  font-style: italic;
}

/* Modal/Popup Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

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

.modal-content {
  background-color: var(--primary-bg);
  padding: 2.5rem;
  border-radius: 20px;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.3s ease;
}

.modal-close {
  float: right;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 1rem;
}

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

.modal-content h2 {
  margin-top: 0;
}

.modal-content p {
  color: var(--text-dark);
  line-height: 1.8;
}

/* Cookie Banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 62, 63, 0.98);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  animation: slideUp 0.4s ease;
}

.cookie-banner.active {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  color: white;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.cookie-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: var(--accent-light);
  color: white;
}

.cookie-btn-accept:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

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

.cookie-btn-learn {
  background-color: var(--accent-gold);
  color: var(--text-dark);
}

.cookie-btn-learn:hover {
  background-color: #c5a72f;
  transform: translateY(-2px);
}

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

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

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

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

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

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

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

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

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

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 16px;
  }

  header {
    padding: 1rem 0;
  }

  nav ul {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero {
    height: 400px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    margin: 100px auto;
    padding: 0 1rem;
  }

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

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

  .balance-item {
    padding: 1rem;
  }

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

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

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

  .cookie-banner.active {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-wrap: wrap;
  }

  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }

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

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

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .hero {
    height: 300px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  section {
    margin: 60px auto;
  }

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

  .balance-item h4 {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.8rem;
  }

  table {
    font-size: 0.85rem;
  }

  table th,
  table td {
    padding: 0.8rem 0.5rem;
  }

  .contact-info,
  .contact-form {
    font-size: 0.9rem;
  }
}
