:root {
  --primary-color: #5b47e0;
  --primary-dark: #4636b8;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --danger-color: #ef4444;
  --text-primary: #1f2937;
  --text-secondary: #B7280;
  --text-light: #9ca3af;
  --bg-white: #ffffff;
  --bg-gray: #f9fafb;
  --bg-light: #f3f4f6;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-gray);
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}
p a {
  color: #5b47e0;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
p a:hover {
  text-decoration: underline;
}
.top-bar {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0,
    var(--primary-dark) 100%
  );
  color: #fff;
  padding: 10px 0;
  font-size: 13px;
}
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar i {
  margin-right: 6px;
}
.main-header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 0;
  gap: 30px;
}
.logo div {
  font-size: 1.5em;
  font-weight: 800;
  color: var(--primary-color);
  white-space: nowrap;
  line-height: 1;
}
.logo-today {
  color: #000;
}
.search-bar {
  flex: 1;
  max-width: 500px;
  display: flex;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--bg-white);
}
.search-bar input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  outline: 0;
  font-size: 14px;
  background: 0 0;
}
.search-bar button {
  padding: 12px 20px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.search-bar button:hover {
  background-color: var(--primary-dark);
}

/* =============================================
   MOBILE MENU STYLES
   ============================================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85%;
  height: 100vh;
  background-color: var(--bg-white);
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

/* Dark overlay behind menu */
.mobile-menu.active::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid var(--border-color);
  background-color: var(--primary-color);
  color: white;
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-menu-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.close-menu {
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.close-menu:hover {
  opacity: 0.7;
}

/* Mobile Navigation Links */
.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav > li {
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.mobile-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mobile-nav > li:not(.dropdown) > a:hover,
.mobile-nav li a.active {
  background-color: var(--bg-light);
  color: var(--primary-color);
  padding-left: 25px;
}

.mobile-nav li a i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* Mobile Dropdown Styles */
.mobile-nav li.dropdown {
  position: relative;
}

.mobile-nav li.dropdown > a {
  position: relative;
}

.mobile-nav li.dropdown > a .fa-chevron-down {
  margin-left: auto;
  font-size: 12px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.mobile-nav li.dropdown.active > a {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

.mobile-nav li.dropdown.active > a .fa-chevron-down {
  transform: rotate(180deg);
}

/* Mobile Dropdown Menu - CRITICAL FIX */
.mobile-nav .dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #f8f9fa;
  width: 100%;
  
  /* KEY CHANGES - Remove positioning issues */
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  
  /* Hide by default */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-nav li.dropdown.active > .dropdown-menu {
  max-height: 1000px;
  border-top: 1px solid var(--border-color);
}

.mobile-nav .dropdown-menu li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: block;
  width: 100%;
}

.mobile-nav .dropdown-menu li:last-child {
  border-bottom: none;
}

.mobile-nav .dropdown-menu li a {
  padding: 12px 20px 12px 50px !important;
  font-size: 14px;
  font-weight: 400;
  background-color: transparent;
  display: flex;
  width: 100%;
}

.mobile-nav .dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--primary-color);
  padding-left: 55px !important;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  color: var(--text-primary);
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

/* =============================================
   DESKTOP NAVIGATION
   ============================================= */
.main-nav {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 1000;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  border-radius: 6px;
  transition: var(--transition);
  text-decoration: none;
}

.nav-links li a.active,
.nav-links li a:hover {
  color: var(--primary-color);
  background-color: var(--bg-light);
}

.nav-links li a i {
  font-size: 14px;
}

/* Desktop Dropdown */
.nav-links li.dropdown {
  position: relative;
}

.nav-links li.dropdown > a .fa-chevron-down {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-links li.dropdown:hover > a .fa-chevron-down {
  transform: rotate(180deg);
}

/* Desktop Dropdown Menu */
.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-links li.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links .dropdown-menu li {
  display: block;
  width: 100%;
}

.nav-links .dropdown-menu li a {
  padding: 10px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 0;
  transition: var(--transition);
}

.nav-links .dropdown-menu li a:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
  padding-left: 25px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}


.hero-section {
  background: linear-gradient(135deg, #667eea 0, #764ba2 100%);
  padding: 3em;
  color: #fff;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
  align-items: center;
}
.hero-text h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  text-align: center;
}
.hero-text .highlight {
  color: #ffd93d;
}
.hero-text p {
  font-size: 18px;
  margin-bottom: 0px;
  opacity: 0.95;
  text-align: center;
}
.hero-text > .article-meta{
	margin-top:1em;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  opacity: 0.9;
}
.hero-featured {
  position: relative;
}
.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--accent-color);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  z-index: 10;
}
.hero-featured img {
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: auto;
}
.deals-header-section {
  padding: 30px 0 20px;
  background-color: var(--bg-white);
  border-bottom: 2px solid var(--border-color);
}
.deals-main-header {
  margin-bottom: 25px;
}
.deals-main-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.last-update {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  background-color: var(--bg-light);
  padding: 8px 16px;
  border-radius: 8px;
}

.click-here-link{
	font-size: 0.5em;
    text-decoration: underline;
    color: orange;
    border: 1px solid black;
    text-align: center;
    margin: 0 auto;
	padding: 8px 16px;
}

#update-date {
  color: var(--primary-color);
  font-weight: 600;
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.stat-item {
  background: linear-gradient(135deg, var(--bg-light) 0, var(--bg-white) 100%);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: var(--transition);
}
.stat-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}
.stat-item i {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: block;
}
.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.article-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.article-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin: 60px 0 25px 0;
  line-height: 1.3;
}
.article-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin: 40px 0 20px 0;
}
.article-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #374151;
  margin: 30px 0 15px 0;
}
.article-content p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #4b5563;
  margin: 20px 0 20px 0;
}
.article-content a {
  color: #5b47e0;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.article-content a:hover {
  border-bottom-color: #5b47e0;
}
.article-content ul {
  margin: 20px 0;
  padding-left: 30px;
}
.article-content li {
  font-size: 18px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 12px;
}
.article-content strong {
  color: #1f2937;
  font-weight: 700;
}
.warning-box {
    background: #fef2f2;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #ef4444;
}
.highlight-box {
  background: linear-gradient(135deg, #ede9fe 0, #f3f4f6 100%);
  padding: 30px;
  border-radius: 12px;
  margin: 40px 0;
  border-left: 4px solid #7c3aed;
}
.highlight-box h3 {
  color: #7c3aed;
  margin-top: 0;
}
.tip-box {
  background: #ecfdf5;
  padding: 25px;
  border-radius: 12px;
  margin: 30px 0;
  border-left: 4px solid #10b981;
}
.tip-box strong {
  color: #10b981;
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.highlight {
  color: #ffd93d;
}
.article-cta {
  background: linear-gradient(135deg, #667eea 0, #764ba2 100%);
  color: #fff;
  padding: 50px;
  border-radius: 16px;
  margin: 60px 0;
  text-align: center;
}
.article-cta h3 {
  color: #fff;
  font-size: 32px;
  margin: 0 0 20px 0;
}
.article-cta p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin: 0 0 30px 0;
}
.article-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.article-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #fff;
  color: #5b47e0;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.article-cta .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.newsletter-section {
  background: linear-gradient(135deg, #4f46e5 0, #7c3aed 100%);
  padding: 50px 0;
  color: #fff;
}
.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.newsletter-text h3 {
  font-size: 28px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.newsletter-text p {
  font-size: 16px;
  opacity: 0.95;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 450px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  outline: 0;
}
.newsletter-form button {
  padding: 14px 28px;
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}
.newsletter-form button:hover {
  background-color: #d97706;
  transform: translateY(-2px);
}
.main-footer {
  background-color: var(--text-primary);
  color: #fff;
  padding: 60px 0 30px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.footer-column ul li a:hover {
  color: #fff;
  padding-left: 5px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}
.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-bottom .disclaimer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-xl);
  z-index: 2000;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}
.mobile-menu-header h3 {
  font-size: 20px;
}
.close-menu {
  font-size: 24px;
  color: var(--text-primary);
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-nav {
  padding: 20px;
}
.mobile-nav li {
  margin-bottom: 10px;
}
.mobile-nav li a {
  display: block;
  padding: 12px 16px;
  color: var(--text-primary);
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-nav li a:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0,
    var(--primary-dark) 100%
  );
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.back-to-top.active {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translateY(-5px);
}
.intro-section {
  background: #f9fafb;
  padding: 70px 0;
  border-bottom: 1px solid #e5e7eb;
}
.intro-header {
  text-align: center;
  margin-bottom: 40px;
}
.intro-label {
  display: inline-block;
  background: #5b47e0;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.intro-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin: 15px 0 0 0;
  line-height: 1.3;
}
.intro-content {
  background: #fff;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.intro-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
  margin: 0 0 20px 0;
  font-weight: 400;
}
.intro-content p:last-child {
  margin-bottom: 0;
}
.intro-content a {
  color: #5b47e0;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.intro-content a:hover {
  color: #4338ca;
  border-bottom-color: #4338ca;
}
.intro-cta {
  background: #f3f4f6;
  padding: 20px 25px;
  border-radius: 8px;
  margin-top: 25px;
}
.intro-cta p {
  margin: 0;
  font-size: 18px;
  color: #1f2937;
}
.trust-badge {
  background: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(91, 71, 224, 0.15);
}
.trust-badge i {
  font-size: 28px;
  color: #5b47e0;
  margin-bottom: 10px;
  display: block;
}
.trust-badge span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.how-it-works-section {
  background: #fff;
  padding: 80px 0;
}
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 15px 0;
}
.section-header p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}
.categories-section {
  background: #f9fafb;
  padding: 80px 0;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}
.category-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #e5e7eb;
  display: block;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #5b47e0;
}
.category-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
}
.category-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0 0 20px 0;
}
.category-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5b47e0;
  font-weight: 600;
  font-size: 15px;
}
.category-link i {
  transition: transform 0.3s ease;
}
.category-card:hover .category-link i {
  transform: translateX(5px);
}
.categories-cta {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  margin-top: 40px;
  border-left: 4px solid #5b47e0;
}
.categories-cta p {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
  margin: 0;
}
.faq-section {
  background: #fff;
  padding: 80px 0;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: #5b47e0;
}
.faq-question {
  width: 100%;
  background: #f9fafb;
  border: none;
  padding: 25px 30px;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.faq-question:hover {
  background: #f3f4f6;
}
.faq-question i {
  color: #5b47e0;
  font-size: 16px;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 1000px;
}
.faq-answer p {
  padding: 0 30px 25px;
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin: 0;
}
.about-tory-section {
  background: linear-gradient(135deg, #667eea 0, #764ba2 100%);
  padding: 80px 0;
  color: #fff;
}
.about-tory-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
}
.about-tory-image {
  position: relative;
}
.about-tory-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  color: #5b47e0;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.about-badge i {
  color: gold;
}
.section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.about-tory-text h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 25px 0;
}
.about-tory-text p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 20px 0;
}
.about-tory-text a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}
.about-tory-text a:hover {
  color: gold;
}
.tory-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 35px 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.tory-stat {
  text-align: center;
}
.tory-stat .stat-label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.other-programs-section {
  background: #f9fafb;
  padding: 80px 0;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.program-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #5b47e0;
}
.program-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.program-card:hover .program-image img {
  transform: scale(1.1);
}
.program-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  color: #5b47e0;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.program-content {
  padding: 25px;
}
.program-content h3 {
  margin: 0 0 15px 0;
}
.program-content h3 a {
  color: #111827;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  transition: color 0.3s ease;
}
.program-content h3 a:hover {
  color: #5b47e0;
}
.program-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0 0 20px 0;
}
.program-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5b47e0;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: gap 0.3s ease;
}
.program-link:hover {
  gap: 12px;
}
.program-link i {
  transition: transform 0.3s ease;
}

