:root {
  --primary: #2B6777;
  --accent1: #61A191;
  --accent2: #F3C75B;
  --accent3: #D4E4E6;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --border-light: #e5e7eb;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Lato', 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

h1 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

h2 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text-dark);
}

h3 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text-dark);
}

p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

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

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

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Main content */
main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

/* Section styles */
section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 80px;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(43, 103, 119, 0.4) 0%, rgba(97, 161, 145, 0.3) 100%);
  z-index: 2;
}

.section-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.section-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--bg-white);
  max-width: 900px;
}

.section-hero h1 {
  color: var(--bg-white);
  font-size: 56px;
  margin-bottom: 20px;
}

.section-hero p {
  color: var(--bg-white);
  font-size: 20px;
}

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

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

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

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.card {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

/* Content blocks */
.content-block {
  margin-bottom: 40px;
  padding: 40px 0;
}

.content-block h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

/* Bullet list */
.bullet-list {
  list-style: none;
  margin: 20px 0;
}

.bullet-list li {
  margin-bottom: 16px;
  padding-left: 30px;
  position: relative;
  color: var(--text-light);
  line-height: 1.8;
}

.bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent1);
  font-weight: bold;
}

/* Horizontal scrollable tiles */
.tiles-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
}

.tile {
  flex: 0 0 280px;
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tile-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.blog-snippet {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
}

.blog-snippet h3 {
  margin-bottom: 12px;
}

.blog-snippet p {
  margin-bottom: 20px;
  font-size: 16px;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background-color: var(--primary);
  color: var(--bg-white);
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
}

.cta-button:hover {
  background-color: var(--accent1);
  color: var(--bg-white);
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent1);
}

.faq-answer {
  display: none;
  margin-top: 16px;
  padding: 16px 0;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-answer.active {
  display: block;
}

.faq-toggle {
  font-size: 20px;
  transition: transform 0.3s ease;
}

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

/* Footer */
footer {
  background-color: var(--bg-light);
  padding: 60px 40px;
  border-top: 1px solid var(--border-light);
  margin-top: 60px;
}

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

.footer-section h3 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--primary);
}

.footer-section p, .footer-section a, .footer-section li {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-section a {
  display: inline;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 20px 40px;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 16px;
}

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

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

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

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background-color: var(--accent1);
  color: var(--bg-white);
}

.cookie-accept:hover {
  background-color: #519173;
}

.cookie-decline {
  background-color: transparent;
  color: var(--bg-white);
  border: 1px solid var(--bg-white);
}

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

.cookie-learn {
  background-color: transparent;
  color: var(--bg-white);
  border: 1px solid var(--bg-white);
}

.cookie-learn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 40px 0;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-disclaimer {
  background-color: var(--accent3);
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  body {
    font-size: 16px;
  }

  section {
    padding: 60px 20px;
  }

  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    gap: 20px;
    font-size: 14px;
  }

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

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

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

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .section-hero {
    height: 400px;
  }

  .section-hero h1 {
    font-size: 32px;
  }

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

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

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}

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

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  section {
    padding: 40px 16px;
  }

  .navbar {
    padding: 0 16px;
  }

  .nav-links {
    gap: 12px;
    font-size: 12px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tiles-container {
    gap: 12px;
  }

  .tile {
    flex: 0 0 200px;
  }

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

  .section-hero h1 {
    font-size: 24px;
  }

  .section-hero p {
    font-size: 16px;
  }
}
