* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Courier Prime", monospace;
  background: #f9f9f9;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

html {
  scroll-behavior: smooth;
}

btn,
a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.logo {
  font-family: "Comic Neue", cursive;
  font-size: 1.8rem;
  color: #e76f51;
}
.site-nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
  font-size: 0.9rem;
}
.site-nav a {
  color: #264653;
  padding: 6px;
  transition: background 0.3s;
}
.site-nav a:hover {
  background: #e9c46a;
  border-radius: 4px;
}

.spacer {
  height: 50px;
}

.hero-section {
  position: relative;
  height: 60vh;
  background: url("../assets/images/gallery1.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-content {
  position: relative;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.hero-content .btn {
  display: inline-block;
  padding: 12px 28px;
  background: #e76f51;
  color: #fff;
  border-radius: 4px;
  font-size: 1rem;
  transition: background 0.3s;
}
.hero-content .btn:hover {
  background: #d65a3f;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 1.5rem;
  color: #264653;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}

section {
  padding: 60px 0;
}
h2 {
  font-family: "Comic Neue", cursive;
  font-size: 2rem;
  color: #e76f51;
  margin-bottom: 16px;
  text-align: center;
}
p {
  margin: 12px 0;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.about-section {
  background: #fffbf0;
  padding: 80px 20px;
}
.about-section h2 {
  text-align: center;
  font-family: "Comic Neue", cursive;
  font-size: 2.6rem;
  color: #e76f51;
  margin-bottom: 24px;
}
.about-section p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #264653;
  text-align: center;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 40px;
  justify-content: center;
}
.highlight {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
}
.highlight h3 {
  font-size: 1.2rem;
  color: #e76f51;
  margin-bottom: 12px;
}
.highlight p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.about-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto 40px;
  padding-left: 0;
}
.about-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #264653;
}
.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #e76f51;
  font-weight: bold;
}

.about-cta {
  text-align: center;
  margin-top: 20px;
}
.learn-more {
  display: inline-block;
  padding: 12px 32px;
  background: #e76f51;
  color: #fff;
  border-radius: 30px;
  font-size: 1rem;
  transition: background 0.3s;
}
.learn-more:hover {
  background: #d65a3f;
}

@media (max-width: 768px) {
  .about-highlights {
    flex-direction: column;
    align-items: center;
  }
  .about-section h2 {
    font-size: 2.2rem;
  }
}

.team-section {
  background: #f0f8ff;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: center;
}
.team-member {
  text-align: center;
  width: 180px;
}
.team-intro{
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1.1rem;
  color: #264653;
}
.team-member img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.team-member h3 {
  margin-top: 28px;
  color: #264653;
}
.team-member p {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #555;
}

.categories-section {
  background: var(--light-bg);
  padding: 80px 20px;
}
.categories-section h2 {
  text-align: center;
  font-family: "Comic Neue", cursive;
  font-size: 2.4rem;
  color: #e76f51;
  margin-bottom: 40px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.category-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.category-content {
  padding: 16px;
}
.category-content h3 {
  font-size: 1.2rem;
  color: #264653;
  margin-bottom: 8px;
}
.category-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 12px;
}
.category-content .btn {
  display: inline-block;
  padding: 8px 20px;
  background: #e76f51;
  color: #fff;
  border-radius: 4px;
  font-size: 0.85rem;
  transition: background 0.3s;
}
.category-content .btn:hover {
  background: #d65a3f;
}

@media (max-width: 768px) {
  .categories-section h2 {
    font-size: 2rem;
  }
  .category-content h3 {
    font-size: 1.1rem;
  }
  .category-content p {
    font-size: 0.9rem;
  }
}

.advantages-section {
  background: var(--light-bg);
  padding: 80px 20px;
}
.advantages-section h2 {
  text-align: center;
  font-family: "Comic Neue", cursive;
  font-size: 2.4rem;
  color: #e76f51;
  margin-bottom: 16px;
}
.advantages-section p {
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 1rem;
  color: var(--text);
}

.suppliers-list {
  list-style: disc inside;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text);
  line-height: 1.6;
}
.suppliers-list li {
  margin-bottom: 12px;
}
.suppliers-list li strong {
  color: var(--accent);
}

.benefits-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto 40px;
  padding-left: 0;
}
.benefits-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}
.benefits-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: bold;
}

