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

:root {
  --primary-color: #4A9088;
  --accent-light: #F5F5DC;
  --accent-blue: #B0C4DE;
  --accent-gold: #E6B800;
  --dark: #1a1a1a;
  --light-gray: #f8f8f8;
  --border-gray: #e0e0e0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.4;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

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

a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-gray);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

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

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

main {
  margin-top: 80px;
}

section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-gray);
}

section:last-of-type {
  border-bottom: none;
}

.section-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #5aa896 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  display: flex;
  align-items: center;
  min-height: 600px;
  margin-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.hero-image {
  flex: 1;
  margin-left: 2rem;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  object-fit: cover;
}

.hero-text p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  line-height: 1.8;
}

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

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

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

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

.section-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  object-fit: cover;
  max-height: 500px;
}

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

.card {
  background-color: var(--accent-light);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

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

.card p {
  font-size: 0.95rem;
  color: #555;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: #3a7068;
  color: white;
  transform: scale(1.05);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(74, 144, 136, 0.3);
}

.cta-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.cta-link:hover {
  color: var(--accent-gold);
}

.text-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.text-content p {
  margin-bottom: 1rem;
}

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

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--accent-light);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.faq-item h4 {
  cursor: pointer;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-item .toggle-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

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

.faq-content {
  display: none;
  padding-top: 1rem;
  color: #555;
}

.faq-item.active .faq-content {
  display: block;
  animation: slideDown 0.3s ease;
}

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

.form-wrapper {
  background-color: var(--accent-light);
  padding: 3rem;
  border-radius: 8px;
  margin-top: 2rem;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 144, 136, 0.1);
}

.form-disclaimer {
  font-size: 0.85rem;
  color: #666;
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgba(74, 144, 136, 0.05);
  border-radius: 4px;
  border-left: 3px solid var(--primary-color);
}

.disclaimer-text {
  font-size: 0.9rem;
  color: #666;
  padding: 1rem;
  background-color: var(--accent-light);
  border-radius: 4px;
  margin: 2rem 0;
  border-left: 4px solid var(--accent-gold);
}

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

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

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

.footer-section p, .footer-section a {
  color: #ccc;
  margin-bottom: 0.5rem;
}

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

.footer-contact-info {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-policies {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
  border-top: 1px solid #444;
  padding-top: 2rem;
}

.footer-policies a {
  color: #ccc;
  text-decoration: underline;
  font-size: 0.9rem;
  cursor: pointer;
}

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

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 2rem;
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
}

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

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

.modal.show {
  display: block;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: slideInDown 0.3s ease;
}

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

.modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

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

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

.modal p {
  color: #555;
  margin-bottom: 1rem;
}

.modal ul, .modal ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: #555;
}

.modal li {
  margin-bottom: 0.5rem;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  color: white;
  padding: 1.5rem;
  z-index: 1500;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  animation: slideUp 0.3s ease;
}

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

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

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

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

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

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

.cookie-btn-accept:hover {
  background-color: #3a7068;
}

.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-more {
  background-color: transparent;
  color: white;
  text-decoration: underline;
  padding: 0;
}

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

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

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

.thank-you-message h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.thank-you-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
  z-index: 2099;
}

.thank-you-overlay.show {
  display: block;
}

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  section {
    padding: 3rem 0;
  }

  .section-hero {
    padding: 3rem 0;
    min-height: auto;
    flex-direction: column;
  }

  .hero-image {
    margin-left: 0;
    margin-top: 2rem;
  }

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

  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

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

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

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

  .cookie-btn {
    width: 100%;
  }

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

  .form-wrapper {
    padding: 1.5rem;
  }
}