.deals-section {
  margin: 2em;
}
.deal-section {
  margin-bottom: 70px;
}

.deal-title-line {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.deal-number {
  display: inline-block;
  background: #2c3e50;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  font-size: 1.5em;
  font-weight: 700;
  font-family: "Segoe UI", sans-serif;
  flex-shrink: 0;
}

.brand-name-link {
  font-size: 2em;
  color: #06c;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.brand-name-link:hover {
  color: #0052a3;
}

.price-line {
  margin-bottom: 25px;
  font-family: "Segoe UI", sans-serif;
}

.price-line .original {
  text-decoration: line-through;
  color: #95a5a6;
  font-size: 1.1em;
  margin-right: 10px;
}
.price-line .deal {
  color: #e74c3c;
  font-size: 1.4em;
  font-weight: 700;
}
.price-line .discount {
  background: #e74c3c;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9em;
  margin-left: 10px;
}
.brand-visual {
  position: relative;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  background-color:#fff;
}
.brand-banner {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}
.product-banner {
  height: 350px;
  object-fit: cover;
  display: block;
  background-color: #fff;
  margin: 0 auto;
}
.brand-logo {
  position: absolute;
  top: 15px;
  left: 15px;
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.shipping-note {
  background: #e8f5e9;
  color: #27ae60;
  padding: 12px 20px;
  border-radius: 6px;
  margin: 20px 0;
  font-size: 1em;
  border-left: 4px solid #27ae60;
  font-family: "Segoe UI", sans-serif;
}
.content-section {
  margin-bottom: 25px;
}
.content-section h3 {
  color: #2c3e50;
  font-size: 1.3em;
  margin-bottom: 12px;
  font-weight: 600;
}
.content-section p {
	font-size: 1.1em;
    line-height: 1.8;
    color: #4b5563;
}
.cta-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #ecf0f1;
}
.cta-button {
  display: inline-block;
  background: #2c3e50;
  color: #fff;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  font-family: "Segoe UI", sans-serif;
}
.cta-button:hover {
  background: #34495e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.divider {
  height: 2px;
  background: linear-gradient(to right, transparent, #bdc3c7, transparent);
  margin: 60px 0;
}


/* =============================================
   CATEGORY PAGE STYLES
   ============================================= */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb i {
    font-size: 12px;
}

.category-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
	margin-top:30px;
}

.category-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-stat-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.category-stat-label {
    font-size: 14px;
    opacity: 0.9;
}
/* Search Section */
.search-section {
    background: white;
    padding: 50px 0;
    border-bottom: 2px solid #e5e7eb;
}

.search-container {
    max-width: 700px;
    margin: 0 auto;
}

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

.search-box input {
    width: 100%;
    padding: 20px 60px 20px 60px;
    font-size: 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: #5B47E0;
    box-shadow: 0 0 0 4px rgba(91, 71, 224, 0.1);
}

.search-box .search-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #9ca3af;
}

