/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #f0f2f5;
  color: #111;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html, body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: color 0.25s ease, transform 0.2s ease;
}

button:focus,
a:focus {
  outline: none;
  background: none;
}

/* Utility Classes */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Typography */
h2 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: #111;
  margin: 20px 0 10px;
}

p {
  font-size: 18px;
  text-align: center;
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

/* Icon Grid Section */
.icon-container {
  display: grid;
  grid-template-rows: repeat(2, auto);
  justify-items: center;
  gap: 65px;
  margin: 40px 0;
  grid-auto-flow: column;
  padding: 30px 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a3c78, #6a1b9a, #014421);
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 140px;
}

.icon-item i {
  font-size: 50px;
  color: #0099ff;
  transition: color 0.2s, transform 0.2s;
}

.icon-item a:hover i {
  color: #66d1ff;
  transform: scale(1.2);
}

.icon-item p {
  margin-top: 8px;
  font-size: 14px;
  color: #e5f2ff;
  line-height: 1.4;
  font-weight: 500;
}

/* Cards Section */
.cards {
  display: flex;
  gap: 20px;
  width: 100vw;
  margin: 0 calc(-50vw + 50%);
  padding: 0;
  overflow: hidden;
}

.card {
  flex: 1 0 auto;
  height: 350px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  display: block;
}

/* Simple Card Section */
.simple-card {
  width: 100vw;
  margin: 0 calc(-50vw + 50%);
  height: 600px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  display: flex;
  overflow: hidden;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px;
  width: 100%;
}

.card-content h2 {
  font-size: 36px;
  margin: 0;
}

.card-content p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.card-content button {
  padding: 14px 30px;
  font-size: 18px;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.card-content button:hover {
  background: #333;
}

.card-image {
  flex: 1;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Header Styles */
.lux-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #111;
}

.lux-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.lux-inner {
  width: 100%;
  max-width: 1250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 15px;
}

.lux-logo {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #000;
  text-transform: uppercase;
  user-select: none;
  flex-shrink: 0;
  min-width: max-content;
}

.lux-nav {
  display: flex;
  gap: clamp(15px, 2.5vw, 60px);
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.lux-nav a {
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 400;
  letter-spacing: 0.3px;
  color: rgba(0, 0, 0, 0.75);
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  flex-shrink: 0;
}

.lux-nav a:hover {
  color: #000;
}

.lux-icons {
  display: flex;
  gap: clamp(10px, 1.5vw, 25px);
  flex-shrink: 0;
  align-items: center;
}

.lux-icons i {
  font-size: clamp(16px, 1.2vw, 18px);
  color: rgba(0, 0, 0, 0.75);
  cursor: pointer;
  transition: color 0.2s;
  flex-shrink: 0;
}

.lux-icons i:hover {
  color: #000;
}

.lux-search {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 1;
  min-width: 0;
  flex-basis: auto;
}

.lux-search input {
  width: 100%;
  min-width: 50px;
  max-width: 535px;
  padding: 6px 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  font-size: clamp(12px, 0.9vw, 14px);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.lux-search input:focus {
  border-color: #000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.lux-search button {
  background: #000;
  border: none;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
  font-size: clamp(12px, 0.9vw, 14px);
}

.lux-search button:hover {
  background: #333;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background-color: #000;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Media Queries برای تنظیمات واکنش‌گرا */
@media screen and (max-width: 1200px) {
  .lux-nav {
    gap: clamp(12px, 1.8vw, 25px);
  }
  
  .lux-inner {
    padding: 0 15px;
    gap: 12px;
  }
}

@media screen and (max-width: 992px) {
  .lux-inner {
    padding: 0 12px;
    gap: 10px;
  }
  
  .lux-logo {
    font-size: 18px;
    letter-spacing: 2px;
  }
  
  .lux-nav {
    gap: clamp(10px, 1.5vw, 20px);
  }
  
  .lux-nav a {
    font-size: clamp(11px, 1vw, 14px);
  }
  
  .lux-search input {
    padding: 5px 10px;
  }
}

@media screen and (max-width: 768px) {
  .lux-header {
    height: 60px;
  }
  
  .lux-inner {
    padding: 0 10px;
    gap: 8px;
  }
  
  .lux-logo {
    font-size: 16px;
    letter-spacing: 1.5px;
  }
  
  .lux-nav {
    gap: clamp(8px, 1.2vw, 15px);
  }
  
  .lux-nav a {
    font-size: clamp(10px, 0.9vw, 13px);
    letter-spacing: 0.2px;
  }
  
  .lux-icons {
    gap: clamp(8px, 1vw, 12px);
  }
  
  .lux-icons i {
    font-size: clamp(14px, 1vw, 16px);
  }
  
  .lux-search input {
    padding: 4px 8px;
    min-width: 40px;
  }
  
  .lux-search button {
    padding: 4px 8px;
  }
}

@media screen and (max-width: 576px) {
  .lux-header {
    height: 55px;
  }
  
  .lux-inner {
    padding: 0 8px;
    gap: 6px;
  }
  
  .lux-logo {
    font-size: 14px;
    letter-spacing: 1px;
  }
  
  .lux-nav {
    gap: clamp(6px, 1vw, 10px);
  }
  
  .lux-nav a {
    font-size: clamp(9px, 0.8vw, 11px);
  }
  
  .lux-icons {
    gap: clamp(6px, 0.8vw, 10px);
  }
  
  .lux-icons i {
    font-size: clamp(13px, 0.9vw, 14px);
  }
  
  .lux-search input {
    padding: 3px 6px;
    font-size: 11px;
    min-width: 30px;
  }
  
  .lux-search button {
    padding: 3px 6px;
    font-size: 11px;
  }
}

@media screen and (max-width: 480px) {
  .lux-header {
    height: 50px;
  }
  
  .lux-inner {
    padding: 0 6px;
    gap: 4px;
  }
  
  .lux-logo {
    font-size: 12px;
    letter-spacing: 0.8px;
  }
  
  .lux-nav {
    gap: clamp(4px, 0.7vw, 8px);
  }
  
  .lux-nav a {
    font-size: 8px;
  }
  
  .lux-icons {
    gap: clamp(4px, 0.6vw, 8px);
  }
  
  .lux-icons i {
    font-size: 12px;
  }
  
  .lux-search input {
    padding: 2px 4px;
    font-size: 10px;
  }
  
  .lux-search button {
    padding: 2px 4px;
    font-size: 10px;
  }
  
  /* نمایش همبرگر منو در موبایل خیلی کوچک */
  .hamburger {
    display: flex;
    margin-left: 5px;
  }
  
  .lux-nav:not(.mobile-visible) {
    display: none;
  }
  
  .lux-nav.mobile-visible {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
}

@media screen and (max-width: 360px) {
  .lux-header {
    height: 48px;
  }
  
  .lux-logo {
    font-size: 11px;
  }
  
  .lux-search input {
    display: none;
  }
  
  .lux-search button {
    background: transparent;
    color: #000;
    padding: 4px;
  }
  
  .lux-search button:hover {
    background: rgba(0, 0, 0, 0.1);
  }
}

/* Footer */
.modern-footer {
  width: 100vw;
  margin: 0 calc(-50vw + 50%);
  background: #111;
  color: #eee;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.footer-inner {
  max-width: 1200px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #eee;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

.footer-links a:hover {
  color: #999;
}

/* Contact Us Page */
.contact-us-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  max-width: 1200px;
  margin: 40px auto;
  color: #333;
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}

.contact-us-section h1,
.contact-us-section h2 {
  font-weight: 700;
  color: #d32f2f;
  margin-bottom: 20px;
}

.contact-us-section h1 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}

.contact-us-section h2 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.contact-us-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 18px;
}

.contact-us-section a {
  color: #d32f2f;
  text-decoration: underline;
  font-weight: 500;
}

.contact-us-section a:hover {
  color: #b71c1c;
}

.contact-us-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-us-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.contact-us-form input,
.contact-us-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.contact-us-form button {
  padding: 12px 25px;
  background: #d32f2f;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-us-form button:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(211, 47, 47, 0.2);
}

/* Privacy Policy Page */
.privacy-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  max-width: 1200px;
  margin: 40px auto;
  color: #333;
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}

.privacy-section h1,
.privacy-section h2 {
  font-weight: 700;
  color: #d32f2f;
  margin-bottom: 20px;
}

.privacy-section h1 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}

.privacy-section h2 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.privacy-section p,
.privacy-section li {
  font-size: 16px;
  color: #555;
  margin-bottom: 18px;
}

.privacy-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.privacy-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

/* About Us Page */
.about-us-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  max-width: 1200px;
  margin: 40px auto;
  color: #333;
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}

.about-us-section:before {
  content: "ðŸš›";
  font-size: 36px;
  opacity: 0.05;
  position: absolute;
  top: 20px;
  left: 20px;
}

.about-us-section h1,
.about-us-section h2,
.about-us-section h3 {
  font-weight: 700;
  color: #d32f2f;
  margin-bottom: 20px;
}

.about-us-section h1 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}

