:root {
  --primary: #34495E;
  --secondary: #7F8C8D;
  --accent-mint: #A2C2B1;
  --accent-sand: #D1B892;
  --light-bg: #F8F8F8;
  --dark-text: #555555;
  --white: #FFFFFF;
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

header {
  background-color: var(--primary);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

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

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

nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

nav a:hover,
nav a.active {
  color: var(--accent-mint);
  border-bottom-color: var(--accent-mint);
}

footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 80px 40px;
  margin-top: 120px;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--accent-mint);
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
  color: var(--accent-mint);
  text-decoration: none;
  transition: color 0.2s;
}

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

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

.footer-bottom .disclaimer {
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--accent-mint);
}

h1 {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: var(--primary);
}

h2 {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 25px;
  color: var(--primary);
  margin-top: 40px;
}

h3 {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 18px;
  color: var(--primary);
}

p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-text);
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 18px;
}

li {
  margin-bottom: 12px;
  color: var(--dark-text);
}

a {
  color: var(--accent-mint);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--secondary);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../public/images/img1.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 160px 40px;
  text-align: left;
  display: flex;
  align-items: flex-end;
  min-height: 600px;
}

.hero-content h1 {
  color: var(--white);
  font-size: 56px;
  max-width: 600px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 600px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

section {
  padding: 100px 40px;
}

.section-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.section-two-col.reverse {
  direction: rtl;
}

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

.section-text {
  max-width: 600px;
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.card {
  background: var(--light-bg);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  transition: box-shadow 0.2s;
  border-left: 4px solid var(--accent-mint);
}

.card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.card h3 {
  color: var(--primary);
  margin-top: 0;
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.highlight-box {
  background-color: var(--accent-sand);
  padding: 40px;
  border-radius: var(--border-radius);
  border-left: 6px solid var(--accent-mint);
  margin: 40px 0;
}

.highlight-box p {
  color: var(--primary);
  font-style: italic;
  margin: 0;
  font-size: 18px;
}

.list-styled {
  list-style: none;
  margin-left: 0;
}

.list-styled li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
}

.list-styled li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-mint);
  font-weight: bold;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--accent-mint);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: all 0.2s;
  font-weight: 600;
  border: 2px solid var(--accent-mint);
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}

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

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

.btn.secondary:hover {
  background-color: var(--accent-mint);
  color: var(--white);
}

.disclaimer-block {
  background-color: var(--light-bg);
  border: 1px solid var(--secondary);
  border-radius: var(--border-radius);
  padding: 30px;
  margin: 40px 0;
}

.disclaimer-block h3 {
  color: var(--primary);
  margin-top: 0;
  font-size: 18px;
}

.disclaimer-block p {
  font-size: 14px;
  color: var(--secondary);
  line-height: 1.7;
}

form {
  max-width: 600px;
  margin: 40px 0;
}

.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 14px;
}

input[type="email"],
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--secondary);
  border-radius: var(--border-radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--dark-text);
  transition: border-color 0.2s;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-mint);
  box-shadow: 0 0 0 3px rgba(162, 194, 177, 0.1);
}

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

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  margin-top: 0;
}

.section-heading p {
  font-size: 18px;
  color: var(--secondary);
  max-width: 600px;
  margin: 20px auto 0;
}

.timeline {
  position: relative;
  max-width: 800px;
}

.timeline-item {
  padding-left: 50px;
  padding-bottom: 40px;
  position: relative;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: var(--accent-mint);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent-mint);
}

.timeline-item:after {
  content: '';
  position: absolute;
  left: 8px;
  top: 20px;
  bottom: -40px;
  width: 4px;
  background-color: var(--secondary);
}

.timeline-item:last-child:after {
  display: none;
}

.timeline-item h3 {
  margin-top: 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background-color: var(--light-bg);
}

.comparison-table th {
  background-color: var(--primary);
  color: var(--white);
  padding: 16px;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--secondary);
}

.comparison-table tr:hover {
  background-color: rgba(162, 194, 177, 0.1);
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--secondary), transparent);
  margin: 80px 0;
}

.section-label {
  display: inline-block;
  background-color: var(--accent-mint);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 24px 40px;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  margin-right: 30px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  white-space: nowrap;
}

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s;
  font-family: 'Open Sans', sans-serif;
}

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

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

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

.cookie-buttons .btn-reject:hover {
  background-color: var(--white);
  color: var(--primary);
}

.cookie-buttons .btn-more {
  background-color: transparent;
  color: var(--accent-mint);
  border: 1px solid var(--accent-mint);
  text-decoration: none;
}

.cookie-buttons .btn-more:hover {
  background-color: var(--accent-mint);
  color: var(--primary);
}

.thank-you-section {
  text-align: center;
  padding: 120px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.thank-you-section h1 {
  font-size: 52px;
  margin-bottom: 20px;
}

.thank-you-section p {
  font-size: 18px;
  color: var(--secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-icon {
  font-size: 72px;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .section-two-col {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

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

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  nav ul {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .header-content {
    padding: 16px 20px;
    flex-direction: column;
    gap: 16px;
  }

  .logo {
    font-size: 24px;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    text-align: center;
  }

  nav a {
    display: block;
    padding: 12px 0;
  }

  section {
    padding: 60px 20px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-section {
    padding: 100px 20px;
    min-height: 400px;
  }

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

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

  .container {
    padding: 0 20px;
  }

  .container-wide {
    padding: 0 20px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cookie-text {
    margin-right: 0;
  }

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

  footer {
    padding: 60px 20px;
  }

  .footer-content {
    gap: 30px;
  }

  .section-two-col {
    padding: 0;
  }
}

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

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 15px;
  }

  section {
    padding: 40px 16px;
  }

  .hero-section {
    padding: 60px 16px;
    min-height: 300px;
  }

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

  nav ul {
    gap: 8px;
  }

  nav a {
    font-size: 13px;
  }
}