.qa-process {
  counter-reset: qa;
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 0;
}
.qa-process li {
  counter-increment: qa;
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}
.qa-process li::before {
  content: counter(qa) ".";
  position: absolute;
  left: 0;
  top: 0;
  background: var(--accent);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

@media (max-width: 768px) {
  .advantages-section h2 {
    font-size: 2rem;
  }
  .suppliers-list,
  .benefits-list,
  .qa-process {
    margin-bottom: 32px;
  }
  .suppliers-list li,
  .benefits-list li,
  .qa-process li {
    font-size: 0.95rem;
  }
  .qa-process li::before {
    width: 20px;
    height: 20px;
    font-size: 0.9rem;
  }
}

.delivery-section {
  background: var(--light-bg);
  padding: 80px 20px;
}
.delivery-section h2 {
  text-align: center;
  font-family: "Comic Neue", cursive;
  font-size: 2.4rem;
  color: #e76f51;
  margin-bottom: 40px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.delivery-details h3 {
  font-size: 1.5rem;
  color: #264653;
  margin-top: 24px;
  margin-bottom: 12px;
}
.delivery-details p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
.delivery-details ul {
  list-style: disc inside;
  margin-bottom: 24px;
}
.delivery-details ul li {
  margin-bottom: 8px;
}

.delivery-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: block;
}

.delivery-extra {
  max-width: 800px;
  margin: 0 auto;
}
.delivery-extra h3 {
  font-size: 1.5rem;
  color: #264653;
  margin-top: 24px;
  margin-bottom: 12px;
}
.delivery-extra p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 24px;
}
.delivery-extra a {
  color: #e76f51;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .delivery-grid {
    grid-template-columns: 1fr;
  }
  .delivery-image {
    margin-top: 24px;
  }
}

.discount-section {
  background: #f0f8ff;
  text-align: center;
}

.contact-section {
  background: #fffbf0;
  padding: 80px 20px;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.contact-details h2 {
  font-size: 2.4rem;
  color: #e76f51;
  margin-bottom: 16px;
}
.contact-line {
  font-size: 1rem;
  margin-bottom: 8px;
}
.contact-line a {
  color: #264653;
  text-decoration: underline;
}
.hours-list {
  list-style: disc inside;
  margin: 16px 0;
  color: #264653;
}
.hours-list li {
  margin-bottom: 4px;
}
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.social-links img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(0.2);
  transition: filter 0.3s;
}
.social-links a:hover img {
  filter: brightness(0) invert(1);
}

.contact-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-images img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.contact-map {
  grid-column: span 2;
  margin-top: 32px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
  .contact-map {
    margin-top: 24px;
  }
}

.site-footer {
  background: #264653;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .site-nav ul {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 50px;
    right: 10px;
    padding: 10px;
    display: none;
  }
  .site-nav ul.show {
    display: flex;
  }
  .team-grid {
    flex-direction: column;
    align-items: center;
  }
}

.site-footer {
  background: #264653;
  color: #fff;
  padding: 24px 20px;
}
.site-footer .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo img {
  height: 40px;
  width: auto;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.9rem;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #e9c46a;
}
.footer-links .bar {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 6px;
}
.footer-copy {
  font-size: 0.85rem;
  margin: 12px 0 0;
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .site-footer .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-logo {
    margin-bottom: 12px;
  }
  .footer-links {
    justify-content: center;
    margin-bottom: 12px;
  }
}

.about-detailed-section {
  background: #fffdfa;
  padding: 100px 20px;
}
.about-detailed-section h2 {
  text-align: center;
  font-family: "Comic Neue", cursive;
  font-size: 2.8rem;
  color: #e76f51;
  margin-bottom: 24px;
}
.about-detailed-section .intro {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #264653;
  text-align: center;
}

.about-mission {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}
.about-mission h3 {
  font-size: 2rem;
  color: #264653;
  margin-bottom: 12px;
}
.about-mission p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.about-values {
  max-width: 1000px;
  margin: 0 auto 60px;
}
.about-values h3 {
  text-align: center;
  font-size: 2rem;
  color: #264653;
  margin-bottom: 24px;
}
.about-values ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
}
.about-values li {
  background: #fff;
  padding: 24px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.about-values li strong {
  display: block;
  font-size: 1.1rem;
  color: #e76f51;
  margin-bottom: 8px;
}

.about-timeline {
  max-width: 800px;
  margin: 0 auto 60px;
}
.about-timeline h3 {
  text-align: center;
  font-size: 2rem;
  color: #264653;
  margin-bottom: 24px;
}
.timeline-list {
  position: relative;
  padding-left: 40px;
  counter-reset: step;
}
.timeline-list li {
  position: relative;
  margin-bottom: 24px;
  padding-left: 36px;
  line-height: 1.6;
  color: #333;
}
.timeline-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  background: #e76f51;
  color: #fff;
  width: 28px;
  height: 28px;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-list li .year {
  font-weight: bold;
  color: #264653;
}

.about-team {
  max-width: 1000px;
  margin: 0 auto 60px;
}
.about-team h3 {
  text-align: center;
  font-size: 2rem;
  color: #264653;
  margin-bottom: 24px;
}
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.profile {
  display: flex;
  gap: 16px;
  max-width: 480px;
}
.profile img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.profile .info h4 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #e76f51;
}
.profile .info p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}

.about-cta {
  text-align: center;
}

@media (max-width: 768px) {
  .about-detailed-section {
    padding: 60px 20px;
  }
  .about-values ul {
    grid-template-columns: 1fr;
  }
  .team-profiles {
    flex-direction: column;
    align-items: center;
  }
  .profile {
    flex-direction: column;
    text-align: center;
  }
  .profile img {
    margin: 0 auto 12px;
  }
}

