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

:root {
  --primary-bg: #FEFFFE;
  --accent-dark: #2F6A5D;
  --accent-light: #68A99C;
  --accent-gold: #CDBF3E;
  --text-dark: #1a1a1a;
  --text-light: #666666;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.78;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 300;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

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

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

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

/* Header */
header {
  position: sticky;
  top: 0;
  background-color: rgba(254, 255, 254, 0.95);
  z-index: 1000;
  border-bottom: 1px solid rgba(47, 106, 93, 0.1);
  transition: all 0.5s ease;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent-dark);
  cursor: pointer;
  transition: all 0.5s ease;
}

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

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-dark);
  transition: all 0.5s ease;
  position: relative;
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* Sections */
section {
  padding: 170px 2rem;
  max-width: 1750px;
  margin: 0 auto;
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(47, 106, 93, 0.3);
}

.hero-content {
  position: relative;
  text-align: center;
}

.hero h1 {
  color: white;
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Text Section */
.text-section {
  text-align: center;
}

.text-section h2 {
  color: var(--accent-dark);
  margin-bottom: 2rem;
}

.text-section p {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
}

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

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: cover;
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.card {
  background: white;
  border: 1px solid rgba(47, 106, 93, 0.1);
  padding: 2rem;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(47, 106, 93, 0.15);
}

.card:hover::after {
  transform: scaleX(1);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

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

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

.info-item {
  padding: 1.5rem;
  border-left: 3px solid var(--accent-light);
  background-color: rgba(104, 169, 156, 0.05);
}

.info-item h3 {
  color: var(--accent-dark);
  margin-bottom: 0.8rem;
}

/* Table */
.table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
}

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

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

th, td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(47, 106, 93, 0.1);
}

tbody tr:hover {
  background-color: rgba(104, 169, 156, 0.05);
}

/* Quote Section */
.quote-section {
  text-align: center;
  margin: 3rem auto;
}

.quote-section blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--accent-dark);
  margin: 2rem 0;
  line-height: 1.8;
}

.quote-avatars {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(47, 106, 93, 0.1);
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid rgba(47, 106, 93, 0.1);
  border-radius: 0;
}

.faq-question {
  padding: 1.5rem;
  background-color: rgba(104, 169, 156, 0.05);
  cursor: pointer;
  font-weight: 500;
  color: var(--accent-dark);
  transition: all 0.5s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: rgba(104, 169, 156, 0.1);
}

.faq-question.active {
  background-color: var(--accent-dark);
  color: white;
}

.faq-toggle {
  font-size: 1.2rem;
  transition: transform 0.5s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding: 0 1.5rem;
}

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

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

/* Disclaimer Section */
.disclaimer-section {
  background-color: rgba(47, 106, 93, 0.05);
  border-left: 4px solid var(--accent-dark);
  padding: 2rem;
  margin-top: 2rem;
}

.disclaimer-section h3 {
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.disclaimer-section p {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 3rem 0;
}

.cta-section h2 {
  color: var(--accent-dark);
  margin-bottom: 1.5rem;
}

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

/* Contact Section */
.contact-section {
  background-color: rgba(254, 255, 254, 1);
}

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

.contact-info {
  padding-right: 2rem;
}

.contact-info h3 {
  color: var(--accent-dark);
  margin-top: 1.5rem;
}

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

.contact-form {
  background: white;
  padding: 2.5rem;
  border: 1px solid rgba(47, 106, 93, 0.1);
}

.contact-form h3 {
  color: var(--accent-dark);
  margin-bottom: 1.5rem;
}

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

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

.form-group input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(47, 106, 93, 0.2);
  background-color: rgba(254, 255, 254, 1);
  font-size: 0.95rem;
  transition: all 0.5s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-dark);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(47, 106, 93, 0.1);
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: rgba(104, 169, 156, 0.05);
  border-left: 2px solid var(--accent-light);
}

.btn {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.5s ease;
  letter-spacing: 0.5px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(47, 106, 93, 0.3);
}

/* Footer */
footer {
  background-color: var(--accent-dark);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1380px;
  margin: 0 auto;
}

.footer-message {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.footer-links a {
  color: white;
  font-size: 0.9rem;
  transition: all 0.5s ease;
}

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

.footer-info {
  margin: 1.5rem 0;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-copyright {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Modal/Popup */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.modal.active {
  display: block;
}

.modal-content {
  background-color: var(--primary-bg);
  margin: 5% auto;
  padding: 2.5rem;
  width: 90%;
  max-width: 800px;
  border: 1px solid rgba(47, 106, 93, 0.2);
  max-height: 80vh;
  overflow-y: auto;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent-light);
}

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

.close-btn {
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.5s ease;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--accent-dark);
  color: white;
  padding: 1.5rem 2rem;
  z-index: 999;
  display: none;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.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.9rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.5s ease;
}

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

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

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

.cookie-btn:hover {
  transform: translateY(-2px);
}

/* Thank You Modal */
.thank-you-modal {
  display: none;
  position: fixed;
  z-index: 2100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

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

.thank-you-content {
  background-color: var(--primary-bg);
  padding: 3rem;
  text-align: center;
  max-width: 500px;
  border: 1px solid rgba(47, 106, 93, 0.2);
  animation: slideDown 0.5s ease;
}

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

.thank-you-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  section {
    padding: 80px 1rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }

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

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

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

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

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

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

  .cookie-buttons {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
  }

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

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

  h2 {
    font-size: 1.4rem;
  }

  body {
    font-size: 14px;
  }

  section {
    padding: 60px 1rem;
  }

  .header-content {
    padding: 1rem;
  }

  .nav-links {
    gap: 0.5rem;
    font-size: 0.75rem;
  }

  .footer-links {
    gap: 1rem;
    font-size: 0.8rem;
  }
}
