  body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
  }

  a {
      color: inherit;
      text-decoration: none;
  }

  a:hover {
      color: #e76f51;
  }

  .topbar {
      background-color: #2c3e50;
      color: white;
      padding: 0px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;

      @media (max-width: 600px) {
          display: none;
      }
  }

  .contact-info {
      display: flex;
      gap: 20px;

      .container {
          padding: 0 15px;
      }
  }

  /* Footer Styles */
  .footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 50px 0 20px;
      margin-top: 50px;
  }

  .footer-container {
      max-width: 100%;
      margin: 0 auto;
      padding: 0 20px;
  }

  .footer-content {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 30px;
      margin-bottom: 30px;
  }

  .footer-column h3 {
      color: #fff;
      font-size: 1.2rem;
      margin-bottom: 20px;
      font-weight: 600;
  }

  .footer-column p {
      line-height: 1.6;
      margin-bottom: 20px;
      color: #bdc3c7;
      font-size: 0.9rem;
  }

  .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-links li {
      margin-bottom: 8px;
  }

  .footer-links a {
      color: #bdc3c7;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s ease;
      line-height: 1.4;
  }

  .footer-links a:hover {
      color: #3498db;
  }

  .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 20px;
  }

  .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: #34495e;
      border-radius: 50%;
      color: #ecf0f1;
      transition: all 0.3s ease;
  }

  .social-icons a:hover {
      background-color: #3498db;
      transform: translateY(-2px);
  }

  .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      color: #bdc3c7;
  }

  .contact-item i {
      margin-right: 10px;
      color: #3498db;
      font-size: 1.2rem;
  }

  .contact-item span {
      font-size: 0.9rem;
  }

  /* Footer Responsive Design */
  @media (max-width: 992px) {
      .footer-content {
          grid-template-columns: repeat(3, 1fr);
      }
  }

  @media (max-width: 768px) {
      .footer {
          padding: 40px 0 20px;
      }

      .footer-content {
          grid-template-columns: repeat(2, 1fr);
          gap: 25px;
      }

      .footer-column h3 {
          font-size: 1.1rem;
          margin-bottom: 15px;
      }

      .footer-container {
          padding: 0 15px;
      }
  }

  @media (max-width: 480px) {
      .footer-content {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .footer-column {
          text-align: center;
      }

      .social-icons {
          justify-content: center;
      }

      .contact-item {
          justify-content: center;
      }
  }

  /* Load More Functionality */
  .hidden-tour {
      display: none;
  }

  .load-more-container {
      text-align: center;
      margin-top: 40px;
  }

  .load-more-btn {
      background: linear-gradient(135deg, #ff6b6b, #ffa726);
      color: white;
      border: none;
      padding: 15px 30px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 25px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  }

  .load-more-btn:hover {
      background: linear-gradient(135deg, #ff5252, #ff9800);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  }

  .load-more-btn:active {
      transform: translateY(0);
  }

  .load-more-btn.hidden {
      display: none;
  }

  .contact-info span {
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 5px;
  }

  .material-icons {
      font-size: 16px;
  }

  .nav-links {
      display: flex;
      gap: 20px;
  }

  .nav-links a {
      color: white;
      text-decoration: none;
      padding: 5px 10px;
      border-radius: 3px;
      transition: background-color 0.3s;
  }

  .nav-links a:hover {
      color: #e76f51;
      background-color: #34495e;
  }

  @media (max-width: 768px) {
      .contact-info {
          flex-direction: column;
          gap: 5px;
          text-align: center;
      }
  }

  /* Simple Header Styles */
  .main-header {
      background-color: #fff;
      border-bottom: 2px solid #ddd;
      padding: 15px 0;
  }

  .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .logo p {
      margin: 0;
      font-size: 1.3rem;
      color: #333;
      font-weight: 600;
  }

  /* Simple Navigation */
  .nav-menu {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 25px;
  }

  .nav-menu a {
      color: #333;
      text-decoration: none;
      font-size: 1rem;
      padding: 8px 12px;
      transition: color 0.3s;
  }

  .nav-menu a:hover {
      color: #e76f51;
  }

  /* Simple Hamburger Menu */
  .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 6px;
      background-color: rgba(255, 255, 255, 0.9);
      border-radius: 4px;
      position: relative;
      z-index: 9999;
  }

  .hamburger span {
      width: 22px;
      height: 2px;
      background-color: #333;
      margin: 3px 0;
      transition: 0.3s;
  }

  .hamburger.active {
      background-color: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .hamburger.active span:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
      opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
      .header-container {
          padding: 0 10px;
      }

      .main-header {
          padding: 5px 0;
      }

      .hamburger {
          display: flex;
          position: relative;
          z-index: 10000;
      }

      .nav-menu {
          position: fixed;
          left: -100%;
          top: 0;
          flex-direction: column;
          background-color: #fff;
          width: 100%;
          height: 100vh;
          text-align: center;
          transition: 0.3s;
          padding-top: 80px;
          gap: 0;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          z-index: 9998;
      }

      .nav-menu.active {
          left: 0;
      }

      .close-btn {
          position: absolute;
          top: 20px;
          right: 20px;
      }

      .close-menu {
          background: none;
          border: none;
          font-size: 2rem;
          color: #333;
          cursor: pointer;
          padding: 5px;
          width: 40px;
          height: 40px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 50%;
          transition: all 0.3s ease;
      }

      .close-menu:hover {
          background-color: #f0f0f0;
          color: #e76f51;
      }

      .nav-menu li {
          margin: 15px 0;
      }

      .nav-menu a {
          font-size: 1.1rem;
          display: block;
          padding: 15px;
      }

      .logo h1 {
          font-size: 1.5rem;
      }
  }

  /* Hero Banner Styles */
  .hero-banner {
      height: auto;
      background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 25%, #ff8a65 50%, #ffab40 75%, #ff7043 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
  }

  .hero-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg,
              rgba(255, 107, 107, 0.8) 0%,
              rgba(255, 167, 38, 0.8) 25%,
              rgba(255, 138, 101, 0.8) 50%,
              rgba(255, 171, 64, 0.8) 75%,
              rgba(255, 112, 67, 0.8) 100%);
      animation: gradientShift 6s ease-in-out infinite;
  }

  @keyframes gradientShift {

      0%,
      100% {
          transform: translateX(0);
      }

      50% {
          transform: translateX(-10px);
      }
  }

  .hero-content {
      text-align: center;
      color: white;
      z-index: 2;
      position: relative;
      max-width: 800px;
      padding: 3vw 20px;
  }

  .hero-title {
      font-size: 2.5rem;
      font-weight: bold;
      margin: 0 0 15px 0;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      letter-spacing: 1px;
  }

  .hero-subtitle {
      font-size: 1.2rem;
      margin: 0 0 25px 0;
      opacity: 0.95;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }

  .hero-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
  }

  .btn-primary,
  .btn-secondary {
      padding: 12px 25px;
      text-decoration: none;
      border-radius: 25px;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .btn-primary {
      background-color: #fff;
      color: #ff6b6b;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      background-color: #f8f8f8;
  }

  .btn-secondary {
      background-color: transparent;
      color: white;
      border: 2px solid white;
  }

  .btn-secondary:hover {
      background-color: white;
      color: #ff6b6b;
      transform: translateY(-2px);
  }

  /* Responsive Hero Banner */
  @media (max-width: 768px) {
      .hero-title {
          font-size: 2rem;
      }

      .hero-subtitle {
          font-size: 1rem;
      }

      .hero-buttons {
          flex-direction: row;
          gap: 10px;
      }

      .btn-primary,
      .btn-secondary {
          width: auto;
          padding: 10px 20px;
          text-align: center;
          border-radius: 5px;
          font-weight: 500;
          text-transform: none;
          letter-spacing: 0;
          font-size: 0.9rem;
      }

      .btn-primary {
          background-color: #fff;
          color: #ff6b6b;
          box-shadow: none;
          border: 1px solid #fff;
      }

      .btn-primary:hover {
          transform: none;
          box-shadow: none;
          background-color: #f5f5f5;
      }

      .btn-secondary {
          background-color: transparent;
          color: white;
          border: 1px solid white;
      }

      .btn-secondary:hover {
          background-color: white;
          color: #ff6b6b;
          transform: none;
      }
  }

  @media (max-width: 480px) {
      .hero-title {
          font-size: 1.2rem;
      }

      .hero-subtitle {
          font-size: 0.9rem;
      }

      .hero-buttons {
          flex-direction: column;
          gap: 8px;
          align-items: center;
      }

      .btn-primary,
      .btn-secondary {
          width: 180px;
          padding: 8px 16px;
          font-size: 0.85rem;
      }
  }

  /* Tour Grid Section Styles */
  .tour-grid-section {
      padding: 20px 0;
      background-color: #f8f9fa;
  }

  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .section-title {
      text-align: center;
      font-size: 2.5rem;
      color: #333;
      margin-bottom: 20px;
      font-weight: 600;
  }

  .section-description {
      text-align: center;
      font-size: 16px;
      line-height: 1.6;
      color: #333;
      max-width: 80vw;
      margin: 0 auto 20px;
  }

  @media (max-width: 768px) {
      .section-description {
          max-width: 95vw;
      }
  }

  .tour-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-top: 40px;
  }

  .tour-box {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      position: relative;
  }

  .tour-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }

  .tour-image {
      position: relative;
      height: 250px;
      overflow: hidden;
  }

  .tour-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
  }

  .tour-box:hover .tour-image img {
      transform: scale(1.05);
  }

  .price-tag {
      position: absolute;
      top: 15px;
      right: 15px;
      background: linear-gradient(135deg, #ff6b6b, #ffa726);
      color: white;
      padding: 8px 16px;
      border-radius: 25px;
      font-weight: 600;
      font-size: 1.1rem;
      box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  }

  .tour-content {
      padding: 25px;
  }

  .tour-content h2 {
      font-size: 1.4rem;
      color: #333;
      margin: 0 0 20px 0;
      font-weight: 600;
  }

  .inclusions {
      list-style: none;
      padding: 0;
      margin: 0 0 25px 0;
  }

  .inclusions li {
      padding: 6px 0;
      color: #666;
      position: relative;
      padding-left: 25px;
      font-size: 0.95rem;
  }

  .inclusions li:before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #28a745;
      font-weight: bold;
      font-size: 1rem;
  }

  .tour-buttons {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
  }

  .btn-view-more,
  .btn-book-now {
      flex: 1;
      text-align: center;
      padding: 12px 20px;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 500;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 0.9rem;
  }

  .btn-view-more {
      background-color: #f8f9fa;
      color: #333;
      border: 2px solid #e9ecef;
  }

  .btn-view-more:hover {
      background-color: #e9ecef;
      border-color: #dee2e6;
  }

  .btn-book-now {
      background: linear-gradient(135deg, #ff6b6b, #ffa726);
      color: white;
      border: 2px solid transparent;
  }

  .btn-book-now:hover {
      color: white;
      background: linear-gradient(135deg, #ff5252, #ff9800);
      transform: translateY(-1px);
  }

  /* Responsive Tour Grid */
  @media (max-width: 768px) {
      .tour-grid-section {
          padding: 10px 0;
      }

      .section-title {
          font-size: 2rem;
          margin-bottom: 10px;
      }

      .tour-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .tour-box {
          margin: 0 10px;
      }

      .tour-content {
          padding: 20px 5px;
      }

      .tour-buttons {
          flex-direction: column;
      }

      .btn-view-more,
      .btn-book-now {
          flex: none;
      }
  }

  @media (max-width: 480px) {
      .section-title {
          font-size: 1.3rem;
      }

      .tour-content h2 {
          font-size: 1.2rem;
      }

      .price-tag {
          font-size: 1rem;
          padding: 6px 12px;
      }

      .container {
          padding: 0;
      }
  }

  /* WhatsApp Floating Button */
  .whatsapp-float {
      position: fixed !important;
      bottom: 20px !important;
      right: 20px !important;
      width: 60px !important;
      height: 60px !important;
      background: #25d366 !important;
      border-radius: 50% !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
      z-index: 9999 !important;
      transition: all 0.3s ease !important;
      text-decoration: none !important;
      border: none !important;
      outline: none !important;
  }

  .whatsapp-float:hover {
      transform: scale(1.1) !important;
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
      text-decoration: none !important;
  }

  .whatsapp-float i {
      font-size: 28px !important;
      color: white !important;
      line-height: 1 !important;
      font-family: 'Font Awesome 6 Brands' !important;
  }

  /* Tooltip styles */
  .whatsapp-float .tooltip {
      position: absolute !important;
      right: 70px !important;
      top: 50% !important;
      transform: translateY(-50%) !important;
      background: #333 !important;
      color: white !important;
      padding: 8px 12px !important;
      border-radius: 4px !important;
      font-size: 14px !important;
      white-space: nowrap !important;
      opacity: 0 !important;
      visibility: hidden !important;
      transition: all 0.3s ease !important;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
      font-family: 'Poppins', sans-serif !important;
  }

  .whatsapp-float .tooltip::after {
      content: '' !important;
      position: absolute !important;
      top: 50% !important;
      left: 100% !important;
      margin-top: -5px !important;
      border: 5px solid transparent !important;
      border-left-color: #333 !important;
  }

  .whatsapp-float:hover .tooltip {
      opacity: 1 !important;
      visibility: visible !important;
  }

  /* Ensure floating buttons container doesn't interfere */
  .floating-buttons {
      position: relative !important;
      z-index: 9999 !important;
  }

  /* Google Testimonials Section */
  .testimonials-section {
      padding: 60px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }

  .testimonials-header {
      text-align: center;
      margin-bottom: 40px;
  }

  .testimonials-header .section-title {
      font-size: 2.5rem;
      color: #2c3e50;
      margin-bottom: 15px;
      font-weight: bold;
  }

  .testimonials-header .section-subtitle {
      font-size: 1.2rem;
      color: #666;
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
  }

  .google-rating {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
  }

  .rating-stars {
      display: flex;
      gap: 5px;
  }

  .rating-stars i {
      color: #ffc107;
      font-size: 1.5rem;
  }

  .rating-text {
      font-size: 1.1rem;
      color: #2c3e50;
      font-weight: 600;
  }

  .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-bottom: 50px;
  }

  .testimonial-card {
      background: white;
      cursor: pointer;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      border: 1px solid #f0f0f0;
      position: relative;
  }

  .testimonial-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .testimonial-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 15px;
  }

  .customer-info {
      display: flex;
      align-items: center;
      gap: 15px;
  }

  .customer-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
  }

  .customer-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .customer-details h4 {
      margin: 0 0 5px 0;
      font-size: 1.1rem;
      color: #2c3e50;
      font-weight: bold;
  }

  .review-date {
      font-size: 0.9rem;
      color: #666;
  }

  .google-icon {
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #4285f4;
      border-radius: 50%;
      flex-shrink: 0;
  }

  .google-icon i {
      color: white;
      font-size: 1rem;
  }

  .star-rating {
      display: flex;
      gap: 3px;
      margin-bottom: 15px;
  }

  .star-rating i {
      color: #ffc107;
      font-size: 1rem;
  }

  .testimonial-text {
      color: #555;
      line-height: 1.6;
      font-size: 1rem;
      margin: 0;
  }

  .testimonials-cta {
      text-align: center;
  }

  .btn-testimonials {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, #4285f4, #34a853);
      color: white;
      padding: 18px 35px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
  }

  .btn-testimonials:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(66, 133, 244, 0.4);
      color: white;
  }

  .btn-testimonials i {
      font-size: 1.2rem;
  }

  /* Responsive Design for Testimonials */
  @media (max-width: 768px) {
      .testimonials-section {
          padding: 30px 0;
      }

      .testimonials-header .section-title {
          font-size: 2rem;
      }

      .testimonials-grid {
          grid-template-columns: 1fr;
          gap: 25px;
      }

      .testimonial-card {
          padding: 25px 20px;
      }

      .google-rating {
          flex-direction: column;
          gap: 10px;
      }

      .customer-info {
          gap: 12px;
      }

      .customer-avatar {
          width: 40px;
          height: 40px;
      }

      .customer-details h4 {
          font-size: 1rem;
      }

      .testimonial-text {
          font-size: 0.95rem;
      }
  }

  @media (max-width: 480px) {
      .testimonials-header .section-title {
          font-size: 1.8rem;
      }

      .testimonials-header .section-subtitle {
          font-size: 1rem;
      }

      .testimonial-card {
          padding: 20px 15px;
      }

      .btn-testimonials {
          padding: 15px 25px;
          font-size: 1rem;
      }

      .rating-stars i {
          font-size: 1.3rem;
      }

      .rating-text {
          font-size: 1rem;
      }
  }


  @media (max-width: 768px) {
      .whatsapp-float {
          width: 50px !important;
          height: 50px !important;
          bottom: 15px !important;
          right: 15px !important;
      }

      .whatsapp-float i {
          font-size: 24px !important;
      }

      .whatsapp-float .tooltip {
          font-size: 12px !important;
          padding: 6px 10px !important;
          right: 60px !important;
      }
  }

  #content-section {
      max-width: 1200px;
      margin: 40px auto;
      padding: 40px;
  }

  #content-section h2 {
      color: #d97706;
      font-size: 2.5em;
      margin-bottom: 15px;
      margin-top: 20px;
  }

  #content-section p {
      color: #374151;
      font-size: 1.1em;
      line-height: 1.8;
      margin-bottom: 30px;
  }

  #content-section h3 {
      color: #1f2937;
      font-size: 2em;
      margin: 40px 0 20px 0;
      text-align: center;
  }

  .filter-controls {
      display: flex;
      gap: 15px;
      margin-bottom: 30px;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
  }

  .filter-controls input,
  .filter-controls select {
      padding: 12px 20px;
      border: 2px solid #d1d5db;
      border-radius: 10px;
      font-size: 1em;
      transition: all 0.3s;
  }

  .filter-controls input:focus,
  .filter-controls select:focus {
      outline: none;
      border-color: #d97706;
      box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
  }

  .filter-controls input {
      flex: 1;
      min-width: 250px;
  }

  .filter-controls select {
      min-width: 200px;
  }

  .table-container {
      overflow: hidden;
      margin-top: 20px;
      border-radius: 15px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  #content-section table {
      width: 100%;
      border-collapse: collapse;
      background: white;
  }

  #content-section th {
      background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
      color: white;
      padding: 18px;
      text-align: left;
      font-weight: 600;
      font-size: 1em;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  #content-section td {
      padding: 18px;
      border-bottom: 1px solid #e5e7eb;
      color: #374151;
      font-size: 0.95em;
  }

  #content-section tr {
      transition: all 0.3s;
  }

  #content-section tbody tr:hover {
      background: #fef3c7;
      transform: scale(1.01);
  }

  #content-section tr:last-child td {
      border-bottom: none;
  }

  #content-section a {
      color: #2563eb;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s;
  }

  #content-section a:hover {
      color: #d97706;
      text-decoration: underline;
  }

  .price {
      font-weight: bold;
      color: #059669;
      font-size: 1.1em;
  }

  .no-results {
      text-align: center;
      padding: 40px;
      color: #6b7280;
      font-size: 1.2em;
  }

  .stats {
      display: flex;
      gap: 20px;
      margin: 30px 0;
      flex-wrap: wrap;
      justify-content: center;
  }

  .stat-card {
      background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
      color: white;
      padding: 20px 30px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      min-width: 150px;
  }

  .stat-card .number {
      font-size: 2em;
      font-weight: bold;
      margin-bottom: 5px;
  }

  .stat-card .label {
      font-size: 0.9em;
      opacity: 0.9;
  }

  @media (max-width: 768px) {
      #content-section {
          padding: 20px;
      }

      #content-section h2 {
          font-size: 1.8em;
      }

      #content-section th,
      #content-section td {
          padding: 12px 8px;
          font-size: 0.85em;
      }

      .filter-controls {
          flex-direction: column;
      }

      .filter-controls input,
      .filter-controls select {
          width: 80%;
      }
  }