:root {
  --color-primary: #4B5E77;
  --color-accent-mint: #A2D2C2;
  --color-accent-amber: #E8B923;
  --color-linen: #FAF8F2;
  --color-white: #FFFFFF;
  --color-dark: #2C3E50;
}

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

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-primary);
  background-color: var(--color-linen);
}

body {
  line-height: 1.78;
  font-size: 18px;
}

h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 54px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  color: var(--color-primary);
}

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

h2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 25px;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 15px;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

p {
  margin-bottom: 20px;
  line-height: 1.78;
}

em {
  color: var(--color-accent-mint);
  font-style: italic;
}

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

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

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

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(162, 210, 194, 0.2);
  z-index: 1000;
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(75, 94, 119, 0.05);
}

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

@media (max-width: 768px) {
  .header-content {
    padding: 0 20px;
  }
}

.logo {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.logo:hover {
  color: var(--color-accent-mint);
}

nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  nav {
    gap: 20px;
  }
}

nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

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

main {
  padding-top: 80px;
}

section {
  padding: 180px 0;
}

@media (max-width: 768px) {
  section {
    padding: 100px 0;
  }
}

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

@media (max-width: 768px) {
  .section-hero {
    height: 400px;
  }
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(75, 94, 119, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 20px;
}

.hero-subheading {
  font-size: 24px;
  line-height: 1.4;
  color: var(--color-linen);
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .hero-subheading {
    font-size: 18px;
  }
}

.text-section {
  max-width: 900px;
  margin: 0 auto;
}

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

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

.image-section {
  max-width: 100%;
}

.image-section img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 8px;
}

.accent-bg {
  background: linear-gradient(135deg, #4B5E77 0%, #FAF8F2 100%);
  padding: 80px 0;
}

@media (max-width: 768px) {
  .accent-bg {
    padding: 60px 0;
  }
}

.accent-bg h2,
.accent-bg h3 {
  color: var(--color-white);
}

.accent-bg p {
  color: rgba(255, 255, 255, 0.95);
}

.list-items {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.list-items li {
  padding: 12px 0 12px 30px;
  position: relative;
  line-height: 1.78;
}

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

.disclaimer-block {
  background-color: rgba(232, 185, 35, 0.08);
  padding: 30px;
  border-left: 4px solid var(--color-accent-amber);
  margin: 40px 0;
  border-radius: 4px;
}

.disclaimer-block p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-primary);
}

.cta-button {
  display: inline-block;
  border: 2px solid var(--color-primary);
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background: transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background-color: var(--color-accent-mint);
  border-color: var(--color-accent-mint);
  color: var(--color-white);
}

.section-center {
  text-align: center;
}

.accordion {
  margin-top: 40px;
}

.accordion-item {
  border: 1px solid rgba(75, 94, 119, 0.15);
  margin-bottom: 0;
  border-radius: 4px;
}

.accordion-header {
  background-color: var(--color-white);
  padding: 20px 30px;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-primary);
  border: none;
  width: 100%;
  text-align: left;
  font-size: 18px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background-color: rgba(162, 210, 194, 0.1);
}

.accordion-header.active {
  background-color: rgba(162, 210, 194, 0.2);
  color: var(--color-accent-mint);
}

.accordion-header:after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
}

.accordion-header.active:after {
  content: '−';
}

.accordion-content {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.active {
  max-height: 500px;
  padding: 20px 30px 30px 30px;
}

.accordion-content p {
  margin-bottom: 15px;
  line-height: 1.78;
}

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

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(75, 94, 119, 0.08);
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

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

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

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(75, 94, 119, 0.15);
}

.blog-card:hover .blog-card-title {
  color: var(--color-accent-mint);
}

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

.blog-card-content {
  padding: 30px;
}

.blog-card-date {
  font-size: 14px;
  color: var(--color-accent-amber);
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 15px;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 16px;
  color: var(--color-primary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-card-link {
  color: var(--color-accent-mint);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card-link:hover {
  color: var(--color-primary);
}

footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 60px 0 40px 0;
  margin-top: 100px;
}

.footer-content {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .footer-content {
    padding: 0 20px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-section h3 {
  color: var(--color-accent-mint);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

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

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-contact-info {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-disclaimer {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.hero-message {
  background-color: rgba(162, 210, 194, 0.15);
  padding: 20px;
  border-radius: 4px;
  font-size: 16px;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 500;
}

.contact-form {
  max-width: 600px;
  margin: 50px auto;
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(75, 94, 119, 0.08);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(75, 94, 119, 0.2);
  border-radius: 4px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  color: var(--color-primary);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent-mint);
  box-shadow: 0 0 0 3px rgba(162, 210, 194, 0.1);
}

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

.form-disclaimer {
  background-color: rgba(232, 185, 35, 0.08);
  padding: 20px;
  border-left: 4px solid var(--color-accent-amber);
  margin-bottom: 25px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-primary);
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
  }
}

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

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

@media (max-width: 768px) {
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.cookie-btn-accept:hover {
  background-color: rgba(162, 210, 194, 0.8);
}

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

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

.cookie-link {
  color: var(--color-accent-mint);
  text-decoration: underline;
  cursor: pointer;
}

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

.thank-you-container h1 {
  margin-bottom: 20px;
}

.thank-you-container p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
}

.fade-in {
  animation: fadeIn 0.6s ease;
}

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

.scroll-fade-in {
  opacity: 0;
  animation: scrollFadeIn 0.8s ease forwards;
}

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

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

.blog-article-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-article-meta {
  color: var(--color-accent-amber);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-article-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .blog-article-title {
    font-size: 32px;
  }
}

.blog-article-featured-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin: 50px 0;
}

.blog-article-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.blog-article-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.back-link {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--color-accent-mint);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.back-link:hover {
  color: var(--color-primary);
}