.about-us-section h2 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.about-us-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 18px;
}

.about-us-section ul {
  list-style: disc;
  padding-left: 30px;
  margin-bottom: 20px;
}

.about-us-section li {
  margin-bottom: 12px;
  font-size: 15px;
}

.about-us-section a {
  color: #d32f2f;
  text-decoration: underline;
  font-weight: 500;
}

.about-us-section a:hover {
  color: #b71c1c;
}

.about-us-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-us-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

/* FAQ Page */
.faq-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  max-width: 1200px;
  margin: 40px auto;
  color: #333;
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}

.faq-section h1,
.faq-section h2 {
  font-weight: 700;
  color: #d32f2f;
  margin-bottom: 20px;
}

.faq-section h1 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}

.faq-section h2 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.faq-section p,
.faq-section li {
  font-size: 16px;
  color: #555;
  margin-bottom: 18px;
}

.faq-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.faq-question {
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  display: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 10px;
}

.faq-card.active .faq-answer {
  max-height: 500px;
}

/* Return Policy Page */
.return-policy-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  max-width: 1200px;
  margin: 40px auto;
  color: #333;
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}

.return-policy-section:before {
  content: "ðŸ”§";
  font-size: 36px;
  opacity: 0.05;
  position: absolute;
  top: 20px;
  left: 20px;
}

