/* ============================================
   WALLETI - CLEANED & FIXED CSS
   ============================================ */

/* Import Poppins Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

/* ============================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================ */
:root {
  /* Colors */
  --primary-dark: #241147;
  --primary-purple: #3e2370;
  --accent-orange: #ff8833;
  --accent-orange-hover: #ff6a00;
  --accent-border: #f85c24;
  --text-white: #ffffff;
  --text-gray: #d1d5db;

  /* Typography */
  --font-primary: "Poppins", sans-serif;
  --font-size-h1: 48px;
  --font-size-h2: 36px;
  --font-size-body: 16px;
  --font-size-small: 15px;
  --line-height-heading: 1.2;
  --line-height-body: 1.5;

  /* Spacing */
  --spacing-xs: 15px;
  --spacing-sm: 20px;
  --spacing-md: 30px;
  --spacing-lg: 50px;
  --spacing-xl: 100px;

  /* Border Radius */
  --radius-sm: 7px;
  --radius-md: 10px;
  --radius-lg: 15px;
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
    overflow-x: hidden;
  font-family: var(--font-primary);
  margin: 0;
  padding: 0;
  color: var(--text-white);
}

h2 {
  line-height: 1.8em;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--font-size-h2);
  color: var(--text-white);
  line-height: var(--line-height-heading);
}

/* ============================================
   SECTION 1: HERO SECTION
   ============================================ */
.hero {
  background-color: var(--primary-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-xl) var(--spacing-sm) var(--spacing-lg)
    var(--spacing-xl);
  font-family: var(--font-primary);
  color: var(--text-white);
}

.container-1 {
  max-width: 50%;
}

.hero h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-heading);
}

.hero p {
  font-size: var(--font-size-body);
  font-weight: 400;
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-body);
}

.cta-btn {
  background-color: var(--accent-orange);
  color: var(--text-white);
  padding: 12px 25px;
  border-radius: var(--radius-md);
  font-size: var(--font-size-body);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 136, 51, 0.3);
}

.cta-btn:focus {
  outline: 2px solid var(--accent-orange);
  outline-offset: 2px;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
}

.mobile-screens img {
  width: 600px;
  height: auto;
}

/* ============================================
   SECTION 2: SAFE PLACE TO BUY CRYPTO
   ============================================ */
.crypto-section {
  background-color: var(--primary-purple);
  color: var(--text-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: var(--spacing-lg);
  gap: var(--spacing-md);
}

.crypto-section .content {
  max-width: 600px;
  text-align: left;
}

.crypto-section .section-heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--font-size-h2);
  color: var(--text-white);
  line-height: var(--line-height-heading);
}

.crypto-section .section-description {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--font-size-body);
  margin-top: var(--spacing-sm);
  line-height: var(--line-height-body);
}

.crypto-section .security-description {
  background: linear-gradient(
    180deg,
    rgba(255, 136, 51, 0.2) 0%,
    rgba(178, 161, 229, 0.2) 100%
  );
  padding: var(--spacing-sm);
  margin-top: var(--spacing-sm);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
}

.crypto-section .image-container img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  padding-right: var(--spacing-xl);
}

/* ============================================
   SECTION 3: SECURE CRYPTO WALLET
   ============================================ */
.crypto-wallet {
  background-color: var(--primary-dark);
  color: var(--text-white);
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-xl);
  align-items: center;
  gap: var(--spacing-md);
}

.crypto-wallet .content {
  max-width: 60%;
}

.text_left {
  text-align: left;
}

.crypto-wallet h2 {
  text-align: left;
}

.crypto-wallet .paragraph {
  text-align: left;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--font-size-body);
  margin-top: var(--spacing-sm);
  line-height: var(--line-height-body);
}

.features-list {
  list-style-type: none;
  padding: 0;
  margin-top: var(--spacing-sm);
}

.crypto-wallet .features-list li {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-xs);
}

.features-list img {
  margin-right: var(--spacing-xs);
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   SECTION 4: FAST AND SECURE WALLET
   ============================================ */
.Secure-Crypto-Wallet {
  background-color: var(--primary-purple);
  color: var(--text-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: var(--spacing-lg);
  min-height: 80vh;
}

.content {
  text-align: center;
  max-width: 100%;
}

.heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--font-size-h2);
  color: var(--text-white);
  line-height: var(--line-height-heading);
}

