* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; } body { background-color: #f9f9f9; color: #222; line-height: 1.6; } .container { max-width: 1000px; margin: 0 auto; padding: 20px; } header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  text-align: center;
}

.main-navigation {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-navigation a {
  color: #b48a5a;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.main-navigation a:hover {
  background-color: #f3e9db;
  border-color: #b48a5a;
  color: #8c6a3f;
}

.main-navigation a {
  color: #b48a5a;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.main-navigation a:hover {
  background-color: #f3e9db;
  border-color: #b48a5a;
  color: #8c6a3f;
}

/* Breadcrumb Navigation */
.breadcrumb {
  margin: 20px 0;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb a {
  color: #b48a5a;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Guide Navigation */
.guide-navigation {
  text-align: center;
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
}

.guide-navigation a {
  display: inline-block;
  background-color: #f3e9db;
  color: #b48a5a;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  margin: 5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.guide-navigation a:hover {
  background-color: #b48a5a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180, 138, 90, 0.3);
}

.guide-navigation a.active {
  background-color: #b48a5a;
  color: white;
  border-color: #8c6a3f;
  box-shadow: 0 4px 12px rgba(180, 138, 90, 0.3);
}

.back-to-home {
  display: inline-block;
  background-color: #b48a5a;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.back-to-home:hover {
  background-color: #8c6a3f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180, 138, 90, 0.3);
}

/* Guides Section */
.guides-section {
  text-align: center;
  margin: 60px 0;
  padding: 0 12px;
}

.guides-section h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #b48a5a;
  font-weight: 700;
}

.guides-section p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.guide-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-color: #b48a5a;
}

.guide-card h3 {
  font-size: 1.4rem;
  color: #b48a5a;
  margin-bottom: 16px;
  font-weight: 600;
}

.guide-card p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1rem;
}

