:root {
  --terracotta-primary: #d4735e;
  --terracotta-dark: #b85a45;
  --terracotta-light: #e8a394;
  --terracotta-pale: #f5ddd7;
  --olive-primary: #6b7f5c;
  --olive-dark: #4f5e43;
  --olive-light: #9baa8c;
  --olive-pale: #e8ede4;
  --cream-base: #f9f6f1;
  --cream-white: #fffcf7;
  --warm-gray: #8b8378;
  --charcoal: #3a3530;
  --gold-accent: #c9a961;
  --gold-light: #e5d4a3;
  --gold-dark: #a68b4a;
}

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

body {
  font-family: "Nunito", "Rounded Mplus", "Arial Rounded MT Bold", sans-serif;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--charcoal);
  background-color: var(--cream-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--terracotta-primary);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--olive-primary);
  margin-bottom: 1rem;
}

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

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

a:hover {
  color: var(--terracotta-dark);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--terracotta-primary) 0%,
    var(--terracotta-dark) 100%
  );
  color: var(--cream-white);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 1.0625rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 12px rgba(212, 115, 94, 0.25);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 115, 94, 0.35);
  background: linear-gradient(
    135deg,
    var(--terracotta-primary) 0%,
    var(--terracotta-dark) 100%
  );
  color: var(--cream-white);
}

.btn-secondary {
  background: transparent;
  color: var(--olive-primary);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  border: 2px solid var(--olive-primary);
  font-size: 1.0625rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--olive-primary);
  color: var(--cream-white);
  transform: translateY(-2px);
}

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  #cookie-consent-popup > div {
    padding: 1.5rem 1rem !important;
  }

  #cookie-consent-popup h4 {
    font-size: 1.25rem !important;
  }

  #cookie-consent-popup p {
    font-size: 0.9375rem !important;
  }

  #cookie-consent-popup button {
    width: 100%;
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
  }

  #cookie-consent-popup > div > div:first-child {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #cookie-consent-popup > div > div:last-child {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 576px) {
  #cookie-consent-popup > div > div:first-child > div:first-child {
    width: 40px;
    height: 40px;
  }

  #cookie-consent-popup > div > div:first-child > div:first-child i {
    font-size: 1rem;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Nunito:wght@400;500;600;700&display=swap");

.navbar-toggler:focus {
  outline: 3px solid #d4735e;
  outline-offset: 2px;
  box-shadow: none;
}

.nav-link:hover {
  color: #d4735e !important;
}

.nav-link:focus {
  outline: 3px solid #d4735e;
  outline-offset: 2px;
  border-radius: 4px;
}

.nav-link.active {
  color: #d4735e !important;
  font-weight: 600 !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    box-shadow: 0 4px 20px rgba(58, 53, 48, 0.15);
    padding: 1.5rem;
    margin-top: 1rem;
  }

  .navbar-nav {
    gap: 0 !important;
  }

  .nav-item {
    margin: 0.25rem 0;
  }
}

@media (min-width: 992px) {
  .navbar-collapse {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 1.5rem !important;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem !important;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 3rem !important;
  }
}

/* Universal Image Constraints */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 1 !important;
  visibility: visible !important;
}

/* Team/People Images */
.team-image,
.author-image,
.profile-image {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin: 10px auto;
}

/* Image Galleries */
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0;
}

.image-gallery img {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 250px;
  max-width: 100%;
}

/* Image Containers */
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 2rem 0;
}

.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Responsive Images */
@media (max-width: 768px) {
  .team-image,
  .author-image,
  .profile-image {
    width: 120px;
    height: 120px;
  }

  .image-gallery img {
    flex: 1 1 100%;
    min-width: 100%;
  }

  img {
    margin: 1rem auto;
  }
}

/* Typography */
body {
  font-family: "Nunito", "Rounded Mplus", "Arial Rounded MT Bold", sans-serif;
  color: #3a3530;
  background-color: #f9f6f1;
  line-height: 1.75;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #3a3530;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #d4735e;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  color: #6b7f5c;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  color: #3a3530;
  margin-bottom: 0.875rem;
}

p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75;
  color: #3a3530;
  margin-bottom: 1.25rem;
}