.paragraph {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--font-size-body);
  margin-top: var(--spacing-sm);
  line-height: var(--line-height-body);
}

.cards-container {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-sm);
  flex-wrap: wrap;
}

.crypto-card-bg {
  background: linear-gradient(
    180deg,
    rgba(255, 136, 51, 0.2) 0%,
    rgba(178, 161, 229, 0.2) 100%
  );
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  width: 280px;
  min-height: 200px;
  text-align: center;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.crypto-card:hover {
  transform: translateY(-5px);
}

.crypto-card img {
  width: 62px;
  height: 62px;
  margin-bottom: var(--spacing-xs);
}

.crypto-card p {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;
  line-height: var(--line-height-heading);
}

/* ============================================
   SECTION 5: EASY CRYPTO PURCHASE
   ============================================ */
.easy-crypto-purchase {
  background-color: var(--primary-dark);
  color: var(--text-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: var(--spacing-lg);
  gap: 40px;
}

.easy-crypto-purchase .content {
  max-width: 600px;
  text-align: left;
}

.easy-crypto-purchase .heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--font-size-h2);
  color: var(--text-white);
  line-height: var(--line-height-heading);
}

.easy-crypto-purchase .paragraph {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--font-size-body);
  margin-top: var(--spacing-sm);
  line-height: var(--line-height-body);
}

.easy-crypto-purchase .steps-list {
  list-style-type: none;
  padding: 0;
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.easy-crypto-purchase .steps-list li {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-xs);
}

.easy-crypto-purchase .steps-list img {
  margin-right: var(--spacing-xs);
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.easy-crypto-purchase .image-container img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* ============================================
   SECTION 6: BUY CRYPTO EASILY ONLINE
   ============================================ */
.buy-crypto-easily {
  flex-wrap: nowrap;
  background-color: var(--primary-purple);
  color: var(--text-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: var(--spacing-lg);
  gap: var(--spacing-md);
}

.buy-crypto-easily .content {
  text-align: center;
  max-width: 90%;
}

.buy-crypto-easily .heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--font-size-h2);
  color: var(--text-white);
  line-height: var(--line-height-heading);
}

.buy-crypto-easily .boxes-container {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-sm);
  padding: var(--spacing-sm);
}

.buy-crypto-easily .box {
  padding: var(--spacing-sm);
  width: 100%;
  max-width: 618px;
  min-height: 160px;
  color: var(--text-white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent-border);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.buy-crypto-easily .box:hover {
  transform: translateY(-5px);
}

.buy-crypto-easily .box-heading {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: var(--spacing-xs);
  text-align: center;
}

.buy-crypto-easily .box-description {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
}


/* ============================================
   SECTION 9: CRYPTO JOURNEY SECTION
   ============================================ */
.crypto-journey-section {
  background-color: var(--primary-purple);
  padding: var(--spacing-lg) var(--spacing-md);
  font-family: var(--font-primary);
  color: var(--text-white);
}

.crypto-journey-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.crypto-journey-section .row {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex-direction: row-reverse;
}

.journey-heading {
  font-size: clamp(28px, 5vw, var(--font-size-h2));
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-body);
}

.journey-description,
.journey-call-to-action {
  font-family: var(--font-primary);
  font-size: var(--font-size-body);
  font-weight: 400;
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-body);
  color: var(--text-gray);
}

.journey-call-to-action {
  font-weight: 600;
}

/* Store Buttons */
.button-container {
  display: flex;
  gap: 15px;
  margin-top: var(--spacing-sm);
  flex-wrap: wrap;
  align-items: center;
}

.store-button {
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  padding: 0;
  background: transparent;
}

.store-button:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.store-button:focus {
  outline: 2px solid var(--accent-orange);
  outline-offset: 4px;
  border-radius: 8px;
}