.guide-link {
  display: inline-block;
  color: #b48a5a;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.guide-link:hover {
  color: #8c6a3f;
  transform: translateX(5px);
}
.logo { display: flex; align-items: center; } .logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(5, 1fr); gap: 2px; width: 24px; height: 24px; margin-right: 10px; } .logo-grid-item { width: 4px; height: 4px; border-radius: 1px; } .logo-text { font-size: 24px; font-weight: bold; text-align: center; width: 100%; } .logo-text span { color: #b48a5a; } .social-icons { display: flex; gap: 15px; } .social-icons a { color: white; font-size: 20px; text-decoration: none; } .hero { text-align: center; padding: 60px 0 40px; } .hero h1 { font-size: 36px; margin-bottom: 20px; } .hero-highlight { background-color: #b48a5a; color: white; padding: 5px 15px; border-radius: 50px; } .hero p { max-width: 700px; margin: 0 auto 30px; } .app-buttons { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; } .app-button { background-color: #fff; color: #b48a5a; border: 1px solid #b48a5a; border-radius: 8px; padding: 8px 20px; display: flex; align-items: center; text-decoration: none; } .app-screenshots { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; overflow-x: auto; } .app-screenshot {
  width: 180px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  display: block;
} .ratings { display: flex; justify-content: center; gap: 80px; margin-bottom: 50px; } .rating { display: flex; flex-direction: column; align-items: center; gap: 10px; } .stars { color: #FFD700; } .reviews-count { font-size: 14px; color: #666; } .testimonials {
  max-width: 1000px;
  margin: 0 auto 50px auto;
  /* padding: 0 12px; */
}
.testimonials-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 32px;
  color: #b48a5a;
  font-weight: 700;
}
.testimonial-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.testimonial {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 24px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 180px;
}
.testimonial-stars {
  color: #FFD700;
  font-size: 1.2em;
  margin-bottom: 10px;
}
.testimonial-text {
  font-size: 1.08em;
  color: #444;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.98em;
  color: #888;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .testimonial-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonials {
    margin-bottom: 30px;
  }
}
.testimonial-header { display: flex; justify-content: space-between; margin-bottom: 15px; } .testimonial-stars { color: #FFD700; } .testimonial-author { display: flex; align-items: center; gap: 10px; margin-top: 15px; font-size: 14px; color: #666; } .flag { width: 20px; height: 15px; border-radius: 2px; } .features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 50px; } .feature { background-color: #5F1B9E; border-radius: 10px; padding: 20px; display: flex; flex-direction: column; } .feature-title { font-size: 20px; margin-bottom: 5px; } .feature-subtitle { font-size: 14px; color: rgba(255, 255, 255, 0.8); margin-bottom: 20px; } .feature-image { border-radius: 20px; width: 80%; margin: 0 auto; } .features-list { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; padding: 0 0px; } .features-list > .features-title {
  grid-column: 1 / -1;
  margin-bottom: 0px;
}
@media screen and (min-width: 769px) {
  .features-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 50px;
    /* padding: 0 12px; */
  }
  .features-list > .features-title {
    grid-column: 1 / -1;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 768px) {
  .features-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
    /* padding: 0 12px; */
  }
  .features-list > .features-title {
    margin-bottom: 0px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px 20px 22px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  align-items: flex-start;
  min-height: 180px;
} .feature-item-icon { width: 30px; height: 30px; background-color: #f3e9db; border-radius: 50%; display: flex; align-items: center; justify-content: center; } .feature-item-title { font-size: 18px; font-weight: bold; color: #b48a5a; } .feature-item-description { color: #555; font-size: 14px; } footer { border-top: 1px solid #e0e0e0; padding-top: 30px; margin-bottom: 20px; } .footer-links { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 20px; } .footer-links a { color: #b48a5a; text-decoration: none; font-size: 14px; } .footer-copyright { text-align: center; color: #666; font-size: 14px; } .color-grid-item-1 { background-color: #FF5733; } .color-grid-item-2 { background-color: #33FF57; } .color-grid-item-3 { background-color: #3357FF; } .color-grid-item-4 { background-color: #F033FF; } .color-grid-item-5 { background-color: #FF33F0; } .color-grid-item-6 { background-color: #33FFF0; } .color-grid-item-7 { background-color: #FFF033; } a { text-decoration: none; color: #b48a5a; } a:hover, a:focus, a:active { text-decoration: none; color: #8c6a3f; }
@media screen and (max-width: 768px) {
  .container {
    padding: 10px 12px;
  }
  header {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }
  .main-navigation {
    gap: 0px;
  }
  .main-navigation a {
    padding: 6px 12px;
    font-size: 14px;
  }
  .logo-text {
    font-size: 20px;
    text-align: center;
    width: 100%;
  }
  .hero {
    padding: 30px 0 20px;
  }
  .hero h1 {
    font-size: 24px;
  }
  .hero p {
    font-size: 15px;
    padding: 0 5px;
  }
  .app-screenshots {
    gap: 8px;
    margin-bottom: 30px;
  }
  .app-screenshot {
    width: 110px;
    max-width: 100%;
    border-radius: 12px;
  }
  .features-list {
    gap: 20px;
    margin-bottom: 30px;
    /* padding: 0 12px; */
  }
  .feature-item-title {
    font-size: 16px;
  }
  .feature-item-description {
    font-size: 13px;
  }
  .footer-links {
    gap: 15px;
    font-size: 13px;
  }
  .footer-copyright {
    font-size: 12px;
  }
  .feature-item {
    padding: 14px;
  }
}
@media screen and (max-width: 480px) {
  .container {
    padding: 4px 1rem;
  }
  .hero h1 {
    font-size: 18px;
  }
  .app-screenshot {
    width: 80px;
    max-width: 100%;
    border-radius: 8px;
  }
  .logo-text {
    font-size: 16px;
  }
}
.app-screenshots-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.slider-btn {
  background: #fff;
  border: 1px solid #b48a5a;
  color: #b48a5a;
  font-size: 22px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  margin: 0 8px;
  display: none;
  z-index: 2;
}
.slider-img-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .app-screenshots-slider {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding-left: 8px;
    padding-right: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .slider-btn {
    display: block;
  }
  .slider-img-wrapper {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .slider-img {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: block;
    border-radius: 12px;
    box-sizing: border-box;
  }
  .slider-indicators {
    margin-top: 16px;
    margin-bottom: 0;
    width: 100%;
    justify-content: center;
  }
}
@media screen and (min-width: 769px) {
  .slider-btn {
    display: none !important;
  }
  .slider-img-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 16px;
  }
  .slider-img {
    display: block !important;
    width: calc(25% - 12px);
    max-width: none;
    margin: 0;
    border-radius: 20px;
    box-sizing: border-box;
    object-fit: cover;
  }
}
.slider-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  gap: 8px;
}
.slider-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0e0e0;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.slider-indicator.active {
  background: #b48a5a;
  transform: scale(1.2);
}
@media screen and (min-width: 769px) {
  .slider-indicators {
    display: none;
  }
}
.logo-icon {
  width: 3.5rem;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 22%;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.12); */
  border: 1.5px solid #eee;
  background: #fff;
}
.appstore-download {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.features-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0px;
  color: #b48a5a;
  font-weight: 700;
}