.return-policy-section h1,
.return-policy-section h2,
.return-policy-section h3 {
  font-weight: 700;
  color: #d32f2f;
  margin-bottom: 20px;
}

.return-policy-section h1 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}

.return-policy-section h2 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.return-policy-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 18px;
}

.return-policy-section ul {
  list-style: disc;
  padding-left: 30px;
  margin-bottom: 20px;
}

.return-policy-section li {
  margin-bottom: 12px;
  font-size: 15px;
}

.return-policy-section a {
  color: #d32f2f;
  text-decoration: underline;
  font-weight: 500;
}

.return-policy-section a:hover {
  color: #b71c1c;
}

.return-policy-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.return-policy-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

/* Terms Page */
.terms-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  max-width: 1200px;
  margin: 40px auto;
  color: #333;
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}

.terms-section h1,
.terms-section h2 {
  font-weight: 700;
  color: #d32f2f;
  margin-bottom: 20px;
}

.terms-section h1 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}

.terms-section h2 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.terms-section p,
.terms-section li {
  font-size: 16px;
  color: #555;
  margin-bottom: 18px;
}

.terms-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.terms-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.terms-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 900px) {
  .icon-container {
    border-radius: 0;
  }
  
  .lux-nav {
    gap: 30px;
  }
  
  .lux-inner {
    padding: 0 30px;
  }
  
  .lux-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background: #fff;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    gap: 15px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1050;
  }
  
  /* Ensure .show actually becomes visible and uses column layout */
  .lux-nav.show {
    max-height: 1000px;
    padding: 15px 0;
    display: flex !important;
    flex-direction: column !important;
  }
  
  .lux-nav a {
    display: block;
    width: auto;
    margin: 0;
    padding: 12px 20px;
    background: none;
    text-align: center;
    color: #111;
    font-weight: 500;
    transition: background 0.2s;
  }
  
  .lux-nav a:hover {
    background: rgba(0, 0, 0, 0.05);
  }
  
  .lux-logo {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .lux-search input {
    width: auto;
  }
}

