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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Serif Pro', serif;
  font-size: 17px;
  line-height: 1.9;
  color: #333;
  background-color: #F0F4F8;
  letter-spacing: 0.3px;
}

h1, h2, h3 {
  font-family: 'Lora', serif;
  font-weight: 700;
  color: #26A69A;
}

h1 {
  font-size: 58px;
  line-height: 1.3;
  margin-bottom: 30px;
}

h2 {
  font-size: 48px;
  line-height: 1.4;
  margin-bottom: 25px;
}

h3 {
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 20px;
}

h2.subtitle {
  font-style: italic;
  font-size: 28px;
  color: #00897B;
  border-bottom: 2px solid #B2DFDB;
  padding-bottom: 10px;
  display: inline-block;
}

p {
  margin-bottom: 15px;
}

a {
  color: #26A69A;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #00897B;
  text-decoration: underline;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(240, 244, 248, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
}

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

.logo {
  font-family: 'Lora', serif;
  font-size: 24px;
  font-weight: 700;
  color: #26A69A;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

nav {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

nav a {
  color: #26A69A;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #00897B;
}

/* Body offset for fixed header */
body {
  padding-top: 80px;
}

/* Sections */
section {
  padding: 180px 20px;
  max-width: 1340px;
  margin: 0 auto;
}

section.full-width {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

#hero {
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 166, 154, 0.1) 0%, rgba(77, 182, 172, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.8;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #333;
  max-width: 800px;
  padding: 40px;
  background: rgba(240, 244, 248, 0.85);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  color: #26A69A;
  font-size: 90px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-content p {
  font-size: 22px;
  color: #555;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

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

/* Content blocks */
.intro-text, .disclaimer-block {
  background: linear-gradient(to bottom, rgba(77, 182, 172, 0.05), rgba(178, 223, 219, 0.1));
  padding: 40px;
  border-left: 4px solid #26A69A;
  border-radius: 4px;
  margin-bottom: 40px;
}

.intro-text p, .disclaimer-block p {
  font-size: 19px;
  line-height: 2;
}

/* Steps */
.steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.step {
  padding: 30px;
  background: #fff;
  border-left: 4px solid #4DB6AC;
  box-shadow: 0 4px 15px rgba(38, 166, 154, 0.1);
  transition: all 0.3s ease;
  animation: slideInUp 0.6s ease-out backwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }
.step:nth-child(5) { animation-delay: 0.5s; }
.step:nth-child(6) { animation-delay: 0.6s; }
.step:nth-child(7) { animation-delay: 0.7s; }

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

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(38, 166, 154, 0.2);
  border-left-color: #00897B;
}

.step h3 {
  margin-bottom: 10px;
}

/* Two column layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

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

.two-column.reverse > div:first-child {
  order: 2;
}

.two-column.reverse > div:last-child {
  order: 1;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Table */
.components-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 4px 15px rgba(38, 166, 154, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.components-table th {
  background: linear-gradient(135deg, #26A69A, #00897B);
  color: #fff;
  padding: 20px;
  text-align: left;
  font-weight: 700;
  font-family: 'Lora', serif;
  font-size: 18px;
}

.components-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #B2DFDB;
}

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

.components-table tr:nth-child(even) {
  background-color: #F0F4F8;
}

.components-table tr:hover {
  background-color: #E0F2F1;
}

/* Cards */
.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(38, 166, 154, 0.1);
  transition: all 0.4s ease;
  animation: fadeIn 0.6s ease-out backwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

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

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(38, 166, 154, 0.2);
}

.card:hover .card-image {
  transform: scale(1.05);
  filter: blur(1px);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  margin-bottom: 15px;
  color: #26A69A;
}

.card-content p {
  font-size: 16px;
  color: #555;
}

/* Checklist */
.checklist {
  display: grid;
  gap: 15px;
}

.checklist-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.checklist-item:hover {
  box-shadow: 0 4px 12px rgba(38, 166, 154, 0.15);
  transform: translateX(5px);
}

.checklist-item::before {
  content: '✓';
  color: #26A69A;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.checklist-item p {
  margin: 0;
}

/* FAQ */
.faq-container {
  display: grid;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(38, 166, 154, 0.05), rgba(77, 182, 172, 0.05));
  border-bottom: 2px solid #B2DFDB;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(38, 166, 154, 0.1), rgba(77, 182, 172, 0.1));
}

.faq-question h3 {
  margin: 0;
  color: #26A69A;
  font-size: 20px;
}

.faq-toggle {
  color: #26A69A;
  font-weight: 700;
  font-size: 24px;
  transition: transform 0.3s ease;
  user-select: none;
}

.faq-toggle.open {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 20px;
  display: none;
  background: #f8f9fa;
}

.faq-answer.open {
  display: block;
  animation: slideDown 0.3s ease-out;
}

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

/* Quotes */
.quotes-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.quotes-content {
  display: grid;
  gap: 30px;
}

.quote {
  padding: 25px;
  border-left: 4px solid #26A69A;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-style: italic;
  color: #555;
}

.quote-author {
  font-weight: 700;
  color: #26A69A;
  margin-top: 10px;
  font-style: normal;
}

.quotes-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.form-container {
  display: grid;
  gap: 20px;
}

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

.form-group label {
  font-weight: 600;
  color: #26A69A;
}

.form-group input, .form-group textarea {
  padding: 12px;
  border: 2px solid #B2DFDB;
  border-radius: 4px;
  font-family: 'Source Serif Pro', serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #26A69A;
  box-shadow: 0 0 0 3px rgba(38, 166, 154, 0.1);
}

.form-disclaimer {
  padding: 15px;
  background: rgba(38, 166, 154, 0.05);
  border-left: 4px solid #26A69A;
  border-radius: 4px;
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.btn {
  padding: 14px 30px;
  background: linear-gradient(135deg, #26A69A, #00897B);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Source Serif Pro', serif;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(38, 166, 154, 0.3);
}

.btn:active {
  transform: translateY(0);
}

.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(38, 166, 154, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(38, 166, 154, 0);
  }
}

/* Footer */
footer {
  background: linear-gradient(135deg, #26A69A, #00897B);
  color: #fff;
  padding: 60px 20px;
  margin-top: 80px;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 15px;
  font-family: 'Lora', serif;
  font-size: 18px;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #E0F2F1;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
}

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

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

.modal-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideInModal 0.3s ease-out;
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  font-weight: 700;
  color: #26A69A;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #00897B;
}

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

.modal-content p {
  margin-bottom: 15px;
}

.modal-content ul, .modal-content ol {
  margin: 15px 0;
  padding-left: 20px;
}

.modal-content li {
  margin-bottom: 10px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #26A69A, #00897B);
  color: #fff;
  padding: 20px;
  z-index: 999;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Source Serif Pro', serif;
}

.cookie-btn.accept {
  background: #fff;
  color: #26A69A;
}

.cookie-btn.accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-btn.decline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

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

.cookie-btn.info {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

/* Thank you message */
.thank-you-message {
  position: fixed;
  top: 100px;
  right: 20px;
  background: #26A69A;
  color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 2500;
  display: none;
  animation: slideInRight 0.4s ease-out;
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  .header-container {
    flex-direction: column;
    gap: 20px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .hero-content h1 {
    font-size: 56px;
  }

  section {
    padding: 80px 20px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .two-column.reverse > div:first-child {
    order: unset;
  }

  .two-column.reverse > div:last-child {
    order: unset;
  }

  .cards-container {
    grid-template-columns: 1fr;
  }

  .quotes-container {
    grid-template-columns: 1fr;
  }

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

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

  .cookie-banner.show {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .thank-you-message {
    top: auto;
    bottom: 20px;
    right: auto;
    left: 20px;
    right: 20px;
  }
}