/* Why Choose Section */
.why-choose {
  max-width: 1000px;
  margin: 0 auto 50px auto;
  /* padding: 0 12px; */
  text-align: center;
}

.why-choose h2 {
  font-size: 2rem;
  margin-bottom: 32px;
  color: #b48a5a;
  font-weight: 700;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 30px;
}

.why-choose-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 24px 22px;
  text-align: center;
}

.why-choose-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #b48a5a;
  font-weight: 600;
}

.why-choose-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Download Section */
.download-section {
  max-width: 1000px;
  margin: 0 auto 50px auto;
  padding: 0 12px;
  text-align: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 40px 24px;
}

.download-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #b48a5a;
  font-weight: 700;
}

.download-section p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.faq-section {
  max-width: 1000px;
  margin: 0 auto 50px auto;
  /* padding: 0 12px; */
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 32px;
  color: #b48a5a;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 24px 22px;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #b48a5a;
  font-weight: 600;
}

.faq-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Design for new sections */
@media screen and (max-width: 900px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .why-choose {
    margin-bottom: 30px;
  }
  
  .guides-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .guides-section {
    margin: 40px 0;
  }
  
  .download-section {
    margin-bottom: 30px;
    padding: 30px 20px;
  }
  
  .faq-section {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .why-choose h2,
  .guides-section h2,
  .download-section h2,
  .faq-section h2 {
    font-size: 1.5rem;
  }
  
  .why-choose-item {
    padding: 20px 18px;
  }
  
  .download-section {
    padding: 25px 18px;
  }
  
  .faq-item {
    padding: 20px 18px;
  }
}

/* How It Works Section Styles */
.how-it-works {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #f3e9db 100%);
  margin: 40px 0;
  border-radius: 20px;
}

.how-it-works h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #b48a5a;
  font-weight: 700;
}

.how-it-works-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #b48a5a;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #b48a5a, #8c6a3f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.5rem;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.step p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.how-it-works-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-highlight {
  text-align: center;
  padding: 20px 15px;
}

.feature-highlight i {
  font-size: 2rem;
  color: #b48a5a;
  margin-bottom: 15px;
}

.feature-highlight h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
}

.feature-highlight p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Responsive Design for How It Works */
@media screen and (max-width: 900px) {
  .how-it-works-steps {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  
  .how-it-works-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
  }
  
  .how-it-works {
    /* margin: 30px 20px; */
    padding: 40px 20px;
  }

}

