/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    padding-top: 80px; /* Add padding to prevent content from being hidden behind fixed header */
  }
  
  /* Adjust padding for larger screens */
  @media (min-width: 992px) {
    body {
        padding-top: 0;
    }
  }
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .container {
    max-width: 100vw;
    /* margin: 0 auto; */
    /* padding: 0 15px; */
  }
  
  /* Hero Section */
  .hero {
    background: #ffffff;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    height: 80vh;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
  }
  
  .hero .container {
    height: 100%;
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  
  .hero-content {
    flex: 1;
    padding-right: 40px;
  }
  
  .hero-content h1 {
    font-size: 80px;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }
  
  .price-tag {
    font-size: 22px;
    position: relative;
    display: inline-block;
  }
  
  .old-price {
    text-decoration: line-through;
    color: rgba(255,255,255,0.7);
    font-size: 20px;
  }
  
  .new-price {
    font-size: 56px;
    font-weight: 900;
    display: block;
    margin-top: 5px;
    background: #dc3545;
    padding: 10px 30px 10px 50px;
    position: relative;
    clip-path: polygon(25% 0%, 100% 0%, 85% 100%, 0% 100%);
    margin-left: -20px;
  }
  
  .hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  
  /* Features Bar */
  .features-bar {
    background: #1a1a1a;
    padding: 15px 0;
  }
  
  .features-bar .container {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 13px;
  }
  
  .feature i {
    color: #28a745;
    font-size: 16px;
  }
  
  .feature.green {
    background: #28a745;
    padding: 8px 16px;
    border-radius: 4px;
    margin-left: auto;
  }
  
  /* Product Categories Section */
  .categories {
    padding: 50px 0;
    background: #f8f9fa;
  }
  
  .categories h2 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 22px;
    color: #1e3a8a;
    font-weight: 600;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #e5e5e5;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  }
  
  /* Remove left and right padding for product images */
  .product-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: none;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }
  
  .product-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 15px 15px 8px;
    line-height: 1.3;
  }
  
  .product-card .price {
    color: #1e3a8a;
    font-weight: 600;
    font-size: 14px;
    margin: 0 15px 8px;
  }
  
  .product-card .description {
    font-size: 12px;
    color: #666;
    margin: 0 15px 15px;
    line-height: 1.5;
  }
  
  .card-footer {
    border-top: 1px solid #e5e5e5;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
  }
  
  .category {
    font-size: 11px;
    color: #888;
    font-weight: 500;
  }
  
  .shop-btn {
    background: #005385;
    color: #fff;
    border: none;
    padding: 7px 22px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    box-shadow: none;
    outline: none;
    transition: background 0.2s;
    display: inline-block;
  }
  .shop-btn:hover, .shop-btn:focus {
    background: #003f63;
    color: #fff;
  }
  
  /* Reviews Section */
  .reviews {
    padding: 50px 0;
    background: white;
  }
  
  .reviews h2 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 22px;
    color: #1e3a8a;
    font-weight: 600;
  }
  
  .trustpilot-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .star-icon {
    font-size: 50px;
    color: #00b67a;
  }
  
  .rating-info {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .trustpilot {
    font-size: 20px;
    font-weight: 600;
  }
  
  .stars {
    color: #00b67a;
    font-size: 18px;
  }
  
  .score {
    font-size: 20px;
    font-weight: 600;
  }
  
  .review-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .review-card {
    padding: 0;
    background: transparent;
  }
  
  .review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .review-header .stars {
    color: #00b67a;
    font-size: 14px;
  }
  
  .reviewer {
    font-size: 13px;
    color: #666;
  }
  
  .review-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
  }
  
  .review-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
  }
  
  .review-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  
  .review-detail {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 25px;
    text-align: left;
  }
  
  .review-detail h5 {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
  }
  
  .review-detail .stars {
    color: #fbbf24;
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .review-detail img {
    height: 20px;
    margin: 10px 0;
  }
  
  .warning-icon {
    font-size: 24px;
    color: #fbbf24;
    margin: 10px 0;
  }
  
  .reviewer-info p {
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
  }
  
  .reviewer-info p:first-child {
    font-weight: 600;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-content h1 {
        font-size: 60px;
    }
    
    .new-price {
        font-size: 48px;
    }
  }
  
  @media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .product-links {
        display: none;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-images {
        justify-content: center;
    }
    
    .hero-images img {
        height: 200px;
    }
    
    .features-bar .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .feature.green {
        margin-left: 0;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .review-cards {
        grid-template-columns: 1fr;
    }
    
    .review-details {
        grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .new-price {
        font-size: 36px;
        padding: 8px 20px 8px 30px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-images img {
        height: 150px;
    }
  }
  
  /* Additional Specific Styles to Match Design */
  
  /* Make header sticky */
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  /* Exact color matching */
  .hero {
    background: #1e3c72;
    background: linear-gradient(to right, #1e3c72, #2a5298);
  }
  
  /* Product card hover effects */
  .product-card {
    position: relative;
    overflow: hidden;
  }
  
  .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
  }
  
  .product-card:hover::before {
    left: 100%;
  }
  
  /* Price tag arrow shape */
  .new-price {
    position: relative;
    display: inline-block;
  }
  
  .new-price::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 38px 0 38px 30px;
    border-color: transparent transparent transparent #1e3c72;
  }
  
  /* Trustpilot specific styling */
  .trustpilot-rating {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    display: inline-flex;
    margin-bottom: 30px;
  }
  
  /* Button animations */
  .shop-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .shop-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #2563eb;
    transition: left 0.3s;
    z-index: -1;
  }
  
  .shop-btn:hover::before {
    left: 0;
  }
  
  /* Navigation dropdown indicators */
  .main-nav a i {
    transition: transform 0.3s;
  }
  
  .main-nav a:hover i {
    transform: rotate(180deg);
  }
  
  /* Search box styling */
  .search-box {
    border: 1px solid #e5e5e5;
    transition: all 0.3s;
  }
  
  .search-box:hover {
    background: #f0f0f0;
    border-color: #d0d0d0;
  }
  
  /* Category tags styling */
  .category {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 3px;
    display: inline-block;
  }
  
  /* Review cards specific styling */
  .review-card {
    border-left: 3px solid transparent;
    padding-left: 15px;
    transition: all 0.3s;
  }
  
  .review-card:hover {
    border-left-color: #00b67a;
  }
  
  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  
  /* Selection color */
  ::selection {
    background: #3b82f6;
    color: white;
  }
  
  ::-moz-selection {
    background: #3b82f6;
    color: white;
  }
  
  /* Redesigned Features Bar */
  .features-bar {
    background: #0a2342;
    padding: 0;
    margin: 0;
  }
  .features-bar .container {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: flex-start;
    padding: 0;
  }
  .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 0 18px;
    height: 48px;
    border-radius: 0;
    background: none;
  }
  .feature i {
    color: #00bfae;
    font-size: 20px;
  }
  .feature.green {
    background: #19c37d;
    color: #fff;
    border-radius: 24px;
    padding: 0 28px;
    margin-left: 12px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    height: 38px;
  }
  .feature.green:last-child {
    background: none;
    color: #ffe600;
    font-weight: 700;
    margin-left: 0;
    padding: 0 18px;
    border-radius: 0;
    font-size: 17px;
  }
  @media (max-width: 900px) {
    .features-bar .container {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
    .feature, .feature.green {
      width: 100%;
      justify-content: flex-start;
      margin: 0;
      border-radius: 0;
      padding: 0 10px;
    }
  }
  
  .custom-banner {
    display: flex;
    align-items: center;
    border: 1.5px solid #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.35vw;
    min-height: 60px;
    background: #071423;
    margin-bottom: 24px;
  }
  
  .banner-left {
    display: flex;
    align-items: center;
    background: #071423;
    padding: 0 2vw;
    flex: 2;
    gap: 2vw;
  }
  
  .banner-item {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 500;
    gap: 0.5vw;
    white-space: nowrap;
  }
  
  .check-icon {
    display: flex;
    align-items: center;
    margin-right: 0.5vw;
  }
  
  .banner-right {
    display: flex;
    align-items: center;
    background: #16a34a;
    padding: 0 2vw;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    flex: 1.5;
    gap: 1vw;
    min-height: 60px;
  }
  
  .banner-artwork {
    color: #fff;
    font-weight: 500;
    margin-right: 1vw;
    white-space: nowrap;
  }
  
  .banner-guarantee {
    color: #ffd600;
    font-weight: 700;
    margin-left: 1vw;
    white-space: nowrap;
  }
  
  @media (max-width: 900px) {
    .custom-banner {
      font-size: 2.5vw;
      flex-direction: column;
      min-height: 80px;
    }
    .banner-left, .banner-right {
      padding: 1vw 2vw;
      flex-direction: column;
      gap: 1vw;
    }
    .banner-right {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }
  }
  
  @media (max-width: 600px) {
    .custom-banner {
      flex-direction: row !important;
      align-items: center !important;
      justify-content: center !important;
      font-size: 10px !important;
      min-height: 28px !important;
      padding: 2px 0 !important;
      gap: 4px !important;
      flex-wrap: wrap !important;
      min-width: 0 !important;
      overflow-x: hidden !important;
      white-space: normal !important;
    }
    .banner-left, .banner-right {
      flex-direction: row !important;
      align-items: center !important;
      padding: 0 1vw !important;
      gap: 4px !important;
      border-radius: 0 !important;
    }
    .banner-item, .banner-artwork, .banner-guarantee {
      font-size: 10px !important;
      margin: 0 !important;
      white-space: nowrap !important;
      padding: 0 1px !important;
    }
    .check-icon svg {
      width: 13px !important;
      height: 13px !important;
    }
  }
  
  /* Product Banner Text Styles (matches product card) */
  .product-banner-text {
    font-family: Arial, Helvetica, sans-serif;
  }
  .product-banner-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
  }
  .product-banner-price {
    color: #1e3a8a;
    font-weight: 600;
    font-size: 14px;
  }
  .product-banner-description {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
  }
  .product-banner-category {
    font-size: 11px;
    color: #888;
    font-weight: 500;
  }
  .product-banner-btn {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
  }
  .product-banner-btn:hover {
    background: #2563eb;
  }
   
   @media (max-width: 600px) {
    .container {
      max-width: 100vw;
      padding: 0 4vw;
    }
    .hero {
      background: #fff !important;
      min-height: auto !important;
      height: auto !important;
      padding-top: 10px !important;
      padding-bottom: 10px !important;
    }
    .hero .container {
      flex-direction: column;
      align-items: center;
      height: auto;
      padding: 0;
    }
    .hero-images {
      width: 100% !important;
      height: 100% !important;
      min-height: 0 !important;
      overflow: visible !important;
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
    }
    .hero-images img {
      width: 100% !important;
      height: auto !important;
      min-height: 0 !important;
      object-fit: contain !important;
      display: block !important;
      max-width: 100vw !important;
    }
    .hero-content {
      padding: 0;
      margin-bottom: 10px;
      text-align: center;
    }
    .hero-content h1 {
      font-size: 28px;
      margin-bottom: 10px;
    }
    .price-tag {
      font-size: 16px;
    }
    .new-price {
      font-size: 22px;
      padding: 6px 12px 6px 18px;
      margin-left: 0;
    }
    .categories {
      padding: 20px 0;
    }
    .categories h2 {
      font-size: 18px;
      margin-bottom: 16px;
    }
    .product-grid {
      grid-template-columns: 1fr;
      gap: 12px;
      margin-bottom: 16px;
    }
    .product-card {
      border-radius: 6px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    }
    .product-card img {
      height: 160px;
    }
    .product-card h3 {
      font-size: 16px;
      margin: 10px 10px 6px;
    }
    .product-card .price {
      font-size: 12px;
      margin: 0 10px 6px;
    }
    .product-card .description {
      font-size: 11px;
      margin: 0 10px 10px;
    }
    .card-footer {
      padding: 8px 10px;
      flex-direction: column;
      gap: 6px;
    }
    .category {
      font-size: 10px;
      margin-bottom: 2px;
    }
    .shop-btn {
      font-size: 11px;
      padding: 5px 12px;
    }
    .reviews {
      padding: 20px 0;
    }
    .reviews h2 {
      font-size: 16px;
      margin-bottom: 12px;
    }
    .review-cards {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .review-card h4 {
      font-size: 12px;
    }
    .review-card p {
      font-size: 11px;
    }
    .custom-banner {
      flex-direction: column;
      font-size: 3vw;
      min-height: 40px;
      padding: 6px 0;
    }
    .banner-left, .banner-right {
      padding: 2vw 2vw;
      flex-direction: column;
      gap: 1vw;
    }
    .banner-artwork, .banner-guarantee {
      font-size: 12px;
      margin: 0;
    }
  } 
    
    
  /* Trustpilot Review Section (New, at bottom) */
  .trustpilot-section {
    background: #fafbfc;
    padding: 32px 0 48px 0;
  }
  .trustpilot-title {
    color: #184d7a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    margin-left: 8px;
  }
  .trustpilot-box {
    background: #fff;
    border: 1.5px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 32px 32px 24px 32px;
    max-width: 98vw;
    margin: 0 auto;
  }
  .trustpilot-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 12px;
  }
  .trustpilot-star-large {
    font-size: 90px;
    color: #00b67a;
    font-weight: bold;
    line-height: 1;
  }
  .trustpilot-info {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .trustpilot-logo {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-right: 2px;
  }
  .trustpilot-stars {
    color: #00b67a;
    font-size: 22px;
    letter-spacing: 2px;
  }
  .trustpilot-score {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-left: 4px;
  }
  .trustpilot-divider {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 24px 0 18px 0;
  }
  .trustpilot-reviews-row {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    margin-bottom: 0;
  }
  .trustpilot-review-card {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .trustpilot-review-badge {
    color: #00b67a;
    font-size: 15px;
    font-weight: 700;
  }
  .trustpilot-review-badge span {
    color: #184d7a;
    font-weight: 600;
    margin-left: 6px;
  }
  .trustpilot-review-text {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 0;
  }
  .trustpilot-review-title {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
    line-height: 1.3;
  }
  @media (max-width: 1024px) {
    .trustpilot-box {
      padding: 18px 8px 12px 8px;
    }
    .trustpilot-review-card {
      margin-bottom: 18px;
    }
    .trustpilot-header {
      gap: 12px;
    }
    .trustpilot-star-large {
      font-size: 60px;
    }
  }
  @media (max-width: 768px) {
    .trustpilot-reviews-row {
      flex-direction: column;
      gap: 18px;
    }
    .trustpilot-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  }
  
  .second-2-Image-1{
      width: 99vw;
      height: 40vh;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .second-2-Image{
      width: 100vw;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .second-2-Image-content{
      width: 95vw;
      height: 50vh;
      display: flex;
      align-items: center;    
      justify-content: space-between;
      flex-direction: row;
      gap: 10px;
  }
  .second-2-Image-1 img{
      width: 100%;
      object-fit: cover;
  }
  .contntent-1{
      width: 50vw;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
  }
  .imagecont
  {
      width: 40vw;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  /* FAQ Section Styles */
  .faq-section {
    padding: 60px 0;
    background: #f8f9fa;
  }
  
  .faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .faq-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s ease;
  }
  
  .faq-question:hover {
    background: #f8f9fa;
  }
  
  .faq-toggle {
    font-size: 14px;
    color: #666;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-toggle {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafafa;
  }
  
  .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px 25px;
  }
  
  .faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
  }
  
  /* Responsive FAQ Styles */
  @media (max-width: 768px) {
    .faq-section {
      padding: 40px 0;
    }
    
    .faq-section h2 {
      font-size: 24px;
      margin-bottom: 30px;
    }
    
    .faq-question {
      padding: 15px 20px;
      font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
      padding: 15px 20px;
    }
  }


  /* Video & FAQ Section Styles */
  .video-faq-section {
    padding: 60px 0;
    background: #f8f9fa;
  }

  .video-faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Video Card Styles */
  .video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .video-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
  }

  .youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  /* FAQ Card Styles */
  .faq-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: fit-content;
  }

  .faq-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    text-align: center;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 16px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    transition: background-color 0.3s ease;
  }

  .faq-question:hover {
    background: #f9fafb;
  }

  .faq-question span {
    flex: 1;
    text-align: left;
  }

  .faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #6b7280;
  }

  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f9fafb;
  }

  .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 16px;
  }

  .faq-answer p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
  }

  

  /* Mobile Responsive Styles */
  @media (max-width: 1024px) {
    .video-faq-container {
      gap: 20px;
    }
    
    .video-card, .faq-card {
      margin-bottom: 0;
    }
  }

  @media (max-width: 768px) {
    .video-faq-section {
      padding: 40px 0;
    }
    
    .video-faq-container {
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 0 15px;
    }
    
    .video-card {
      order: 1;
    }
    
    .faq-card {
      order: 2;
      padding: 20px;
    }
    
    .faq-title {
      font-size: 18px;
    }
    
    .faq-question {
      padding: 14px;
      font-size: 13px;
    }
    
    .faq-item.active .faq-answer {
      padding: 14px;
    }
    
    .drag-drop-section {
      padding: 30px 15px;
    }
    
    .section-subtitle {
      font-size: 1.5rem;
    }
    
    .drag-drop-area {
      padding: 2rem 1rem;
    }
    
    .uploaded-files {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 480px) {
    .video-faq-section {
      padding: 30px 0;
    }
    
    .video-faq-container {
      padding: 0 10px;
    }
    
    .video-info {
      padding: 12px;
    }
    
    .video-title {
      font-size: 16px;
    }
    
    .channel-info {
      gap: 8px;
    }
    
    .channel-avatar {
      width: 32px;
      height: 32px;
    }
    
    .subscribe-btn {
      padding: 6px 12px;
      font-size: 12px;
    }
    
    .faq-card {
      padding: 16px;
    }
    
    .faq-title {
      font-size: 16px;
      margin-bottom: 16px;
    }
    
    .faq-question {
      padding: 12px;
      font-size: 12px;
    }
    
    .faq-item.active .faq-answer {
      padding: 12px;
    }
    
    .faq-answer p {
      font-size: 12px;
    }
    
    .section-subtitle {
      font-size: 1.3rem;
    }
    
    .drag-drop-area {
      padding: 1.5rem 1rem;
    }
    
    .drag-text {
      font-size: 1rem;
    }
  }

  /* Blog/Articles Section Styles */
  .blog-section {
    padding: 80px 0;
    background: #ffffff;
  }

  .blog-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
  }

  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
  }

  .blog-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .blog-card:hover .blog-image img {
    transform: scale(1.05);
  }

  .blog-content {
    padding: 24px;
  }

  .blog-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 75px;
  }

  .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
  }

  .author-info {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }

  .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .author-name {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
  }

  .blog-date {
    font-size: 13px;
    color: #64748b;
    font-weight: 400;
  }

  /* footer */
  .footer-link {
    display: flx;
  }

  /* Blog Section Mobile Responsive Styles */
  @media (max-width: 1024px) {
    .blog-section {
      padding: 60px 0;
    }
    
    .blog-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      padding: 0 20px;
    }
    
    .blog-title {
      font-size: 17px;
      min-height: 70px;
    }
    
    .blog-content {
      padding: 20px;
    }
  }

  @media (max-width: 768px) {
    .blog-section {
      padding: 50px 0;
    }
    
    .blog-container {
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 0 15px;
    }
    
    .blog-card {
      max-width: 400px;
      margin: 0 auto;
    }
    
    .blog-image {
      height: 180px;
    }
    
    .blog-title {
      font-size: 16px;
      min-height: auto;
      -webkit-line-clamp: 2;
      line-clamp: 2;
    }
    
    .blog-content {
      padding: 18px;
    }
    
    .blog-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
    
    .author-info {
      order: 2;
    }
    
    .blog-date {
      order: 1;
      align-self: flex-end;
    }
  }

  @media (max-width: 480px) {
    body {
      padding-top: 10px; /* Reduced from 125px to prevent overlap */
    }
    
    #header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 9999999;
    }
    
    .hero {
      margin-top: 0;
      padding-top: 0;
    }
    
    .hero-images img {
      height: 10vh;
      width: 100%;
      object-fit: cover;
    }
    .blog-section {
      padding: 40px 0;
    }
    
    .blog-container {
      padding: 0 10px;
    }
    
    .blog-card {
      border-radius: 12px;
    }
    
    .blog-image {
      height: 160px;
    }
    
    .blog-title {
      font-size: 15px;
    }
    
    .blog-content {
      padding: 16px;
    }
    
    .author-name {
      font-size: 13px;
    }
    
    .blog-date {
      font-size: 12px;
    }
    
    .author-avatar {
      width: 28px;
      height: 28px;
    }
  }