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

:root {
  --primary-teal: #1a5f6b;
  --dark-teal: #0f3d42;
  --light-teal: #2a7a83;
  --accent-gold: #c9a961;
  --accent-coral: #d9a39a;
  --cream-white: #f5f1ed;
  --text-dark: #2c2c2c;
  --text-light: #666666;
  --border-light: #e0dcd8;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

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

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

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

h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

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

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

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

header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

main {
  margin-top: 80px;
  padding: 0;
}

section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-wide {
  width: 100%;
  padding: 4rem 2rem;
  margin-left: 0;
  margin-right: 0;
}

.section-fullbg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.section-fullbg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.section-fullbg > * {
  position: relative;
  z-index: 2;
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-white) 0%, rgba(42, 122, 131, 0.1) 100%);
  text-align: center;
}

.hero-content {
  max-width: 900px;
  z-index: 2;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  z-index: 0;
}

.section-title {
  color: var(--primary-teal);
  margin-top: 0;
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

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

.column-text {
  padding: 2rem;
}

.column-image {
  overflow: hidden;
  border-radius: 8px;
}

.column-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.column-image:hover img {
  transform: scale(1.02);
}

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

.card {
  background: var(--cream-white);
  border: 2px solid var(--border-light);
  padding: 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 8px 20px rgba(26, 95, 107, 0.1);
  transform: translateY(-4px);
}

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

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

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.icon-item {
  padding: 2rem;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--border-light);
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  margin-left: 0;
  margin-right: 51%;
  text-align: right;
  padding-right: 2rem;
}

.timeline-item:nth-child(even) {
  margin-left: 51%;
  margin-right: 0;
  text-align: left;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--primary-teal);
  border: 4px solid #ffffff;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.timeline-content {
  background: var(--cream-white);
  padding: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid var(--accent-gold);
}

.timeline-content h3 {
  margin-top: 0;
  color: var(--primary-teal);
}

button, .btn {
  background-color: var(--primary-teal);
  color: #ffffff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

button:hover, .btn:hover {
  background-color: var(--light-teal);
  box-shadow: 0 4px 12px rgba(26, 95, 107, 0.2);
  transform: translateY(-2px);
}

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

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

.btn-secondary:hover {
  background-color: var(--primary-teal);
  color: #ffffff;
}

form {
  max-width: 600px;
  margin: 2rem auto;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px rgba(26, 95, 107, 0.1);
}

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

.disclaimer {
  background-color: var(--cream-white);
  border-left: 4px solid var(--accent-coral);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.disclaimer strong {
  color: var(--text-dark);
}

footer {
  background-color: var(--dark-teal);
  color: var(--cream-white);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.footer-section p {
  margin-bottom: 0.8rem;
  color: var(--cream-white);
  font-size: 0.95rem;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 97, 0.3);
  padding-top: 2rem;
  text-align: center;
  color: var(--cream-white);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-teal);
  color: var(--cream-white);
  padding: 1.5rem 2rem;
  z-index: 2000;
  display: none;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

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

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

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

.cookie-btn-accept {
  background-color: var(--accent-gold);
  color: var(--text-dark);
}

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

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

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

.cookie-btn-learn {
  background-color: transparent;
  color: var(--accent-gold);
  border: none;
  text-decoration: underline;
  padding: 0.6rem;
}

.cookie-btn-learn:hover {
  color: var(--cream-white);
}

.breadcrumb {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--primary-teal);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

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

.list-styled li {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
  color: var(--text-light);
}

.list-styled li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.blog-card {
  background: var(--cream-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 8px 20px rgba(26, 95, 107, 0.15);
  transform: translateY(-4px);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  color: var(--primary-teal);
}

.blog-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.blog-card .btn {
  display: inline-block;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
}

.image-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.section-alternate {
  background-color: var(--cream-white);
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

ul li, ol li {
  margin-bottom: 0.6rem;
  line-height: 1.8;
}

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    font-size: 0.9rem;
  }

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

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

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

  .timeline::before {
    left: 0;
    transform: translateX(-2px);
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
    padding-left: 3rem;
    text-align: left;
  }

  .timeline-item::before {
    left: 0;
    transform: translateX(-8px);
  }

  .timeline-content {
    border-left: 4px solid var(--accent-gold);
  }

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  .hero {
    min-height: 400px;
  }

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

  main {
    margin-top: 120px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  section {
    padding: 2rem 1rem;
  }

  nav ul {
    gap: 0.5rem;
    font-size: 0.85rem;
  }

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

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

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

  main {
    margin-top: 100px;
  }
}