@media screen and (max-width: 600px) {
  .how-it-works h2 {
    font-size: 2rem;
  }
  
  .how-it-works-subtitle {
    font-size: 1.1rem;
  }
  
  .how-it-works-features {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .step {
    padding: 25px 15px;
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

/* Guide Content Styles */
.guide-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.guide-content h1 {
  font-size: 2.5rem;
  color: #b48a5a;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

.guide-content h2 {
  font-size: 1.8rem;
  color: #333;
  margin: 40px 0 20px 0;
  padding-top: 20px;
  border-top: 2px solid #f3e9db;
  font-weight: 600;
}

.guide-content h3 {
  font-size: 1.4rem;
  color: #b48a5a;
  margin: 25px 0 15px 0;
  font-weight: 600;
}

.guide-content p {
  margin-bottom: 20px;
  color: #444;
  font-size: 1rem;
}

.guide-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.guide-content li {
  margin-bottom: 10px;
  color: #444;
}

.guide-content strong {
  color: #333;
  font-weight: 600;
}

.hero-image {
  margin: 25px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e0d5;
}

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

.guide-intro {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  margin: 30px 0;
  border-left: 4px solid #b48a5a;
}

.guide-intro p {
  font-size: 1.1rem;
  color: #555;
  margin: 0;
  font-style: italic;
}

.guide-section {
  margin: 40px 0;
  padding: 25px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.call-to-action {
  background: linear-gradient(135deg, #b48a5a, #8c6a3f);
  color: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin: 50px 0;
}

.call-to-action h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: white;
}

.call-to-action p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}

.app-downloads {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-block;
  transition: transform 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-3px);
}

.download-btn img {
  height: 50px;
  width: auto;
}

/* Responsive Design for Guide Content */
@media screen and (max-width: 768px) {
  .guide-content h1 {
    font-size: 2rem;
  }
  
  .guide-content h2 {
    font-size: 1.5rem;
  }
  
  .guide-content h3 {
    font-size: 1.2rem;
  }
  
  .guide-section {
    padding: 20px;
    margin: 30px 0;
  }
  
  .call-to-action {
    padding: 30px 20px;
    margin: 40px 0;
  }
  
  .call-to-action h3 {
    font-size: 1.5rem;
  }
}

/* Footer Styles */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.footer-section h3,
.footer-section h4 {
  color: #b48a5a;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-section p {
  color: #666;
  margin-bottom: 10px;
  line-height: 1.6;
}

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

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

.footer-section ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #b48a5a;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  color: #666;
  font-size: 14px;
}

/* Responsive Design for Footer */
@media screen and (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
}

/* Blog Content Styles */
.blog-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
  line-height: 1.8;
}

.blog-content h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
}

.blog-content h2 {
  font-size: 1.8rem;
  color: #34495e;
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #b48a5a;
}

.blog-content h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin: 1.5rem 0 0.8rem 0;
}

.blog-content p {
  margin-bottom: 1.2rem;
  color: #2c3e50;
  font-size: 1.1rem;
}

.blog-content ul, .blog-content ol {
  margin: 1rem 0 1rem 2rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.blog-content strong {
  color: #b48a5a;
  font-weight: 600;
}

.blog-content a {
  color: #b48a5a;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.blog-content a:hover {
  color: #8c6a3f;
}

/* Blog Meta Information */
.blog-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 1.5rem 0 2rem 0;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #b48a5a;
  flex-wrap: wrap;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.95rem;
  font-weight: 500;
}

.blog-meta .date::before {
  content: "📅";
  font-size: 1.1rem;
}

.blog-meta .category::before {
  content: "🏷️";
  font-size: 1.1rem;
}

.blog-meta .read-time::before {
  content: "⏱️";
  font-size: 1.1rem;
}

/* Blog Introduction */
.blog-intro {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  border-left: 5px solid #b48a5a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-intro p {
  font-size: 1.2rem;
  color: #495057;
  font-style: italic;
  margin: 0;
  line-height: 1.7;
}

/* Blog Sections */
.blog-content section {
  margin: 3rem 0;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
}

.blog-content section:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Table of Contents */
.table-of-contents {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  border: 2px solid #b48a5a;
}

.table-of-contents h2 {
  color: #b48a5a;
  border-bottom: none;
  margin-bottom: 1rem;
  text-align: center;
}

.table-of-contents ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.table-of-contents li {
  margin: 0.8rem 0;
  padding: 0.5rem 0;
}

.table-of-contents a {
  color: #495057;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
}

.table-of-contents a:hover {
  background-color: #b48a5a;
  color: white;
  transform: translateX(5px);
}

