* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  color: #6a988f;
}

/* Archive Page Styles */
.archive-hero {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(181, 201, 195, 0.1) 0%,
    rgba(25, 25, 25, 0.3) 100%
  );
  padding: 120px 0 80px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.archive-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.archive-type {
  display: inline-block;
  background-color: #6a988f;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.archive-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
}

.archive-hero-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}

.archive-curve-left,
.archive-curve-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.3;
  z-index: 1;
}

.archive-curve-left {
  left: -50px;
  transform: translateY(-50%) rotate(180deg);
}

.archive-curve-right {
  right: -50px;
}

.archive-main {
  padding: 60px 0;
  background-color: transparent;
}

.archive-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.archive-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.archive-posts-info {
  margin-bottom: 40px;
}

.posts-count {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.posts-grid {
  display: grid;
  gap: 40px;
}

.archive-post-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: grid;
  grid-template-columns: 1fr 300px;
  min-height: 250px;
  margin-bottom: 30px;
}

.archive-post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.archive-post-thumbnail {
  position: relative;
  overflow: hidden;
}

.post-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.archive-post-item:hover .post-thumb-img {
  transform: scale(1.05);
}

.post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(106, 152, 143, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.archive-post-item:hover .post-overlay {
  opacity: 1;
}

.read-more-overlay {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 24px;
  border: 2px solid white;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.read-more-overlay:hover {
  background-color: white;
  color: #6a988f;
}

.archive-post-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.archive-post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.post-date {
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

.post-category a {
  color: #6a988f;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.archive-post-title {
  margin-bottom: 15px;
}

.archive-post-title a {
  color: #333;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.archive-post-title a:hover {
  color: #6a988f;
}

.archive-post-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.archive-post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-author {
  color: #666;
  font-size: 14px;
}

.read-more-btn {
  background-color: #6a988f;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background-color: #5a7a72;
  transform: translateY(-2px);
}

.archive-pagination {
  margin-top: 60px;
  text-align: center;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  list-style: none;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.archive-pagination .page-numbers li {
  margin: 0;
}

.archive-pagination .page-numbers a,
.archive-pagination .page-numbers span {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.archive-pagination .page-numbers a {
  background-color: #f8f9fa;
  color: #333;
}

.archive-pagination .page-numbers a:hover {
  background-color: #6a988f;
  color: white;
}

.archive-pagination .page-numbers .current {
  background-color: #6a988f;
  color: white;
}

.no-posts-found {
  text-align: center;
  padding: 80px 20px;
}

.no-posts-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.no-posts-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.no-posts-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.back-home-btn,
.contact-btn {
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-home-btn {
  background-color: #6a988f;
  color: white;
}

.contact-btn {
  background-color: transparent;
  color: #6a988f;
  /* border: 2px solid #6a988f; */
}

.back-home-btn:hover,
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.archive-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-widget {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #6a988f;
}

.search-form {
  display: flex;
  gap: 10px;
}

.search-field {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-field:focus {
  border-color: #6a988f;
}

.search-submit {
  background-color: #6a988f;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-submit:hover {
  background-color: #5a7a72;
}

.category-list,
.resource-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-list li,
.resource-links li {
  margin-bottom: 12px;
}

.category-list a,
.resource-links a {
  color: #dddcdc;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.category-list a:hover,
.resource-links a:hover {
  color: #6a988f;
}

.category-count {
  background-color: #f8f9fa;
  color: #666;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recent-post-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.recent-post-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}

.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-content h4 {
  margin-bottom: 5px;
}

.recent-post-content h4 a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
  color: #6a988f;
}

.recent-post-date {
  color: #dddcdc;
  font-size: 12px;
}

.contact-info {
  margin: 20px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #333;
}

.contact-item i {
  color: #6a988f;
  width: 16px;
}

.contact-widget-btn {
  background-color: #6a988f;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.contact-widget-btn:hover {
  background-color: #5a7a72;
  transform: translateY(-2px);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-form input {
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  border-color: #6a988f;
}

.newsletter-form button {
  background-color: #6a988f;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #5a7a72;
}

.archive-cta {
  background: linear-gradient(135deg, #6a988f 0%, #5a7a72 100%);
  color: white;
}
.archive-cta-content {
  padding: 0px 10px;
}
.archive-cta-container {
  padding: 40px 0px;
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.archive-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.archive-cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.archive-cta-buttons {
  display: flex;
  gap: 20px;
}

.cta-contact-btn,
.cta-home-btn {
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-contact-btn {
  background-color: white;
  color: #6a988f;
}

.cta-home-btn {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cta-contact-btn:hover,
.cta-home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-hand-img {
  max-width: 100%;
  height: auto;
}

.archive-post-placeholder {
  background: linear-gradient(135deg, #6a988f 0%, #5a7a72 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
}

.placeholder-content {
  text-align: center;
}

.placeholder-content i {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.placeholder-content span {
  font-size: 14px;
  font-weight: 600;
}

/* Header Styles */
.main-header {
  background-color: #ffffff;
  position: fixed;
  width: 80%;
  top: 6%;
  left: 50%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
  border-radius: 50px;
}

.header-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  font-weight: 700;
  /* text-decoration: none; */
}

/* .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #d4a017;
        } */

.language-selector {
  position: relative;
  margin-left: 20px;
}

.lang-btn {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  border-radius: 20px;
  padding: 8px 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.lang-btn:hover {
  background-color: #efefef;
}

.flag-icon {
  width: 20px;
  height: auto;
  margin-right: 8px;
}

.lang-btn span {
  color: #333;
  font-size: 14px;
  margin-right: 5px;
}

.lang-btn i {
  font-size: 12px;
  color: #666;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px;
  min-width: 120px;
  display: none;
  z-index: 10;
}

.language-selector:hover .lang-dropdown {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  padding: 8px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s ease;
}

.lang-option:hover {
  background-color: #f5f5f5;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.bar {
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

/* Hamburger to X animation */
.bar.active:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.bar.active:nth-child(2) {
  opacity: 0;
}

.bar.active:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* When menu is open */
body.menu-open {
  overflow: hidden;
}

/* Footer and Social Media Styles */

body {
  /* background: url('images/patron.png'),linear-gradient(to bottom, #B5C9C3, #191919, #B5C9C3); */
  background: url("https://nextstepfuneral.org/wp-content/uploads/2025/08/site-background.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
  /* background-position: top left; */
  font-family: Arial, sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px; /* Added to account for fixed header */
}

.hero-content {
  position: absolute;
  z-index: 2;
  text-align: right;
  max-width: 900px;
  padding: 0 20px;
  right: 10%;
  top: 25%;
}

.hero-title {
  font-size: 70px;
  color: white;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 22px;
  color: #fff;
  text-align: right;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 28px;
}

.contact-btn {
  display: inline-block;
  background-color: #333;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #555;
  transform: translateY(-2px);
}
.hero-left-cloud {
  position: absolute;
  left: 0;
  z-index: 999;
  top: -5%;
  width: 40vw;
  animation: floatLeftCloud 6s ease-in-out infinite;
}

@keyframes floatLeftCloud {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-8px) translateX(0px);
  }
  50% {
    transform: translateY(-12px) translateX(0px);
  }
  75% {
    transform: translateY(-6px) translateX(0px);
  }
}

.hero-right-cloud {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 999;
  width: 62%;
  top: 70%;
  animation: floatRightCloud 6s ease-in-out infinite;
}

@keyframes floatRightCloud {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  20% {
    transform: translateY(-6px) translateX(0px);
  }
  40% {
    transform: translateY(-10px) translateX(0px);
  }
  60% {
    transform: translateY(-14px) translateX(0px);
  }
  80% {
    transform: translateY(-8px) translateX(0px);
  }
}

.hero-left-hand {
  position: absolute;
  left: 0;
  top: 0%;
  z-index: 1;
  width: 60vw;
}

.hero-right-hand {
  position: absolute;
  right: 0;
  top: 45%;
  z-index: 1;
  width: 80vw;
  height: 80%;
  object-fit: scale-down;
}

/* Timeline Section Styles */

#timeline {
  position: relative;
  color: white;
  padding: 0px 0px 60px 0px;
  overflow: hidden;
  min-height: 80vh;
}

.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px 20px 0px;
  position: relative;
  z-index: 2;
}

.timeline-title {
  font-size: 48px;
  margin-bottom: 40px;
  text-align: center;
  font-family: "Merriweather", sans-serif;
  font-weight: 900;
  color: white;
}

.timeline-list {
  padding-bottom: 1em;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
}

.timeline-list:before {
  content: "";
  border-left: 5px solid #b5c9c3;
  left: -0.25em;
  top: 2em;
  height: 100%;
  position: absolute;
  bottom: 0;
  top: 0;
  transform-origin: 0 0;
  animation: scaleVertical 3s 1s ease both 1;
}

/* .timeline-list:after {
            content: "";
            clear: both;
            position: absolute;
            bottom: 0px;
            left: -1em;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: none repeat scroll 0% 0% #ddd;
            border: 5px solid #ddd;
            box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
            animation: revealScaleUp 0.75s 2.82s ease both 1;
        } */

.timeline-list li {
  margin: 0 0 3em 0;
  padding: 0 2em 0em 2em;
  position: relative;
}

.timeline-list li:before {
  content: "";
  position: absolute;
  top: 0px;
  left: -1.45em;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: none repeat scroll 0% 0% #b5c9c3;
  border: 5px solid #b5c9c3;
  animation: revealScaleUp 0.75s 0s ease both 1;
}

.timeline-list {
  animation: reveal 2s 0 ease both 1;
}

.timeline-list li .content {
  animation: revealFromLeft 0.5s 0s ease both 1;
}

.timeline-list li:nth-child(1):before {
  animation-delay: 0.85s;
}

.timeline-list li:nth-child(1) .content {
  animation-delay: 1.05s;
}

.timeline-list li:nth-child(2):before {
  animation-delay: 1.2s;
}

.timeline-list li:nth-child(2) .content {
  animation-delay: 1.5s;
}

.timeline-list li:nth-child(3):before {
  animation-delay: 1.8s;
}

.timeline-list li:nth-child(3) .content {
  animation-delay: 2.1s;
}

.timeline-list li:nth-child(4):before {
  animation-delay: 2s;
}

.timeline-list li:nth-child(4) .content {
  animation-delay: 2.3s;
}

.timeline-list li:nth-child(5):before {
  animation-delay: 2.2s;
}

.timeline-list li:nth-child(5) .content {
  animation-delay: 2.5s;
}

.timeline-list li:nth-child(6):before {
  animation-delay: 2.4s;
}

.timeline-list li:nth-child(6) .content {
  animation-delay: 2.7s;
}

.step-number {
  font-size: 80px;
  color: rgb(255 255 255 / 0%);
  line-height: 1;
  position: absolute;
  left: -150px;
  top: -20px;
  z-index: 3;
  font-weight: bold;
  font-family: "Merriweather", sans-serif;
  stroke: 2px transparent;
  -webkit-text-stroke: 2px #d1cfcf;
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.content h3 {
  font-size: 1.5em;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #fff;
  font-family: "Merriweather", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.content p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Merriweather", sans-serif;
}

.learn-more {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 16px;
  white-space: nowrap;
  margin-top: 10px;
}

.learn-more::after {
  content: "→";
  margin-left: 8px;
}

.curve-left {
  position: absolute;
  top: 20%;
  height: 45%;
  z-index: 1;
  opacity: 0.5;
  rotate: 230deg;
  left: -15%;
}

.curve-right {
  position: absolute;
  right: -18%;
  bottom: 10%;
  height: 45%;
  z-index: 1;
  opacity: 0.5;
  transform: scaleX(-1);
  rotate: 140deg;
}

@keyframes revealFromLeft {
  0% {
    transform: translateX(-1em);
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes reveal {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes scaleVertical {
  0% {
    transform: scaleY(0);
  }

  100% {
    transform: scaleY(1);
  }
}

@keyframes revealScaleUp {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.mid-cloud img {
  width: 100%;
}

/* Shelly Story Section Styles */

.shelly-story-container {
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  /* padding: 0 20px; */
  /* position: relative; */
  /* z-index: 2; */
  background: url(../images/story-bg.png);
  background-size: 100% 100%;
  min-height: 130vh;
  background-position: bottom;
  padding: 60px 80px 60px 80px;
  background-repeat: no-repeat;
  margin-top: 250px;
}

.shelly-story-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* justify-content: center;
            align-items: center; */
  gap: 40px;
}

.shelly-frame {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 15px solid #b8860b;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  background-color: #000;
}

.shelly-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shelly-story-right {
  flex: 1;
  padding: 0 20px;
  gap: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.story-logo {
  width: 260px;
  margin-inline: auto;
  display: block;
  background: #000;
  padding: 10px 20px;
}
.shelly-title {
  font-size: 28px;
  font-family: "Merriweather", sans-serif;
  font-weight: 900;
  margin-bottom: 15px;
  color: white;
  text-align: center;
}
.shelly-subtitle {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 30px;
  font-family: "Merriweather", sans-serif;
  font-weight: 700;
}

.shelly-question {
  font-size: 24px;
  font-family: "Merriweather", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.shelly-text {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-family: "Merriweather", sans-serif;
  letter-spacing: 1px;
}

.shelly-quote {
  position: relative;
  padding-left: -16px;
  /* margin: 30px 0; */
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  left: -40px;
}

.shelly-quote p {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  /* font-style: italic; */
  font-family: "Merriweather", sans-serif;
  font-weight: 600;
}

.shelly-btn {
  display: inline-block;
  background-color: #f3c07b;
  color: black;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.shelly-btn:hover {
  background-color: #a67c00;
  transform: translateY(-2px);
}

.story-left-wave {
  height: 650px;
  object-fit: contain;
  width: 100%;
}

.story-bottom-wave {
  position: absolute;
  bottom: -10%;
  width: 100%;
  z-index: 1;
  opacity: 0.5;
}

/* Disclaimer Section Styles */
#disclaimer {
  position: relative;
  padding: 0px 0 120px 0;
  overflow: hidden;
}

.disclaimer-left-horse {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 25%;
  opacity: 0.2;
}

.disclaimer-right-horse {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 25%;
  opacity: 0.2;
}

.disclaimer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px;
}

.disclaimer-title {
  font-size: 37px;
  font-family: "Merriweather", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  /* text-align: center; */
}

.disclaimer-intro {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-family: "Merriweather", sans-serif;
}

.disclaimer-points {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  width: 80%;
  margin: auto;
  padding-bottom: 1em;
}

.disclaimer-points:before {
  content: "";
  border-left: 2px solid white;
  left: 10px;
  height: calc(100% - 20px);
  position: absolute;
  bottom: 0;
  top: 10px;
  transform-origin: 0 0;
  animation: scaleVertical 3s 1s ease both 1;
}

.disclaimer-point {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

/* Add staggered animation delays for each point */
.disclaimer-point:nth-child(1) .point-circle {
  animation-delay: 0.25s;
}

.disclaimer-point:nth-child(2) .point-circle {
  animation-delay: 0.5s;
}

.disclaimer-point:nth-child(3) .point-circle {
  animation-delay: 0.75s;
}

.point-circle {
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
  position: relative;
  animation: revealScaleUp 0.75s 0s ease both 1;
}

.point-content h3 {
  font-size: 20px;
  font-family: "Merriweather", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.point-content p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Merriweather", sans-serif;
}

/* Resources Section Styles */
#resources {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.resources-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px;
  background-image: linear-gradient(to bottom, #d3d3d3, transparent);
  border-radius: 40px;
  display: flex;
  gap: 40px;
  /* position: relative; */
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 90%;
}

.resources-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.resources-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.resources-title {
  font-size: 36px;
  font-family: "Merriweather", sans-serif;
  font-weight: 900;
  margin-bottom: 20px;
  color: #000;
}

.resource-item {
  display: flex;
  /* align-items: center; */
  gap: 15px;
}

.resource-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.resource-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-content h3 {
  font-size: 21px;
  font-family: "Merriweather", sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
  color: #c48e44;
}

.resource-content p {
  font-size: 17px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Merriweather", sans-serif;
}
.resources-intro {
  color: #000;
}
.resources-btn {
  display: inline-block;
  background-color: #000;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  align-self: flex-start;

  font-size: 14px;
}

.resources-btn:hover {
  background-color: #555;
  transform: translateY(-2px);
}

#resources .resource-item {
  margin-bottom: 15px;
}

.resources-message {
  background-color: transparent;
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

.resources-message p {
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  font-family: "Merriweather", sans-serif;
  margin-bottom: 20px;
}

.resources-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 10px;
}

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

.resources-left,
.resources-right {
  position: relative;
  z-index: 2;
}

.resource-left-img {
  height: 300px;
  position: absolute;
  left: -10%;
  rotate: 90deg;
  top: 30%;
}
.resource-right-img {
  position: absolute;
  height: 300px;
  right: -10%;
  top: 30%;
  rotate: 50deg;
}
.resource-cloud {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 999;
  width: 50%;
}

/* Help Ready Section Styles */
/* #help-ready {
    position: relative;
    padding: 0;
    overflow: hidden;
    background-color: rgba(120, 140, 140, 0.6);
    background-image: url('../images/patron.png');
    background-blend-mode: overlay;
} */

.help-ready-container {
  display: flex;
  align-items: center;
}

.help-ready-left {
  flex: 1;
  /* display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 1; */
}

.help-hand-img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.help-ready-right {
  flex: 1;
  padding: 40px;
  color: white;
  position: relative;
  z-index: 1;
}

.help-ready-title {
  font-size: 35px;
  font-family: "Merriweather", sans-serif;
  font-weight: 900;
  margin-bottom: 15px;
  color: #fff;
}

.help-ready-text {
  font-size: 19px;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 20px;
  /* font-family: "Merriweather", sans-serif; */
  max-width: 85%;
  font-weight: 600;
}

.help-ready-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.help-contact-btn {
  display: inline-block;
  background-color: #c48e44;
  color: white;
  padding: 18px 50px;
  border-radius: 30px;
  text-decoration: none;

  transition: all 0.3s ease;
  font-size: 18px;
}

.help-contact-btn:hover {
  background-color: #444;
  transform: translateY(-2px);
}

.help-phone {
  font-size: 20px;
  /* font-weight: bold; */
  color: #fff;
  background-color: transparent;
  padding: 10px 15px;
}

/* Footer Styles */
.footer {
  margin-top: auto;
  position: relative;
  background-image: url("../images/footer-bg.png");
  background-size: 100% 100%;
  color: #333;
  width: 100%;
  /* height: 60vh; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-top: 120px;
}

.footer-curve {
  height: 80px;
  width: 100%;
  background-color: #f5f5f5;
  border-radius: 100% 100% 0 0 / 100% 100% 0 0;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1500px;
  border-bottom: 1px solid #0000002e;
  padding: 40px 10px;
}

.footer-left {
  flex: 0 0 30%;
  padding-right: 20px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 250px;
  height: auto;
  margin-bottom: 10px;
}

.footer-logo h3 {
  color: #d4a017;
  font-size: 28px;
  margin-bottom: 5px;
  font-weight: bold;
  text-transform: capitalize;
  font-family: "Times New Roman", Times, serif;
}

.footer-tagline {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

.footer-description {
  font-size: 16px;
  color: #4b4b4b;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 500;
}

.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a img {
  height: 20px;
  width: 20px;
}

/* .footer-social a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            background-color: #333;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.3s ease;
        } */

/* .footer-social a:hover {
            background-color: #d4a017;
            transform: translateY(-3px);
        } */

.footer-social i {
  font-size: 14px;
}

.footer-center,
.footer-center-right {
  flex: 0 0 20%;
  margin-top: 40px;
}

.footer-links h4 {
  color: #333;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #4b4b4b;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: #d4a017;
}

.footer-right {
  flex: 0 0 30%;
  margin-top: 40px;
}

.footer-right h4 {
  color: #333;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-right p {
  font-size: 16px;
  color: #4b4b4b;
  margin-bottom: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.footer-form {
  display: flex;
  margin-top: 15px;
  border: 2px solid #8d8c8c;
  padding: 5px;
  border-radius: 5px;
}

.footer-form input {
  flex: 1;
  padding: 10px;
  border: none;
  /* border-radius: 4px 0 0 4px; */
  font-size: 14px;
  background: transparent;
  outline: none;
}

.footer-form button {
  background-color: #000;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}

.footer-form button:hover {
  background-color: #333;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;

  border-top: 1px solid #eee;
  font-size: 14px;
  color: #666;
}

/* ************************************************************************************************ */

.step-content p {
  color: #333;
}

/* Who We Are Section Styles */
#who-we-are {
  position: relative;
  color: white;
  padding: 80px 0;
  overflow: hidden;
  min-height: 60vh;
}

.who-we-are-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.who-content-block {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-content-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.who-section-title {
  font-size: 32px;
  font-family: "Merriweather", sans-serif;
  font-weight: 900;
  margin-bottom: 20px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.who-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #b5c9c3;
  border-radius: 2px;
}

.who-section-text {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Merriweather", sans-serif;
  margin-bottom: 15px;
}

.who-section-text:last-child {
  margin-bottom: 0;
}

.who-curve-left {
  position: absolute;
  top: 15%;
  height: 40%;
  z-index: 1;
  opacity: 0.3;
  rotate: 45deg;
  left: -12%;
}

.who-curve-right {
  position: absolute;
  right: -15%;
  bottom: 15%;
  height: 40%;
  z-index: 1;
  opacity: 0.3;
  transform: scaleX(-1);
  rotate: 225deg;
}

/* Modal Styles*/
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 0;
  border: none;
  border-radius: 15px;
  width: 90%;
  max-width: 70%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close,
.close-resources {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  padding: 20px 25px 0 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover,
.close:focus,
.close-resources:hover,
.close-resources:focus {
  color: #000;
  text-decoration: none;
}

.modal-body {
  padding: 20px 30px 30px 30px;
}

.modal-body .step-content {
  font-family: inherit;
  display: none;
}

.modal-body .step-content.active {
  display: block;
}

.modal-body .step-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  border-bottom: 2px solid #6a988f;
  padding-bottom: 8px;
}

.modal-body .step-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-body .step-content li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
  color: #555;
}

.modal-body .step-content li:before {
  content: "•";
  color: #6a988f;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.modal-body .step-content a {
  color: #6a988f;
  text-decoration: underline;
}

.modal-body .step-content a:hover {
  color: #005a87;
}

/* Resources Modal Styles */
.resources-modal-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.resources-modal-section:last-child {
  margin-bottom: 0;
}

.resources-modal-section h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #6a988f;
  font-family: "Merriweather", sans-serif;
}

.resources-modal-section h5 {
  font-size: 16px;
  font-weight: bold;
  margin: 15px 0 10px 0;
  color: #333;
  font-family: "Merriweather", sans-serif;
}

.resources-modal-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
  font-family: "Merriweather", sans-serif;
}

.resources-modal-section ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.resources-modal-section ul li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
  color: #555;
  font-family: "Merriweather", sans-serif;
}

.resources-modal-section ul li:before {
  content: "•";
  color: #6a988f;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.resources-modal-section ol {
  padding-left: 20px;
  margin: 15px 0;
}

.resources-modal-section ol li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #555;
  font-family: "Merriweather", sans-serif;
}

.resources-modal-section a {
  color: #6a988f;
  text-decoration: underline;
  word-break: break-all;
}

.resources-modal-section a:hover {
  color: #005a87;
}

.memorial-quote {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border: 2px solid #6a988f;
}

.memorial-quote .quote-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  font-style: italic;
  margin: 0;
  font-family: "Merriweather", serif;
}

/* Single Post Styles */
.single-hero {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(181, 201, 195, 0.1) 0%,
    rgba(25, 25, 25, 0.3) 100%
  );
  padding: 120px 0 80px 0;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-hero-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.single-hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-family: "Merriweather", sans-serif;
}

.post-date {
  color: #b5c9c3;
  font-size: 16px;
  font-weight: 600;
}

.post-category a {
  color: #c48e44;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.post-category a:hover {
  color: #f3c07b;
}

.single-hero-title {
  font-size: 48px;
  color: white;
  margin-bottom: 20px;
  font-family: "Merriweather", sans-serif;
  font-weight: 900;
  line-height: 1.2;
}

.single-hero-excerpt {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Merriweather", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

.single-curve-left {
  position: absolute;
  top: 20%;
  height: 40%;
  z-index: 1;
  opacity: 0.3;
  rotate: 45deg;
  left: -12%;
}

.single-curve-right {
  position: absolute;
  right: -15%;
  bottom: 20%;
  height: 40%;
  z-index: 1;
  opacity: 0.3;
  transform: scaleX(-1);
  rotate: 225deg;
}

.single-main {
  padding: 80px 0;
  position: relative;
}

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

.single-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.single-article {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.single-featured-image {
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
}

.single-featured-image .featured-img {
  width: 100%;
  height: auto;
  display: block;
}

.single-entry-content {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Merriweather", sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

.single-entry-content h1,
.single-entry-content h2,
.single-entry-content h3,
.single-entry-content h4,
.single-entry-content h5,
.single-entry-content h6 {
  color: white;
  font-family: "Merriweather", sans-serif;
  font-weight: 700;
  margin: 30px 0 20px 0;
}

.single-entry-content h2 {
  font-size: 32px;
  border-bottom: 2px solid #b5c9c3;
  padding-bottom: 10px;
}

.single-entry-content h3 {
  font-size: 26px;
}

.single-entry-content p {
  margin-bottom: 20px;
}

.single-entry-content a {
  color: #c48e44;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.single-entry-content a:hover {
  color: #f3c07b;
}

.single-entry-content ul,
.single-entry-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.single-entry-content li {
  margin-bottom: 10px;
}

.single-entry-content blockquote {
  background: rgba(196, 142, 68, 0.1);
  border-left: 4px solid #c48e44;
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
  font-style: italic;
}

.page-links {
  margin: 30px 0;
  text-align: center;
}

.page-links span {
  display: inline-block;
  padding: 8px 15px;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: white;
}

.page-links a span {
  background: #c48e44;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.page-links a span:hover {
  background: #f3c07b;
}

.single-tags {
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.single-tags h4 {
  color: white;
  font-family: "Merriweather", sans-serif;
  font-size: 18px;
  margin-bottom: 15px;
}

.tag-list a {
  display: inline-block;
  background: rgba(196, 142, 68, 0.2);
  color: #c48e44;
  padding: 6px 15px;
  border-radius: 20px;
  text-decoration: none;
  margin: 0 10px 10px 0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.tag-list a:hover {
  background: #c48e44;
  color: white;
}

.single-author-bio {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #b5c9c3;
}

.author-info h4 {
  color: white;
  font-family: "Merriweather", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.author-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-widget h3 {
  color: white;
  font-family: "Merriweather", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 2px solid #b5c9c3;
  padding-bottom: 10px;
}
.sidebar-widget p {
  margin-bottom: 10px;
}

.related-posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.related-post-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.related-post-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
}

.related-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-post-content h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  line-height: 1.3;
}

.related-post-content h4 a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
  color: #c48e44;
}

.related-post-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.contact-widget p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.contact-info {
  margin: 20px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.contact-item i {
  color: #c48e44;
  width: 20px;
}

.contact-widget-btn {
  display: inline-block;
  background: #c48e44;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}

.contact-widget-btn:hover {
  background: #f3c07b;
  transform: translateY(-2px);
}

.resource-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-links li {
  margin-bottom: 12px;
}

.resource-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 16px;
  padding: 8px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.resource-links a:hover {
  color: #c48e44;
  padding-left: 10px;
}

.single-navigation {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
}

.single-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.nav-previous,
.nav-next {
  flex: 1;
  max-width: 45%;
}

.nav-previous a,
.nav-next a {
  display: block;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-previous a:hover,
.nav-next a:hover {
  background: rgba(196, 142, 68, 0.1);
  transform: translateY(-3px);
}

.nav-next {
  text-align: right;
}

.nav-direction {
  display: block;
  color: #c48e44;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-title {
  display: block;
  color: white;
  font-size: 18px;
  font-weight: 700;
  font-family: "Merriweather", sans-serif;
  line-height: 1.3;
}