.search-box input:focus ~ .search-icon {
    color: #5B47E0;
}

.search-results-count {
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
    color: #6b7280;
}

.blog-posts-section{
		 margin-top: 2em;
}
.blog-post {
    background: linear-gradient(135deg, #f6f8fb 0%, #ffffff 100%);
    border-radius: 16px;
    overflow: hidden;
    margin: 3em 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
    position: relative;
}

.post-badge i {
    color: #1F2937;
}

.post-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.post-image {
    background: #fff;
}

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

.post-category-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.post-category-badge.tv-show {
    background: rgba(231, 76, 60, 0.95);
    color: #ffffff;
}

.post-category-badge.tips {
    background: rgba(16, 185, 129, 0.95);
    color: #ffffff;
}

.post-text {
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

.post-meta i {
    color: #10B981;
    font-size: 14px;
}

.post-text h2 {
    font-size: 1.6em;
    font-weight: 800;
    color: #111827;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.post-text h2 a {
    color: #111827;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-text h2 a:hover {
    color: #10B981;
}

.post-text > p {
    font-size: 16px;
    line-height: 1.8;
    color: #4B5563;
    margin: 0 0 30px 0;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    width: fit-content;
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin: 40px 0 60px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: white;
    color: #5B47E0;
    border: 2px solid #5B47E0;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #5B47E0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 71, 224, 0.3);
}

.load-more-count {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: #6b7280;
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    display: none;
}

.no-results.show {
    display: block;
}

.no-results i {
    font-size: 64px;
    color: #d1d5db;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    color: #374151;
    margin: 0 0 10px 0;
}

figcaption {
    text-align: center;
    margin: 0.5em 0 0 0;
    font-size: 0.8rem;
    color: #5b7190;
}

/* =============================================
   BLOG POST STYLES
   ============================================= */
   
.article-meta {
	display: flex;
	justify-content: center;
	gap: 30px;
	font-size: 15px;
	opacity: 0.95;
	flex-wrap: wrap;
}

.article-meta span {
	display: flex;
	align-items: center;
	gap: 8px;
}

.toc {
	background: #f9fafb;
	padding: 30px;
	border-radius: 12px;
	margin: 40px 0;
	border: 2px solid #e5e7eb;
}

.toc h3 {
	margin-top: 0;
	color: #111827;
	font-size: 24px;
}

.toc ul {
	list-style: none;
	padding: 0;
	margin: 20px 0 0 0;
}

.toc li {
	margin: 12px 0;
}

.toc a {
	color: #5B47E0;
	font-weight: 600;
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

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

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.review-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: #5B47E0;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(91, 71, 224, 0.1);
}

.review-stars {
    margin-bottom: 15px;
}

.review-stars i {
    color: #fbbf24;
    font-size: 18px;
    margin-right: 3px;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 20px 0;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-author strong {
    font-size: 15px;
    color: #111827;
}

.verified-badge {
    font-size: 13px;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-badge i {
    font-size: 14px;
}

.tips-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tip-item {
    display: flex;
    gap: 20px;
    background: #f9fafb;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.tip-item:hover {
    border-color: #5B47E0;
}

.tip-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip-icon i {
    font-size: 28px;
    color: white;
}

.tip-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
}

.tip-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}


/*Brand comparison table styles*/
.comparison-container {

}

.comparison-header {

}

.comparison-header h2 {

}

.comparison-header p {

}

/* Brand Headers */
.brand-headers {
	display: grid;
	grid-template-columns: 200px 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.brand-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 30px 20px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.brand-header h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 5px;
}

.brand-header .tagline {
	font-size: 14px;
	opacity: 0.9;
}

.spacer {
	background: transparent;
}

/* Comparison Rows */
.comparison-row {
	display: grid;
	grid-template-columns: 200px 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
	align-items: stretch;
}

.feature-label {
	background: white;
	padding: 25px 20px;
	border-radius: 12px;
	font-weight: 600;
	color: #2d3748;
	display: flex;
	align-items: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	font-size: 16px;
}

.brand-cell {
	background: white;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

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

.brand-cell::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.brand-cell .brand-name {
	display: none;
}

.brand-cell p {
	color: #4a5568;
	line-height: 1.7;
	font-size: 15px;
}

.winner-badge {
	display: inline-block;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	margin-left: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.comparison-highlight {
	background: linear-gradient(120deg, #fef3c7 0%, #fde68a 100%);
	padding: 2px 6px;
	border-radius: 4px;
	font-weight: 600;
}

/* Summary Section */
.comparison-summary {
	background: white;
	padding: 40px;
	border-radius: 12px;
	margin-top: 40px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-summary h3 {
	color: #1a202c;
	font-size: 26px;
	margin-bottom: 20px;
	font-weight: 700;
}

.comparison-summary p {
	color: #4a5568;
	line-height: 1.8;
	margin-bottom: 15px;
	font-size: 16px;
}
/*brand comparison table styles end*/

.search-sort-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.deals-search-box {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.deals-search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 18px;
}

.deals-search-box input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.deals-search-box input:focus {
    border-color: #5B47E0;
    box-shadow: 0 0 0 3px rgba(91, 71, 224, 0.1);
}

.deals-search-box input:focus ~ i {
    color: #5B47E0;
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-dropdown label {
    font-size: 15px;
    font-weight: 600;
    color: #4b5563;
}

.sort-dropdown select {
    padding: 12px 40px 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    background: white;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.sort-dropdown select:hover,
.sort-dropdown select:focus {
    border-color: #5B47E0;
}

.results-count {
    text-align: center;
    font-size: 15px;
    color: #6b7280;
    padding: 10px 0;
}

/* Deal Features */
.deal-features {
    text-align:center;
	margin-bottom: 1em;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #ecfdf5;
    color: #10b981;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #d1fae5;
}

.feature-badge.new-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
	display: inline-block;
}

.feature-badge i {
    font-size: 11px;
}

.product-price-line {
  margin-bottom: 25px;
  font-family: "Segoe UI", sans-serif;
  text-align:center;
}

.product-price-line .original {
  text-decoration: line-through;
  color: #95a5a6;
  font-size: 1.1em;
  margin-right: 10px;
}
.product-price-line .deal {
  color: #e74c3c;
  font-size: 2em;
  font-weight: 700;
}
.product-price-line .discount {
  background: #e74c3c;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9em;
  margin-left: 10px;
}

/* =============================================
   BLOG PAGE STYLES
   ============================================= */

/* Page Hero Section */
.blog-page-hero-section {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    padding: 3em;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.blog-page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.blog-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.blog-page-hero-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.blog-page-hero-section p {
    font-size: 20px;
    margin: 0 0 35px 0;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-stats-small {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-small {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.stat-small i {
    font-size: 20px;
    color: #FFD93D;
}

.stat-small span {
    font-size: 15px;
    font-weight: 600;
}

/* comparison table start */
.comparison-table {
    width: 100%;
    margin: 40px 0;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead {
    background: #f8f9fa;
}

.comparison-table th {
    background: #5B47E0;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 700;
}

.comparison-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

/* Responsive Table Wrapper */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 40px 0;
}

/* Scrollbar Styling */
.table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/* comparison table end */