:root {
  --color-primary: #E0F2F7;
  --color-accent-dark: #5B8C85;
  --color-accent-light: #A0D2DB;
  --color-accent-warm: #F7C59F;
  --color-bg: #FFFFFF;
  --color-text: #2C3E50;
  --color-text-light: #5A6C7D;
  --color-border: #D5E8ED;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Georgia', 'Lora', serif;
}

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

html, body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.25rem;
  text-align: justify;
  color: var(--color-text-light);
}

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

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

button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--color-accent-dark);
  color: white;
}

.btn-primary:hover {
  background-color: #4A7570;
  box-shadow: 0 4px 15px rgba(91, 140, 133, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-accent-dark);
  border: 2px solid var(--color-accent-dark);
}

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

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--color-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 1rem 0;
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

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

.logo img {
  height: 30px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-accent-dark);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
}

main {
  margin-top: 80px;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #F0F8FA 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 2rem;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-accent-light) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 0;
}

.section-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.section-hero img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 2rem;
  box-shadow: 0 8px 30px rgba(91, 140, 133, 0.15);
  animation: fadeInUp 1s ease-out;
}

.section-info {
  background-color: var(--color-bg);
  padding: 100px 2rem;
}

.section-info.alt {
  background-color: var(--color-primary);
  background-opacity: 0.3;
}

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

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

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

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

.content-two-col img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(91, 140, 133, 0.1);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 3rem auto;
}

.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 30px rgba(91, 140, 133, 0.2);
  transform: translateY(-5px);
}

.card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: block;
}

.card h3 {
  color: var(--color-accent-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.card p {
  text-align: center;
  margin-bottom: 1.5rem;
}

table {
  width: 100%;
  max-width: 1400px;
  margin: 2rem auto;
  border-collapse: collapse;
  background: var(--color-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

table thead {
  background: var(--color-accent-dark);
  color: white;
}

table th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 700;
  font-family: var(--font-heading);
}

table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

table tbody tr:hover {
  background-color: var(--color-primary);
}

.faq-container {
  max-width: 900px;
  margin: 2rem auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-light));
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-primary));
}

.faq-answer {
  display: none;
  padding: 1.5rem;
  background: var(--color-bg);
  color: var(--color-text-light);
}

.faq-answer.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.faq-toggle {
  font-weight: bold;
  color: var(--color-accent-dark);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

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

.form-container {
  max-width: 500px;
  margin: 2rem auto;
  background: var(--color-primary);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(91, 140, 133, 0.1);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent-dark);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.disclaimer {
  background: #FFF3CD;
  border-left: 4px solid #F7C59F;
  padding: 1.5rem;
  border-radius: 4px;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--color-text);
}

.disclaimer p {
  margin: 0;
  text-align: left;
}

footer {
  background: var(--color-text);
  color: white;
  padding: 3rem 2rem;
  margin-top: 5rem;
}

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

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

.footer-section p {
  color: #BDC3C7;
  text-align: left;
  margin-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: #BDC3C7;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

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

.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;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: var(--color-bg);
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-accent-dark);
  width: auto;
  padding: 0;
}

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

.modal h2 {
  margin-top: 0;
  text-align: left;
}

.modal p {
  text-align: left;
  margin-bottom: 1rem;
}

.modal ol, .modal ul {
  text-align: left;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.modal li {
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-text);
  color: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  animation: slideUp 0.3s ease;
}

.cookie-banner.hidden {
  display: none;
}

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

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

.cookie-banner button {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.cookie-banner .btn-primary {
  background-color: var(--color-accent-dark);
}

.cookie-banner .btn-secondary {
  color: white;
  border-color: white;
}

.thank-you-message {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 2100;
  animation: slideIn 0.3s ease;
}

.thank-you-message.active {
  display: block;
}

.thank-you-message h2 {
  color: var(--color-accent-dark);
  margin-bottom: 1rem;
}

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

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (max-width: 1024px) {
  .content-two-col,
  .content-two-col-reverse {
    grid-template-columns: 1fr;
  }
  
  .content-two-col-reverse .text,
  .content-two-col-reverse .image {
    order: unset;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 1.5rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .section-hero {
    padding: 80px 1.5rem;
  }
  
  .modal-content {
    max-width: 90%;
    max-height: 90vh;
    padding: 1.5rem;
  }
}