.lead-text {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.7;
  color: #4f5e43;
  margin-bottom: 1.5rem;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f9f6f1 0%, #e8ede4 50%, #f5ddd7 100%);
  padding: 5rem 0;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(201, 169, 97, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* Content Sections */
.content-section {
  padding: 5rem 0;
  background: #fffcf7;
}

.content-section:nth-child(even) {
  background: #f9f6f1;
}

/* Cards */
.about-card {
  background: #fffcf7;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(58, 53, 48, 0.08);
  border: 1px solid rgba(139, 131, 120, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(58, 53, 48, 0.12);
}

.featured-card {
  background: linear-gradient(135deg, #fffcf7 0%, #f5ddd7 100%);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(212, 115, 94, 0.15);
  border-top: 4px solid #c9a961;
  margin-bottom: 2rem;
}

/* Team Section */
.team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 3rem 0;
}

.team-member {
  text-align: center;
  flex: 1 1 calc(33.333% - 2rem);
  min-width: 250px;
  max-width: 350px;
}

.team-member h4 {
  color: #d4735e;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.team-member .role {
  color: #6b7f5c;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Values/Mission Icons */
.icon-container {
  background: linear-gradient(135deg, #e8a394 0%, #d4735e 100%);
  border-radius: 50%;
  padding: 1rem;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(212, 115, 94, 0.2);
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.icon-container:hover {
  transform: scale(1.1) rotate(5deg);
}

.icon-container i {
  color: #fffcf7;
  font-size: 1.75rem;
}

/* Blockquote */
blockquote {
  border-left: 4px solid #c9a961;
  padding-left: 2rem;
  font-size: 1.25rem;
  font-style: italic;
  color: #4f5e43;
  background: linear-gradient(
    90deg,
    rgba(201, 169, 97, 0.05) 0%,
    transparent 100%
  );
  padding: 1.5rem 2rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}

/* Dividers */
.accent-divider {
  border-top: 2px solid #c9a961;
  width: 60px;
  margin: 2rem auto;
}

/* Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, #d4735e 0%, #b85a45 100%);
  color: #fffcf7;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 1.0625rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 12px rgba(212, 115, 94, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 115, 94, 0.35);
  color: #fffcf7;
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  p,
  .lead-text {
    font-size: 1rem;
  }

  .hero-section,
  .content-section {
    padding: 3rem 0;
  }

  .team-member {
    flex: 1 1 100%;
  }
}

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

@keyframes scaleIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

#newsletter-email::placeholder {
  color: rgba(232, 237, 228, 0.6);
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 0 0;
  }
  footer .container {
    padding: 0 1.5rem;
  }
}
.contacts {
  .social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 115, 94, 0.35);
  }

  .icon-container {
    margin: 0;
  }

  a[href^="tel:"]:hover,
  a[href^="mailto:"]:hover {
    color: #b85a45;
  }

  .form-control:focus {
    border-color: #d4735e;
    box-shadow: 0 0 0 3px rgba(212, 115, 94, 0.1);
    outline: none;
  }

  .form-check-input:checked {
    background-color: #d4735e;
    border-color: #d4735e;
  }

  .form-check-input:focus {
    border-color: #d4735e;
    box-shadow: 0 0 0 3px rgba(212, 115, 94, 0.1);
    outline: none;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 115, 94, 0.35);
  }

  .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(212, 115, 94, 0.3);
  }

  .btn-primary:focus {
    outline: 3px solid #d4735e;
    outline-offset: 2px;
  }

  .invalid-feedback {
    display: none;
  }

  .was-validated .form-control:invalid ~ .invalid-feedback,
  .was-validated .form-check-input:invalid ~ .invalid-feedback {
    display: block;
  }

  .was-validated .form-control:invalid {
    border-color: #d4735e;
  }

  .was-validated .form-check-input:invalid {
    border-color: #d4735e;
  }

  @media (max-width: 767px) {
    h2 {
      font-size: 2rem !important;
    }

    h3 {
      font-size: 1.5rem !important;
    }

    h4 {
      font-size: 1.25rem !important;
    }

    .lead {
      font-size: 1.125rem !important;
    }

    p {
      font-size: 1rem !important;
    }

    .icon-container {
      width: 48px !important;
      height: 48px !important;
    }

    .icon-container i {
      font-size: 1.25rem !important;
    }

    .contact-info-card {
      padding: 1.5rem !important;
    }
  }
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(58, 53, 48, 0.12);
}

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

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 115, 94, 0.35);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(212, 115, 94, 0.3);
}
.post-4 {
  h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #3a3530;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #d4735e;
    margin-bottom: 1.25rem;
  }

  h3 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    color: #6b7f5c;
    margin-bottom: 1rem;
  }

  h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    color: #3a3530;
    margin-bottom: 0.875rem;
  }

  p {
    margin-bottom: 1.25rem;
  }

  .article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
  }

  .article-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(139, 131, 120, 0.2);
  }

  .article-meta {
    font-size: 0.9375rem;
    color: #8b8378;
    margin-bottom: 1.5rem;
  }

  .article-meta i {
    color: #c9a961;
    margin-right: 0.5rem;
  }

  .lead-text {
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.7;
    color: #4f5e43;
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(
      90deg,
      rgba(201, 169, 97, 0.05) 0%,
      transparent 100%
    );
    border-left: 4px solid #c9a961;
    border-radius: 0 8px 8px 0;
  }

  .article-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(58, 53, 48, 0.1);
    margin: 2.5rem 0;
    display: block;
    opacity: 1;
  }

  .content-section {
    margin-bottom: 4rem;
  }

  .highlight-box {
    background: linear-gradient(135deg, #fffcf7 0%, #f5ddd7 100%);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(212, 115, 94, 0.15);
    border-top: 4px solid #c9a961;
    margin: 2.5rem 0;
  }

  .step-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
  }

  .step-list li {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: #fffcf7;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(58, 53, 48, 0.08);
    border-left: 4px solid #d4735e;
    position: relative;
    padding-left: 4rem;
  }

  .step-list li::before {
    content: attr(data-step);
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #e8a394 0%, #d4735e 100%);
    color: #fffcf7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(212, 115, 94, 0.3);
  }

  .step-list h4 {
    color: #d4735e;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
  }

  .tip-box {
    background: #e8ede4;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #6b7f5c;
  }

  .tip-box h4 {
    color: #6b7f5c;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
  }

  .tip-box h4 i {
    margin-right: 0.75rem;
    color: #c9a961;
  }

  blockquote {
    border-left: 4px solid #c9a961;
    padding-left: 2rem;
    font-size: 1.25rem;
    font-style: italic;
    color: #4f5e43;
    background: linear-gradient(
      90deg,
      rgba(201, 169, 97, 0.05) 0%,
      transparent 100%
    );
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
    margin: 2.5rem 0;
    position: relative;
  }

  blockquote::before {
    content: '"';
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    font-size: 4rem;
    color: #e8a394;
    opacity: 0.3;
    font-family: "Playfair Display", serif;
    line-height: 1;
  }

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

  .benefit-card {
    background: #fffcf7;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(58, 53, 48, 0.08);
    border: 1px solid rgba(139, 131, 120, 0.15);
    transition: all 0.3s ease;
  }

  .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(58, 53, 48, 0.12);
  }

  .benefit-card i {
    font-size: 2.5rem;
    color: #d4735e;
    margin-bottom: 1rem;
  }

  .benefit-card h4 {
    font-size: 1.25rem;
    color: #3a3530;
    margin-bottom: 0.75rem;
  }

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

    h2 {
      font-size: 1.75rem;
    }

    h3 {
      font-size: 1.5rem;
    }

    .article-container {
      padding: 3rem 1.5rem;
    }

    .lead-text {
      font-size: 1.125rem;
      padding: 1rem 1.5rem;
    }

    .step-list li {
      padding-left: 3.5rem;
    }

    .step-list li::before {
      left: 1rem;
      width: 32px;
      height: 32px;
      font-size: 0.875rem;
    }

    .benefits-grid {
      grid-template-columns: 1fr;
    }
  }
}
.posts {
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(58, 53, 48, 0.12);
  }

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

  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 115, 94, 0.35);
  }

  .btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(212, 115, 94, 0.3);
  }
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem !important;
    }

    .lead {
      font-size: 1.125rem !important;
    }

    .d-flex.flex-wrap > div {
      width: 100%;
      justify-content: center;
    }
  }

  @media (max-width: 576px) {
    h1 {
      font-size: 1.75rem !important;
    }

    .badge {
      font-size: 0.8125rem !important;
      padding: 0.4rem 1rem !important;
    }
  }
}

.privacy-policy {
  .privacy-policy-content a:hover {
    color: #b85a45;
  }

  @media (max-width: 768px) {
    .privacy-policy-content {
      padding: 3rem 0;
    }

    .policy-header h1 {
      font-size: 2rem;
    }

    .policy-content {
      padding: 2rem 1.5rem;
    }

    .policy-content h2 {
      font-size: 1.5rem;
    }

    .policy-content p,
    .policy-content ul {
      font-size: 1rem;
    }
  }

  @media (max-width: 576px) {
    .container {
      padding: 0 1rem;
    }

    .policy-header h1 {
      font-size: 1.75rem;
    }

    .policy-content {
      padding: 1.5rem 1rem;
    }
  }
}