.category-detail-section {
  background: #fffdfa;
  padding: 80px 20px;
}
.category-detail-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.category-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-bottom: 60px;
}
.category-hero-img {
  flex: 1 1 300px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
.category-hero-content {
  flex: 2 1 400px;
}
.category-hero-content h2 {
  font-family: "Comic Neue", cursive;
  font-size: 2.8rem;
  color: #e76f51;
  margin-bottom: 16px;
}
.category-hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #264653;
}

.category-overview {
  margin-bottom: 60px;
  line-height: 1.6;
  color: #333;
}
.category-overview p {
  margin-bottom: 24px;
}
.category-overview ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}
.category-overview li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #264653;
}
.category-overview li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #e76f51;
  font-weight: bold;
}

.category-faq {
  margin-bottom: 60px;
}
.category-faq h3 {
  font-size: 2rem;
  color: #264653;
  text-align: center;
  margin-bottom: 24px;
}
.accordion .accordion-item + .accordion-item {
  margin-top: 12px;
}
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: #e76f51;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
}
.accordion-header::after {
  content: "▸";
  position: absolute;
  right: 20px;
  transition: transform 0.3s;
}
.accordion-item.active .accordion-header::after {
  transform: rotate(90deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 20px;
  border: 1px solid #e76f51;
  border-top: none;
  border-radius: 0 0 4px 4px;
  transition: max-height 0.4s ease;
}
.accordion-body p {
  margin: 16px 0;
  color: #333;
}

.category-testimonials {
  margin-bottom: 60px;
}
.category-testimonials h3 {
  font-size: 2rem;
  color: #264653;
  text-align: center;
  margin-bottom: 24px;
}
.category-testimonials blockquote {
  max-width: 800px;
  margin: 0 auto 16px;
  padding: 24px;
  background: #fffbf0;
  border-left: 4px solid #e76f51;
  font-style: italic;
  color: #333;
}
.category-testimonials footer {
  text-align: right;
  font-weight: bold;
  color: #e76f51;
  margin-top: 8px;
}

.category-cta {
  text-align: center;
}
.category-cta .btn {
  padding: 14px 36px;
  background: #e76f51;
  color: #fff;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s;
}
.category-cta .btn:hover {
  background: #d65a3f;
}

@media (max-width: 768px) {
  .category-hero {
    flex-direction: column;
  }
  .category-hero-content h2 {
    font-size: 2.4rem;
    text-align: center;
  }
}

.subscription-section {
  background: #f9fafb;
  padding: 80px 20px;
}
.subscription-section h3 {
  text-align: center;
  font-size: 2rem;
  color: #264653;
  margin-bottom: 12px;
}
.subscription-section p {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  color: #555;
  line-height: 1.6;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.plan-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.plan-card.featured {
  border: 2px solid #e76f51;
}

.plan-card h4 {
  font-size: 1.3rem;
  color: #e76f51;
  margin-bottom: 8px;
}
.plan-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #264653;
  margin-bottom: 16px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  color: #555;
  text-align: left;
}
.plan-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.plan-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #e76f51;
}

.subscribe-btn {
  display: inline-block;
  padding: 10px 28px;
  background: #e76f51;
  color: #fff;
  border-radius: 30px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.3s;
}
.subscribe-btn:hover {
  background: #d65a3f;
}

@media (max-width: 768px) {
  .subscription-section h3 {
    font-size: 1.8rem;
  }
  .plan-price {
    font-size: 1.6rem;
  }
}

.faq-flip-section {
  background: #fffdfa;
  padding: 80px 20px;
}
.faq-flip-section h2 {
  text-align: center;
  font-family: "Comic Neue", cursive;
  font-size: 2.6rem;
  color: #e76f51;
  margin-bottom: 24px;
}
#faqSearch {
  display: block;
  max-width: 400px;
  width: 100%;
  margin: 0 auto 40px;
  padding: 12px 16px;
  border: 2px solid #e76f51;
  border-radius: 4px;
  font-size: 1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-card {
  perspective: 1000px;
}
.card-inner {
  position: relative;
  width: 100%;
  padding-top: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
.faq-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-size: 0.95rem;
  line-height: 1.4;
}
.card-front {
  background: #e76f51;
  color: #fff;
}
.card-back {
  background: #fff;
  color: #333;
  transform: rotateY(180deg);
}

.card-back a {
  color: #e76f51;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq-flip-section h2 {
    font-size: 2.2rem;
  }
  #faqSearch {
    font-size: 0.95rem;
  }
}

.title_background {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  padding: 60px 20px;
  overflow: hidden;
}
.title_background .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.title_background .title {
  font-family: 'Comic Neue', cursive;
  font-size: 2rem;
  font-weight: 700;
  color: #d65a3f;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeInDown 0.8s ease-out forwards;
}

.text_background {
  background: var(--light-bg);
  padding: 40px 20px;
}
.text_background .container {
  max-width: 800px;
  margin: 0 auto;
}
.text_background .text {
  font-family: 'Courier Prime', monospace;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  text-align: justify;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

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

@media (max-width: 768px) {
  .title_background .title {
    font-size: 1.6rem;
  }
  .text_background .text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}