/* Call to Action Boxes */
.call-to-action {
  background: linear-gradient(135deg, #b48a5a 0%, #8c6a3f 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(180, 138, 90, 0.3);
}

.call-to-action h3 {
  color: white;
  margin-bottom: 1rem;
}

.call-to-action p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

/* Responsive Blog Design */
@media screen and (max-width: 768px) {
  .blog-content {
    padding: 15px 0;
  }
  
  .blog-content h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .blog-content h2 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.8rem 0;
  }
  
  .blog-content h3 {
    font-size: 1.2rem;
    margin: 1.2rem 0 0.6rem 0;
  }
  
  .blog-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .blog-meta {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .blog-intro {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
  
  .blog-intro p {
    font-size: 1.1rem;
  }
  
  .blog-content section {
    margin: 2rem 0;
    padding: 1.5rem;
  }
  
  .table-of-contents {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
  
  .call-to-action {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
}

@media screen and (max-width: 480px) {
  .blog-content h1 {
    font-size: 1.8rem;
  }
  
  .blog-content h2 {
    font-size: 1.3rem;
  }
  
  .blog-content h3 {
    font-size: 1.1rem;
  }
  
  .blog-content p {
    font-size: 0.95rem;
  }
  
  .blog-meta {
    padding: 0.8rem;
  }
  
  .blog-meta span {
    font-size: 0.9rem;
  }
  
  .blog-intro {
    padding: 1rem;
  }
  
  .blog-intro p {
    font-size: 1rem;
  }
  
  .blog-content section {
    padding: 1rem;
  }
  
  .table-of-contents {
    padding: 1rem;
  }
  
  .call-to-action {
    padding: 1rem;
  }
}

/* Blog Footer */
.blog-footer {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 15px;
  margin: 3rem 0 1rem 0;
  border-top: 3px solid #b48a5a;
  text-align: center;
}

.blog-footer h3 {
  color: #b48a5a;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.blog-footer p {
  color: #6c757d;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Blog Post (Alternative Layout) */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
  line-height: 1.8;
}

.blog-post h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
}

.blog-post h2 {
  font-size: 1.8rem;
  color: #34495e;
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #b48a5a;
}

.blog-post h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin: 1.5rem 0 0.8rem 0;
}

.blog-post p {
  margin-bottom: 1.2rem;
  color: #2c3e50;
  font-size: 1.1rem;
}

.blog-post ul, .blog-post ol {
  margin: 1rem 0 1rem 2rem;
}

.blog-post li {
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.blog-post strong {
  color: #b48a5a;
  font-weight: 600;
}

.blog-post a {
  color: #b48a5a;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.blog-post a:hover {
  color: #8c6a3f;
}

/* Responsive adjustments for blog-footer and blog-post */
@media screen and (max-width: 768px) {
  .blog-footer {
    padding: 1.5rem;
    margin: 2rem 0 1rem 0;
  }
  
  .blog-footer h3 {
    font-size: 1.2rem;
  }
  
  .blog-footer p {
    font-size: 0.95rem;
  }
  
  .blog-post {
    padding: 15px 0;
  }
  
  .blog-post h1 {
    font-size: 2rem;
  }
  
  .blog-post h2 {
    font-size: 1.5rem;
  }
  
  .blog-post h3 {
    font-size: 1.2rem;
  }
  
  .blog-post p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .blog-footer {
    padding: 1rem;
  }
  
  .blog-footer h3 {
    font-size: 1.1rem;
  }
  
  .blog-footer p {
    font-size: 0.9rem;
  }
  
  .blog-post h1 {
    font-size: 1.8rem;
  }
  
  .blog-post h2 {
    font-size: 1.3rem;
  }
  
  .blog-post h3 {
    font-size: 1.1rem;
  }
  
  .blog-post p {
    font-size: 0.95rem;
  }
}

/* Blog Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.tag {
  background-color: #b48a5a;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tag:hover {
  background-color: #8c6a3f;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Share Section */
.share-section {
  text-align: center;
  margin-bottom: 1rem;
}

.share-section h4 {
  color: #6c757d;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
  display: inline-block;
}

.share-btn.facebook {
  background-color: #1877f2;
}

.share-btn.twitter {
  background-color: #1da1f2;
}

.share-btn.pinterest {
  background-color: #e60023;
}

.share-btn.email {
  background-color: #6c757d;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* Responsive adjustments for tags and share buttons */
@media screen and (max-width: 768px) {
  .tags {
    gap: 0.4rem;
    margin-bottom: 1.5rem;
  }
  
  .tag {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .share-buttons {
    gap: 0.8rem;
  }
  
  .share-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 480px) {
  .tags {
    gap: 0.3rem;
    margin-bottom: 1rem;
  }
  
  .tag {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }
  
  .share-buttons {
    gap: 0.6rem;
  }
  
  .share-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  
  .share-section h4 {
    font-size: 1rem;
  }
}

/* Post Header and Meta */
.post-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
}

.post-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.post-date, .post-category {
  color: #6c757d;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  background-color: #f8f9fa;
  border-radius: 20px;
  border: 1px solid #e9ecef;
}

.post-content {
  line-height: 1.8;
}

.lead {
  font-size: 1.3rem;
  color: #495057;
  font-style: italic;
  text-align: center;
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #b48a5a;
}

/* Guide Section */
.guide-section {
  background-color: #ffffff;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
}

.guide-section:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Guide Conclusion */
.guide-conclusion {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 15px;
  margin: 3rem 0;
  border-left: 5px solid #b48a5a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.guide-conclusion p {
  color: #495057;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #b48a5a 0%, #8c6a3f 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  margin: 3rem 0;
  text-align: center;
  box-shadow: 0 8px 30px rgba(180, 138, 90, 0.3);
}

.cta-section h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

/* App Buttons */
.app-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.appstore-download {
  height: 50px;
  transition: transform 0.3s ease;
}

/* Inline CTA - Mid-article promotion */
.inline-cta {
  background: linear-gradient(135deg, #faf6f1 0%, #f5ede3 100%);
  border-left: 4px solid #b48a5a;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 12px 12px 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Ensure inline-cta link has no underline */
.inline-cta a {
  text-decoration: none;
}

.inline-cta-icon {
  font-size: 2.5rem;
  color: #b48a5a;
  flex-shrink: 0;
}

.inline-cta-content {
  flex: 1;
  min-width: 200px;
}

.inline-cta-content strong {
  display: block;
  color: #5a4a3a;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.inline-cta-content span {
  color: #7a6a5a;
  font-size: 0.95rem;
}

.inline-cta .appstore-download {
  height: 40px;
}

@media (max-width: 480px) {
  .inline-cta {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }

  .inline-cta-icon {
    font-size: 2rem;
  }

  .inline-cta .appstore-download {
    height: 38px;
  }
}

.appstore-download:hover {
  transform: scale(1.05);
}

/* Related Content */
.related-content {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  margin: 3rem 0;
  border: 2px solid #e9ecef;
}

.related-content h3 {
  color: #b48a5a;
  margin-bottom: 1rem;
  text-align: center;
}

.related-content ul {
  list-style: none;
  padding: 0;
}

.related-content li {
  margin: 0.8rem 0;
  padding: 0.5rem 0;
}

.related-content a {
  color: #495057;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
}

.related-content a:hover {
  background-color: #b48a5a;
  color: white;
  transform: translateX(5px);
}

/* Back to Home Button */
.back-to-home {
  display: inline-block;
  background-color: #b48a5a;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 2rem 0;
}

.back-to-home:hover {
  background-color: #8c6a3f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180, 138, 90, 0.3);
}

/* Responsive adjustments for new classes */
@media screen and (max-width: 768px) {
  .post-meta {
    gap: 1rem;
  }
  
  .post-date, .post-category {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
  
  .lead {
    font-size: 1.2rem;
    padding: 1.2rem;
    margin: 1.5rem 0;
  }
  
  .guide-section {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
  
  .guide-conclusion {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  .guide-conclusion p {
    font-size: 1rem;
  }
  
  .cta-section {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
  }
  
  .cta-section h2 {
    font-size: 1.6rem;
  }
  
  .cta-section p {
    font-size: 1.1rem;
  }
  
  .related-content {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  .back-to-home {
    padding: 10px 20px;
    margin: 1.5rem 0;
  }
}

@media screen and (max-width: 480px) {
  .post-meta {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .post-date, .post-category {
    font-size: 0.85rem;
    padding: 0.3rem 0.6rem;
  }
  
  .lead {
    font-size: 1.1rem;
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .guide-section {
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .guide-conclusion {
    padding: 1rem;
    margin: 1.5rem 0;
  }
  
  .guide-conclusion p {
    font-size: 0.95rem;
  }
  
  .cta-section {
    padding: 1.5rem 1rem;
    margin: 1.5rem 0;
  }
  
  .cta-section h2 {
    font-size: 1.4rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
  
  .related-content {
    padding: 1rem;
    margin: 1.5rem 0;
  }
  
  .back-to-home {
    padding: 8px 16px;
    margin: 1rem 0;
    font-size: 0.9rem;
  }
}

/* Blog Index Styles */
.blog-index {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-header {
  text-align: center;
  margin: 40px 0;
  padding: 0 20px;
}

.blog-header h1 {
  color: #b48a5a;
  font-size: 36px;
  margin-bottom: 20px;
}

.blog-header p {
  color: #666;
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.blog-controls {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.search-input {
  width: 100%;
  padding: 15px 45px 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: #b48a5a;
  box-shadow: 0 0 0 3px rgba(180, 138, 90, 0.1);
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #b48a5a;
  font-size: 18px;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.filter-btn {
  background-color: #f3e9db;
  color: #b48a5a;
  border: 2px solid transparent;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #b48a5a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180, 138, 90, 0.3);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 40px 0;
  padding: 0 20px;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(180, 138, 90, 0.2);
  border-color: #b48a5a;
}

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

.blog-card h2 {
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-card h2 a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card h2 a:hover {
  color: #b48a5a;
}

.blog-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.blog-meta .category {
  background-color: #b48a5a;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

.blog-meta .read-time {
  color: #888;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.blog-meta .read-time::before {
  content: "⏱ ";
  margin-right: 5px;
}

.blog-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-tags .tag {
  background-color: #f3e9db;
  color: #b48a5a;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-tags .tag:hover {
  background-color: #b48a5a;
  color: white;
  transform: translateY(-1px);
}

/* Responsive Design for Blog Index */
@media screen and (max-width: 768px) {
  .blog-header h1 {
    font-size: 28px;
  }
  
  .blog-header p {
    font-size: 16px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .blog-card-content {
    padding: 20px;
  }
  
  .category-filters {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .blog-header h1 {
    font-size: 24px;
  }
  
  .blog-header p {
    font-size: 15px;
  }
  
  .blog-controls {
    margin: 30px 0;
  }
  
  .search-input {
    padding: 12px 40px 12px 15px;
    font-size: 14px;
  }
  
  .blog-card-content {
    padding: 15px;
  }
}

/* Related Posts System Styles */
.related-content {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  margin: 3rem 0;
  border: 2px solid #e9ecef;
}

.related-content h3 {
  color: #b48a5a;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
}

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

.related-post-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.related-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(180, 138, 90, 0.15);
  border-color: #b48a5a;
}

.related-post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-post-card h4 {
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.related-post-card h4 a {
  color: #2c3e50;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.related-post-card h4 a:hover {
  color: #ffffff;
}

.related-post-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.related-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.related-post-meta .read-time {
  color: #888;
  font-size: 0.8rem;
  font-weight: 500;
  background-color: #f8f9fa;
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
}

.related-post-tags {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.related-post-tags .tag {
  background-color: #f3e9db;
  color: #b48a5a;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.related-post-tags .tag:hover {
  background-color: #b48a5a;
  color: white;
  transform: translateY(-1px);
}

/* Responsive Design for Related Posts */
@media screen and (max-width: 768px) {
  .related-content {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  .related-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .related-post-card {
    padding: 1.2rem;
  }
  
  .related-post-card h4 a {
    font-size: 1rem;
  }
  
  .related-post-card p {
    font-size: 0.85rem;
  }
  
  .related-post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}

@media screen and (max-width: 480px) {
  .related-content {
    padding: 1rem;
    margin: 1.5rem 0;
  }
  
  .related-content h3 {
    font-size: 1.1rem;
  }
  
  .related-post-card {
    padding: 1rem;
  }
  
  .related-post-card h4 a {
    font-size: 0.95rem;
  }
  
  .related-post-card p {
    font-size: 0.8rem;
  }
  
  .related-post-tags .tag {
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
  }
}

/* No Results Message Styles */
.no-results-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e9ecef;
  margin: 2rem 0;
}

.no-results-content {
  max-width: 400px;
  margin: 0 auto;
}

.no-results-content h3 {
  color: #b48a5a;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.no-results-content p {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.clear-search-btn {
  background-color: #b48a5a;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.clear-search-btn:hover {
  background-color: #8c6a3f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180, 138, 90, 0.3);
}

/* Responsive Design for No Results Message */
@media screen and (max-width: 768px) {
  .no-results-message {
    padding: 2rem 1.5rem;
    margin: 1.5rem 0;
  }
  
  .no-results-content h3 {
    font-size: 1.3rem;
  }
  
  .no-results-content p {
    font-size: 0.95rem;
  }
  
  .clear-search-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .no-results-message {
    padding: 1.5rem 1rem;
    margin: 1rem 0;
  }
  
  .no-results-content h3 {
    font-size: 1.2rem;
  }
  
  .no-results-content p {
    font-size: 0.9rem;
  }
  
  .clear-search-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}