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

:root {
  --deep-ocean-blue: #1A3A5A;
  --soft-sage-green: #7D9A8A;
  --warm-sandstone: #C8B39B;
  --subtle-grey: #E0E0E0;
  --white: #FFFFFF;
  --black: #000000;
  --text-dark: #2C2C2C;
  --bg-light: #F8F8F7;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--deep-ocean-blue);
  margin: 0;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 1.2rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

h4 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

p {
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

li {
  margin-bottom: 0.8rem;
}

a {
  color: var(--deep-ocean-blue);
  text-decoration: none;
  transition: color 0.3s ease-out;
}

a:hover {
  color: var(--soft-sage-green);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  background-color: var(--white);
  border-bottom: 1px solid var(--subtle-grey);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep-ocean-blue);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: color 0.3s ease-out;
}

.logo:hover {
  color: var(--soft-sage-green);
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--deep-ocean-blue);
  font-weight: 500;
  transition: color 0.3s ease-out, border-bottom 0.3s ease-out;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--soft-sage-green);
  border-bottom: 2px solid var(--soft-sage-green);
}

main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 4rem 2rem;
}

.hero-section {
  background-color: var(--white);
  padding: 6rem 2rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.grid-2.reverse {
  direction: rtl;
}

.grid-2.reverse > * {
  direction: ltr;
}

.content-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-block {
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.highlight-box {
  background-color: var(--subtle-grey);
  padding: 2rem;
  border-left: 5px solid var(--soft-sage-green);
  margin: 2rem 0;
}

.highlight-box p {
  margin-bottom: 0.5rem;
}

.highlight-box:last-child {
  margin-bottom: 0;
}

.accent-section {
  background-color: var(--soft-sage-green);
  color: var(--white);
  padding: 3rem 2rem;
}

.accent-section h2 {
  color: var(--white);
}

.accent-section p {
  color: var(--white);
}

.warm-section {
  background-color: var(--warm-sandstone);
  color: var(--white);
  padding: 3rem 2rem;
}

.warm-section h2 {
  color: var(--white);
}

.warm-section p {
  color: var(--white);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--deep-ocean-blue);
  color: var(--white);
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s ease-out, box-shadow 0.3s ease-out;
  margin-top: 1rem;
}

.cta-button:hover {
  background-color: var(--soft-sage-green);
  box-shadow: 0 8px 20px rgba(125, 154, 138, 0.3);
}

.cta-button-outline {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: transparent;
  color: var(--deep-ocean-blue);
  border: 2px solid var(--deep-ocean-blue);
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease-out;
}

.cta-button-outline:hover {
  background-color: var(--deep-ocean-blue);
  color: var(--white);
}

footer {
  background-color: var(--deep-ocean-blue);
  color: var(--white);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1.2rem;
}

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

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--subtle-grey);
  transition: color 0.3s ease-out;
}

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

.footer-section p {
  color: var(--subtle-grey);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-bottom {
  max-width: 1440px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: var(--subtle-grey);
}

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

.blog-card {
  background-color: var(--white);
  border: 1px solid var(--subtle-grey);
  overflow: hidden;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  cursor: pointer;
}

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

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

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

.blog-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.blog-card-meta {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

.blog-card-excerpt {
  color: #555;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.blog-card a {
  display: inline-block;
  color: var(--deep-ocean-blue);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease-out;
}

.blog-card a:hover {
  color: var(--soft-sage-green);
}

.article-header {
  margin-bottom: 3rem;
  text-align: center;
}

.article-meta {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.article-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.9;
}

.article-content img {
  width: 100%;
  height: auto;
  margin: 2rem 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--deep-ocean-blue);
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--soft-sage-green);
  box-shadow: 0 0 0 3px rgba(125, 154, 138, 0.1);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--deep-ocean-blue);
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-message {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

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

.cookie-accept {
  background-color: var(--soft-sage-green);
  color: var(--white);
}

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

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

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

.cookie-learn {
  background-color: transparent;
  color: var(--white);
  text-decoration: underline;
  border: none;
}

.cookie-learn:hover {
  text-decoration: none;
}

.disclaimer-box {
  background-color: var(--bg-light);
  border: 2px solid var(--subtle-grey);
  padding: 2rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.thank-you-container {
  text-align: center;
  padding: 6rem 2rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.thank-you-container h1 {
  margin-bottom: 1rem;
}

.thank-you-container p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  nav {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .hero-content,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-image,
  .image-block {
    height: 300px;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }

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

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

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  nav {
    padding: 1rem 1.5rem;
  }

  main {
    padding: 0 1rem;
  }

  .section {
    padding: 2rem 0;
  }

  p {
    line-height: 1.7;
  }

  .cta-button,
  .cta-button-outline {
    display: block;
    text-align: center;
    width: 100%;
  }
}