.store-button-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.journey-image {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* Section Container */
.crypto-journey-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #20103e; /* Dark purple background */
  padding: 60px 20px;
  color: white;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Text Content */
.text-content {
  flex: 1;
  padding-right: 20px;
}


.btn-custom {
  background-color: #ff8833;
  color: #241147;
  font-weight: 600;
  font-size: 17px;
  border-radius: 10px;
  padding: 12px 24px;
  text-decoration: none;
}

/* Mobile Image */
.image-content {
  flex: 1;
  text-align: center;
}

.mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

/* App Store & Google Play Buttons */
.app-buttons {
  margin-top: 20px;
}

.app-btn {
  display: inline-block;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  margin: 5px;
  text-decoration: none;
}


/* Responsive Styles */
@media (max-width: 768px) {
  .crypto-journey-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .text-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }

  .mobile-image {
    width: 80%; /* Adjust mobile image size for smaller screens */
    margin-top: 20px;
  }

  .app-buttons {
    text-align: center;
  }
}

/* FAQ */


/* FAQ Section Wrapper */
.faq-section {
  background-color: var(--primary-dark);
  padding: var(--spacing-lg) var(--spacing-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.faq-container {
  max-width: 80%;
  width: 100%;
}

.faq-container h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  flex: 1;
  padding-right: 20px;
}

.toggle-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.toggle-icon::before {
  content: "+";
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon::before {
  content: "−";
}

.faq-item.active .toggle-icon {
  background: rgba(255, 255, 255, 0.15);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-answer-content {
  padding: 0 28px 24px 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* First item is open by default */
.faq-item:first-of-type {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}

.faq-item:first-of-type:hover {
  background: rgba(139, 92, 246, 0.15);
}
/* ============================================
   WALLETI - RESPONSIVE MEDIA QUERIES ONLY
   Add this file after your main CSS file
   ============================================ */

/* ============================================
   TABLETS AND SMALL LAPTOPS (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    padding: 50px 20px;
  }

  .container-1 {
    max-width: 55%;
  }

  .mobile-screens img {
    max-width: 500px;
  }

  .crypto-section .image-container img {
    padding-right: 30px;
  }

  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   TABLETS (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Hero Section - Stack Vertically */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .container-1 {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-image {
    margin-top: 30px;
    width: 100%;
  }

  .mobile-screens img {
    max-width: 400px;
    margin: 0 auto;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }

  /* Section 2 - Safe Place to Buy Crypto */
  .crypto-section {
    flex-direction: column-reverse;
    text-align: center;
  }

  .crypto-section .content {
    max-width: 100%;
  }

  .crypto-section .image-container {
    width: 100%;
    margin-bottom: 30px;
  }

  .crypto-section .image-container img {
    padding-right: 0;
    margin: 0 auto;
  }

  /* Section 3 - Secure Crypto Wallet */
  .crypto-wallet {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
  }

  .crypto-wallet .content {
    max-width: 100%;
  }

  .crypto-wallet h2 {
    text-align: center;
  }

  .crypto-wallet .paragraph {
    text-align: center;
  }

  .crypto-wallet .features-list li {
    justify-content: center;
    text-align: left;
  }

  .image-container {
    width: 100%;
    margin-top: 30px;
  }

  .image-container img {
    margin: 0 auto;
  }

  /* Section 4 - Fast and Secure Wallet */
  .cards-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .crypto-card {
    max-width: 500px;
    margin: 0 auto;
  }

  /* Section 5 - Easy Crypto Purchase */
  .easy-crypto-purchase {
    flex-direction: column-reverse;
    text-align: center;
  }

  .easy-crypto-purchase .content {
    max-width: 100%;
  }

  .easy-crypto-purchase .image-container {
    width: 100%;
    margin-bottom: 30px;
  }

  .easy-crypto-purchase .image-container img {
    max-width: 400px;
    margin: 0 auto;
  }

  .easy-crypto-purchase .steps-list li {
    justify-content: center;
    text-align: left;
  }

  /* Section 6 - Buy Crypto Easily */
  .buy-crypto-easily .boxes-container {
    flex-direction: column;
    align-items: center;
  }

  .buy-crypto-easily .box {
    max-width: 100%;
  }


  .cards-section {
    grid-template-columns: 1fr;
  }

  .crypto-cards {
    max-width: 500px;
    margin: 0 auto;
  }

  .app-image {
    margin: 0 auto 30px;
  }

  /* Section 9 - Crypto Journey */
  .crypto-journey-section .container {
    flex-direction: column;
    text-align: center;
  }

  .text-content {
    padding-right: 0;
    order: 2;
  }

  .image-content {
    order: 1;
    margin-bottom: 30px;
  }

  .mobile-image {
    max-width: 400px;
    margin: 0 auto;
  }


  .app-buttons {
    justify-content: center;
  }
}

/* ============================================
   MOBILE DEVICES (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  /* Hero Section */
  .hero {
    padding: 30px 15px;
  }

  .hero h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .hero p {
    font-size: 14px;
  }

  .mobile-screens img {
    max-width: 100%;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* All Section Headings */
  h2,
  .heading,
  .section-heading {
    font-size: 24px !important;
  }

  /* All Paragraphs */
  .paragraph,
  .section-description,
  .box-description {
    font-size: 14px;
  }

  /* Section 2 */
  .crypto-section {
    padding: 30px 15px;
  }

  .crypto-section .image-container img {
    max-width: 100%;
  }

  /* Section 3 */
  .crypto-wallet {
    padding: 30px 15px;
  }

  .features-list img {
    width: 28px;
    height: 28px;
  }

  /* Section 4 */
  .Secure-Crypto-Wallet {
    padding: 30px 15px;
  }

  .crypto-card {
    padding: 15px;
  }

  .crypto-card img {
    width: 50px;
    height: 50px;
  }

  .crypto-card p {
    font-size: 16px;
  }

  /* Section 5 */
  .easy-crypto-purchase {
    padding: 30px 15px;
  }

  .easy-crypto-purchase .image-container img {
    max-width: 85%;
  }

  .easy-crypto-purchase .steps-list img {
    width: 32px;
    height: 32px;
  }

  /* Section 6 */
  .buy-crypto-easily {
    padding: 30px 15px;
  }

  .buy-crypto-easily .box {
    padding: 15px;
    min-height: auto;
  }

  .box-heading {
    font-size: 18px;
  }

  
  .crypto-cards {
    min-height: auto;
    padding: 15px;
  }

  .crypto-cards p {
    font-size: 14px;
  }

  /* Section 9 */
  .crypto-journey-section {
    padding: 30px 15px;
  }

 

  .section-subtitle {
    font-size: 14px;
  }

  .mobile-image {
    max-width: 100%;
  }

  .app-btn img {
    height: 45px;
  }
}

/* ============================================
   EXTRA SMALL DEVICES (max-width: 360px)
   ============================================ */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 24px;
  }

  h2,
  .heading,
  .section-heading {
    font-size: 20px !important;
  }

  .paragraph,
  .section-description {
    font-size: 13px;
  }

  .cta-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .crypto-card img {
    width: 45px;
    height: 45px;
  }

  .crypto-card p {
    font-size: 14px;
  }

  .app-btn img {
    height: 40px;
  }

  .features-list img,
  .easy-crypto-purchase .steps-list img {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   LANDSCAPE ORIENTATION (Mobile)
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 20px 15px;
  }

  .mobile-screens img {
    max-width: 250px;
  }

  .Secure-Crypto-Wallet {
    min-height: auto;
  }

}

/* ============================================
   LARGE SCREENS (min-width: 1440px)
   ============================================ */
@media (min-width: 1440px) {
  .hero,
  .crypto-section,
  .crypto-wallet,
  .Secure-Crypto-Wallet,
  .easy-crypto-purchase,
  .buy-crypto-easily,
  .crypto-journey-section {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }

  .crypto-section .content,
  .easy-crypto-purchase .content {
    max-width: 700px;
  }
}

/* ============================================
   UTILITY FIXES
   ============================================ */

/* Ensure images don't overflow */
@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

/* Fix Bootstrap Container on Mobile */
@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Prevent horizontal scroll */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
  .cta-btn,
  .app-btn,
  .btn-custom {
    min-height: 44px;
    min-width: 44px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 20px 20px;
  }

  .faq-answer-content {
    padding: 0 20px 20px 20px;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }
}


@media (max-width: 640px) {
  .faq-section {
    padding: 40px 20px;
  }

  .faq-container h1 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 20px 20px;
  }

  .faq-answer-content {
    padding: 0 20px 20px 20px;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }
}