@media (max-width: 768px) {
  .icon-item {
    max-width: 45%;
    margin-bottom: 20px;
  }
  
  .icon-container {
    gap: 10%;
  }
  
  .icon-item i {
    font-size: 40px;
  }
  
  .icon-item p {
    font-size: 12px;
  }
  
  .simple-card {
    flex-direction: column;
    height: auto;
  }
  
  .card-image {
    width: 100%;
    height: 250px;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-content h2 {
    font-size: 28px;
  }
  
  .card-content p {
    font-size: 16px;
  }
  
  .card-content button {
    font-size: 16px;
    padding: 12px 25px;
  }
  
  /* Contact Us */
  .contact-us-section {
    padding: 25px;
  }
  
  .contact-us-section h1 {
    font-size: 24px;
  }
  
  .contact-us-section h2 {
    font-size: 20px;
  }
  
  .contact-us-section p {
    font-size: 15px;
  }
  
  /* Privacy */
  .privacy-section {
    padding: 25px;
  }
  
  .privacy-section h1 {
    font-size: 24px;
  }
  
  .privacy-section h2 {
    font-size: 20px;
  }
  
  .privacy-section p,
  .privacy-section li {
    font-size: 15px;
  }
  
  /* About Us */
  .about-us-section {
    padding: 25px;
  }
  
  .about-us-section h1 {
    font-size: 24px;
  }
  
  .about-us-section h2 {
    font-size: 20px;
  }
  
  .about-us-section p,
  .about-us-section li {
    font-size: 15px;
  }
  
  /* FAQ */
  .faq-section {
    padding: 25px;
  }
  
  .faq-section h1 {
    font-size: 24px;
  }
  
  .faq-section h2 {
    font-size: 20px;
  }
  
  .faq-section p,
  .faq-section li {
    font-size: 15px;
  }
  
  /* Return Policy */
  .return-policy-section {
    padding: 25px;
  }
  
  .return-policy-section h1 {
    font-size: 24px;
  }
  
  .return-policy-section h2 {
    font-size: 20px;
  }
  
  .return-policy-section p,
  .return-policy-section li {
    font-size: 15px;
  }
  
  /* Terms */
  .terms-section {
    padding: 25px;
  }
  
  .terms-section h1 {
    font-size: 24px;
  }
  
  .terms-section h2 {
    font-size: 20px;
  }
  
  .terms-section p,
  .terms-section li {
    font-size: 15px;
  }
}

/* IMPORTANT: do NOT force display:none for .lux-nav here.
   Forcing display:none at narrower widths prevents .lux-nav.show from working.
   Keep visibility controlled by max-height + overflow (see @media max-width:900px). */
@media (max-width: 600px) {
  .lux-icons i {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .cards {
    flex-direction: column;
    gap: 15px;
  }
  
  .card {
    height: 200px;
    font-size: 16px;
    padding: 0 10px;
  }
  
  .footer-links {
    gap: 15px;
  }
  
  /* Contact Us */
  .contact-us-section {
    padding: 20px;
  }
  
  .contact-us-section h1 {
    font-size: 20px;
  }
  
  .contact-us-section h2 {
    font-size: 18px;
  }
  
  .contact-us-section p {
    font-size: 14px;
  }
  
  /* Privacy */
  .privacy-section {
    padding: 20px;
  }
  
  .privacy-section h1 {
    font-size: 20px;
  }
  
  .privacy-section h2 {
    font-size: 18px;
  }
  
  .privacy-section p,
  .privacy-section li {
    font-size: 14px;
  }
  
  /* About Us */
  .about-us-section {
    padding: 20px;
  }
  
  .about-us-section h1 {
    font-size: 20px;
  }
  
  .about-us-section h2 {
    font-size: 18px;
  }
  
  .about-us-section p,
  .about-us-section li {
    font-size: 14px;
  }
  
  /* FAQ */
  .faq-section {
    padding: 20px;
  }
  
  .faq-section h1 {
    font-size: 20px;
  }
  
  .faq-section h2 {
    font-size: 18px;
  }
  
  .faq-section p,
  .faq-section li {
    font-size: 14px;
  }
  
  /* Return Policy */
  .return-policy-section {
    padding: 20px;
  }
  
  .return-policy-section h1 {
    font-size: 20px;
  }
  
  .return-policy-section h2 {
    font-size: 18px;
  }
  
  .return-policy-section p,
  .return-policy-section li {
    font-size: 14px;
  }
  
  /* Terms */
  .terms-section {
    padding: 20px;
  }
  
  .terms-section h1 {
    font-size: 20px;
  }
  
  .terms-section h2 {
    font-size: 18px;
  }
  
  .terms-section p,
  .terms-section li {
    font-size: 14px;
  }
}
