* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #252525;
  background-color: #fff;
}

/* Header Section with Beige Background */
.header-section {
  background: url("../../assets/images/faq/faqbg.png");
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.terms-header-section {
  background: url("../../assets/images/terms/termsbg.png");
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.header-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.header-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 3rem;
  font-weight: 400;
  color: #2c2c2c;
  opacity: 0;
  animation: slideInUp 1s ease-out 0.3s forwards;
  font-family: "Robecha-Daniera-Regular";
}

.intro-text {
  font-size: 1.19rem;
  color: #050505;
  max-width: 1200px;
  font-weight: 300;
  margin: 0 auto;
  width: 80%;
  line-height: 1.6;
  opacity: 0;
  animation: slideInUp 1s ease-out 0.6s forwards;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 1200px) {
  .intro-text {
    margin-top: 30px;
    margin-bottom: 0 !important;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1rem;
  animation: slideInUp 1s ease-out 0.6s forwards;
}

@media (max-width: 768px) {
  .container {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 2rem 0.75rem;
  }
}

.blog-card {
  background: white;
  overflow: hidden;
  width: 100%;
  display: flex;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  gap: 4.5rem;
  margin: 60px auto;
}

.card-image {
  position: relative;
  overflow: hidden;
  height: 270px;
  width: 35%;
  border-radius: 10px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.6s ease;
}

.blog-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  width: 65%;
  display: flex;
  flex-direction: column;

  position: relative;
}

.card-meta {
  padding-top: 10px;
  font-size: 11px;
  font-weight: 300;
  color: #888;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

.card-meta .author {
  color: #2c5530;
  font-weight: 700;
}

.card-title {
  font-size: 23px;
  font-weight: 600;
  color: #050405;
  margin-bottom: 25px;

  line-height: 1.3;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.6s ease forwards;
  animation-delay: 0.4s;
  font-family: "Montserrat", sans-serif;
}

.card-description {
  font-size: 17px;
  color: #050405;
  width: 93%;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.6s ease forwards;
  animation-delay: 0.6s;
}

/* Responsive Design */

@media (max-width: 991px) {
  .blog-card {
    flex-direction: column;
    max-width: 500px;
    gap: 0rem;
  }
  .card-image {
    width: 100%;
    min-height: 250px;
  }

  .card-content {
    width: 100%;
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .blog-card {
    flex-direction: column;
    max-width: 500px;
    gap: 0rem;
  }

  .card-image {
    width: 100%;
    min-height: 250px;
  }

  .card-content {
    width: 100%;
    padding: 2rem;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .card-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .card-content {
    padding: 1.5rem 0;
  }

  .card-title {
    font-size: 1.25rem 0;
  }
}

/* Animations */
@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Loading animation */

.addtoany_content {
  display: none;
}
