* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-size: 18px;
  color: #333;
}

/* Security-focused styles */
input, textarea, select {
  font-family: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* Prevent text selection on certain elements */
.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide sensitive data */
.sensitive {
  filter: blur(5px);
  transition: filter 0.3s ease;
}

.sensitive:hover {
  filter: blur(0);
}

/* Legal Pages Styles */
.legal-page {
  min-height: calc(100vh - 120px);
  background-color: #f8f9fa;
  padding: 40px 0;
}

.legal-page .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-page h1 {
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.legal-content {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  line-height: 1.7;
}

.legal-content h2 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin: 30px 0 20px 0;
  font-weight: 600;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 10px;
}

.legal-content h3 {
  color: #34495e;
  font-size: 1.4rem;
  margin: 25px 0 15px 0;
  font-weight: 600;
}

.legal-content h4 {
  color: #34495e;
  font-size: 1.2rem;
  margin: 20px 0 12px 0;
  font-weight: 600;
}

.legal-content p {
  margin-bottom: 15px;
  color: #555;
  text-align: justify;
}

.legal-content ul {
  margin: 15px 0;
  padding-left: 25px;
}

.legal-content li {
  margin-bottom: 8px;
  color: #555;
}

.legal-content strong {
  color: #2c3e50;
  font-weight: 600;
}

.legal-content .note-box {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 5px;
  padding: 20px;
  margin: 25px 0;
}

.legal-content .note-box p {
  margin: 0;
  color: #856404;
  font-weight: 500;
}

.legal-content .process-section {
  background-color: #f8f9fa;
  border-left: 4px solid #007bff;
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 5px 5px 0;
}

/* Mobile Responsive Styles for Legal Pages */
@media (max-width: 768px) {
  .legal-page {
    padding: 20px 0;
    min-height: calc(100vh - 100px);
  }
  
  .legal-page .container {
    padding: 0 15px;
  }
  
  .legal-page h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .legal-content {
    padding: 25px;
    margin: 0 10px;
  }
  
  .legal-content h2 {
    font-size: 1.5rem;
    margin: 25px 0 15px 0;
  }
  
  .legal-content h3 {
    font-size: 1.3rem;
    margin: 20px 0 12px 0;
  }
  
  .legal-content h4 {
    font-size: 1.1rem;
    margin: 18px 0 10px 0;
  }
  
  .legal-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  
  .legal-content ul {
    padding-left: 20px;
  }
  
  .legal-content li {
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .legal-content .note-box {
    padding: 15px;
    margin: 20px 0;
  }
  
  .legal-content .process-section {
    padding: 15px;
    margin: 15px 0;
  }
}

@media (max-width: 480px) {
  .legal-page {
    padding: 15px 0;
  }
  
  .legal-page h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .legal-content {
    padding: 20px 15px;
    margin: 0 5px;
  }
  
  .legal-content h2 {
    font-size: 1.3rem;
    margin: 20px 0 12px 0;
  }
  
  .legal-content h3 {
    font-size: 1.2rem;
    margin: 18px 0 10px 0;
  }
  
  .legal-content h4 {
    font-size: 1rem;
    margin: 15px 0 8px 0;
  }
  
  .legal-content p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .legal-content li {
    font-size: 13px;
    margin-bottom: 5px;
  }
  
  .legal-content .note-box {
    padding: 12px;
    margin: 15px 0;
  }
  
  .legal-content .process-section {
    padding: 12px;
    margin: 12px 0;
  }
}/* Corporate Color Scheme */
:root {
  --primary-color: #1a237e;
  --secondary-color: #3f51b5;
  --accent-color: #ff6f00;
  --success-color: #4caf50;
  --text-dark: #212121;
  --text-light: #757575;
  --bg-light: #f5f7fa;
  --bg-white: #ffffff;
  --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-medium: 0 5px 25px rgba(0,0,0,0.15);
  --shadow-heavy: 0 10px 40px rgba(0,0,0,0.2);
}

/* General Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}

.btn:focus,
.btn:focus-visible,
.btn:active,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active,
.btn-secondary:focus,
.btn-secondary:active,
.btn-claim:focus,
.btn-claim:active,
.btn-partner:focus,
.btn-partner:active,
button:focus,
button:focus-visible,
button:active {
  outline: none;
  box-shadow: var(--shadow-medium);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-light);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(26,35,126,0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-30px, -30px) rotate(180deg); }
}

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

.hero-section h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--text-dark);
  line-height: 1.2;
}

.highlight {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.hero-section p {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-section strong {
  color: var(--primary-color);
  font-weight: 600;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-light);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

.badge svg {
  color: var(--success-color);
  font-size: 16px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  background: var(--bg-light);
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stat-icon {
  font-size: 48px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.stat-item h3 {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-item p {
  color: var(--text-light);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Campaigns Section */
.campaigns-section {
  padding: 88px 0 96px;
  background: #f1f5f9;
}

.campaigns-section-header .section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: #e8eaf6;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

.campaign-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.campaign-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--primary-color);
  border-radius: 14px;
  padding: 0;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.campaign-item:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  border-left-color: var(--secondary-color);
}

.campaign-item.featured {
  border-left-color: #16a34a;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.12);
}

.campaign-item.featured::before {
  content: 'Featured';
  display: block;
  background: linear-gradient(90deg, #1e3a5f 0%, #2a5298 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
}

.campaign-card-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
}

.campaign-main {
  flex: 1;
  min-width: 0;
}

.campaign-title-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.campaign-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8eaf6 0%, #f5f7fa 100%);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.campaign-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #15803d;
  margin-bottom: 4px;
}

.campaign-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: campaign-live-pulse 2s ease infinite;
}

@keyframes campaign-live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.campaign-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.campaign-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 14px 0 0;
  padding: 0;
}

.campaign-tags li {
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 5px 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.campaign-tags li i {
  color: var(--secondary-color);
  font-size: 0.7rem;
}

.campaign-side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  min-width: 168px;
  flex-shrink: 0;
}

.campaign-payout-box {
  text-align: center;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
}

.campaign-payout-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-bottom: 4px;
}

.campaign-payout-note {
  display: block;
  font-size: 0.68rem;
  color: #94a3b8;
  margin-top: 4px;
}

.reward-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.1;
}

.reward-amount .currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: #64748b;
  margin-right: 2px;
}

.campaign-list-empty {
  text-align: center;
  padding: 48px 24px;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
}

.campaign-list-empty i {
  font-size: 2rem;
  color: #94a3b8;
  margin-bottom: 12px;
}

.campaign-list-empty-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px !important;
}

.btn-claim,
a.btn-claim {
  background: linear-gradient(135deg, var(--success-color) 0%, #66bb6a 100%);
  color: #fff !important;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: var(--shadow-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-align: center;
  min-width: 148px;
}

.btn-claim:hover:not(.is-loading) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Corporate button loader (Claim / Continue / Partner) */
.btn-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 120px;
}

.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: inrflash-btn-spin 0.65s linear infinite;
  flex-shrink: 0;
}

.btn-claim.is-loading,
.campaign-submit.is-loading,
.btn-partner.is-loading {
  pointer-events: none;
  cursor: wait;
  transform: none;
  box-shadow: var(--shadow-light);
}

.btn-claim.is-loading .btn-spinner,
.campaign-submit.is-loading .btn-spinner,
.btn-partner.is-loading .btn-spinner {
  display: inline-block;
}

.btn-partner.is-loading .btn-spinner {
  border-color: rgba(15, 23, 42, 0.2);
  border-top-color: #0f172a;
}

@keyframes inrflash-btn-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Compliance / business trust strip */
.compliance-section {
  padding: 56px 0 64px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.compliance-section .section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.compliance-section .section-header h2 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.compliance-section .section-header p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.compliance-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.compliance-card i {
  font-size: 1.35rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.compliance-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.compliance-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }
  .compliance-section {
    padding: 40px 0 48px;
  }
}

.campaign-desc {
  color: var(--text-light);
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
}

/* Partner Section */
.partner-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.partner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.partner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.partner-text h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #f8fafc;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.partner-text p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
  color: #cbd5e1;
  font-weight: 400;
}

.partner-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.partner-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 16px;
}

.partner-benefits svg {
  color: #60a5fa;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(96, 165, 250, 0.3));
}

.partner-benefits strong {
  color: #fbbf24;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(251, 191, 36, 0.3);
}

.btn-partner,
a.btn-partner {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  color: #0f172a !important;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
  border: 2px solid rgba(251, 191, 36, 0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-partner::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;
}

.btn-partner:hover::before {
  left: 100%;
}

.btn-partner:hover {
  background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(251, 191, 36, 0.6);
  border-color: rgba(251, 191, 36, 0.5);
}

.partner-stats {
  display: grid;
  gap: 25px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.4), transparent);
}

.stat-card h3 {
  font-size: 32px;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.stat-card p {
  font-size: 16px;
  color: #e2e8f0;
  margin: 0;
  font-weight: 500;
  opacity: 0.9;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(251, 191, 36, 0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  /* Hero Section Mobile */
  .hero-section {
    padding: 80px 0;
  }
  
  .hero-section h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .hero-section p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .trust-badges {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .badge {
    font-size: 12px;
    padding: 10px 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn {
    padding: 14px 32px;
    font-size: 14px;
    width: 100%;
    max-width: 280px;
  }
  
  /* Stats Section Mobile */
  .stats-section {
    padding: 60px 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-item {
    padding: 30px 15px;
  }
  
  .stat-icon {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .stat-item h3 {
    font-size: 28px;
    margin-bottom: 8px;
  }
  
  .stat-item p {
    font-size: 12px;
  }
  
  /* Campaigns Section Mobile */
  .campaigns-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .section-header p {
    font-size: 16px;
  }
  
  .campaign-card-row {
    flex-direction: column;
    padding: 18px 16px;
    gap: 18px;
  }

  .campaign-side {
    min-width: 0;
    width: 100%;
  }

  .campaign-payout-box {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 12px;
    padding: 12px 14px;
  }

  .campaign-payout-label,
  .campaign-payout-note {
    width: 100%;
  }

  .reward-amount {
    font-size: 1.65rem;
  }

  .campaign-title {
    font-size: 1.15rem;
  }

  .btn-claim {
    width: 100%;
    max-width: none;
  }

  .campaign-desc {
    font-size: 14px;
  }
  
  /* Partner Section Mobile */
  .partner-section {
    padding: 60px 0;
  }
  
  .partner-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .partner-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .partner-text p {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .partner-benefits li {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .partner-benefits svg {
    font-size: 18px;
  }
  
  .partner-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-card {
    padding: 25px 20px;
  }
  
  .stat-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .stat-card p {
    font-size: 14px;
  }
  
  .btn-partner {
    font-size: 16px;
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  
  /* Hero Section Extra Small */
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-section h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .hero-section p {
    font-size: 14px;
    margin-bottom: 25px;
  }
  
  .trust-badges {
    gap: 12px;
    margin-bottom: 30px;
  }
  
  .badge {
    font-size: 11px;
    padding: 8px 14px;
  }
  
  .badge svg {
    font-size: 14px;
  }
  
  .btn {
    padding: 12px 28px;
    font-size: 13px;
    max-width: 260px;
  }
  
  /* Stats Section Extra Small */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stat-item {
    padding: 25px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
  }
  
  .stat-icon {
    font-size: 32px;
    margin-bottom: 0;
  }
  
  .stat-item h3 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  
  .stat-item p {
    font-size: 11px;
  }
  
  /* Campaigns Section Extra Small */
  .section-header h2 {
    font-size: 24px;
  }
  
  .section-header p {
    font-size: 14px;
  }
  
  .campaign-title {
    font-size: 1.05rem;
  }

  .campaign-tags li {
    font-size: 0.72rem;
  }

  .reward-amount {
    font-size: 1.45rem;
  }

  .btn-claim {
    font-size: 13px;
    padding: 11px 18px;
  }

  .campaign-desc {
    font-size: 13px;
  }
  
  /* Partner Section Extra Small */
  .partner-text h2 {
    font-size: 24px;
  }
  
  .partner-text p {
    font-size: 14px;
  }
  
  .partner-benefits li {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .partner-benefits svg {
    font-size: 16px;
  }
  
  .stat-card {
    padding: 20px 15px;
  }
  
  .stat-card h3 {
    font-size: 20px;
  }
  
  .stat-card p {
    font-size: 12px;
  }
}

/* Tablet Responsive (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 25px;
  }
  
  .hero-section h1 {
    font-size: 42px;
  }
  
  .hero-section p {
    font-size: 18px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .partner-content {
    gap: 50px;
  }
  
  .partner-text h2 {
    font-size: 36px;
  }
}

/* Large Mobile Landscape */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-section h1 {
    font-size: 28px;
  }
  
  .trust-badges {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partner-content {
    gap: 30px;
  }
}
.site-header {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar {
  background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 25px;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  color: #fff;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.main-header {
  padding: 20px 0;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo a {
  font-size: 32px;
  font-weight: 800;
  color: #1e3c72;
  text-decoration: none;
  letter-spacing: -1px;
}

.logo .tagline {
  font-size: 12px;
  color: #6c757d;
  font-weight: 500;
  margin-top: 2px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  color: #1e3c72;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1e3c72;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #1e3c72;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(30, 60, 114, 0.1);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .top-bar {
    padding: 8px 0;
  }
  
  .top-bar .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
  }
  
  .contact-info {
    flex-direction: row;
    gap: 15px;
    font-size: 11px;
    flex-wrap: wrap;
  }
  
  .contact-info span {
    font-size: 11px;
  }
  
  .social-links a {
    font-size: 16px;
  }
  
  .main-header {
    padding: 15px 0;
  }
  
  .main-header .container {
    padding: 0 15px;
  }
  
  .logo a {
    font-size: 24px;
  }
  
  .logo .tagline {
    font-size: 10px;
  }
  
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .main-nav.active {
    max-height: 400px;
  }
  
  .main-nav ul {
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
  }
  
  .main-nav li {
    width: 100%;
  }
  
  .main-nav a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
  }
  
  .main-nav a:hover {
    background: rgba(30, 60, 114, 0.05);
  }
  
  .main-nav a::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .top-bar {
    font-size: 10px;
  }
  
  .contact-info {
    gap: 12px;
  }
  
  .contact-info span {
    font-size: 10px;
  }
  
  .logo a {
    font-size: 20px;
  }
  
  .logo .tagline {
    font-size: 9px;
  }
  
  .mobile-menu-toggle {
    font-size: 20px;
    padding: 6px;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .contact-info {
    gap: 10px;
  }
  
  .contact-info span {
    font-size: 9px;
  }
  
  .social-links a {
    font-size: 14px;
  }
}

/* Floating email support */
.support-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1001;
}

.support-toggle {
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.45);
}

@media (max-width: 768px) {
  .support-widget {
    bottom: 14px;
    right: 14px;
  }
  .support-toggle {
    width: 52px;
    height: 52px;
    font-size: 21px;
  }
}

/* WhatsApp Widget Styles */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1001;
}

.whatsapp-toggle {
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.whatsapp-chat {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: #f0f2f5;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  width: 350px;
  height: 450px;
  overflow: hidden;
  animation: slideUp 0.3s ease;
  display: flex;
  flex-direction: column;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-header {
  background: #075e54;
  color: white;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #054d44;
}

.header-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-avatar {
  width: 40px;
  height: 40px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.profile-info {
  display: flex;
  flex-direction: column;
}

.profile-name {
  font-weight: 500;
  font-size: 16px;
  color: white;
}

.profile-status {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.close-button {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.close-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.chat-body {
  flex: 1;
  background: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4c8b8' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* WhatsApp Message Bubbles */
.message {
  display: flex;
  margin-bottom: 8px;
}

.message.received {
  justify-content: flex-start;
}

.message.sent {
  justify-content: flex-end;
}

.message-bubble {
  max-width: 70%;
  padding: 8px 12px;
  border-radius: 8px;
  position: relative;
  word-wrap: break-word;
}

.message.received .message-bubble {
  background: white;
  border-radius: 0 8px 8px 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message.sent .message-bubble {
  background: #dcf8c6;
  border-radius: 8px 0 8px 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message-bubble p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #262626;
}

.message-time {
  font-size: 11px;
  color: #667781;
  margin-top: 4px;
  display: block;
  text-align: right;
}

/* Typing Animation */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #667781;
  font-style: italic;
  animation: fadeIn 0.3s ease;
}

.typing-name {
  color: #25D366;
  font-weight: 600;
  font-style: normal;
}

.typing-dots {
  display: flex;
  gap: 2px;
  align-items: center;
}

.typing-dots span {
  width: 4px;
  height: 4px;
  background: #6c757d;
  border-radius: 50%;
  animation: typingDot 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0s;
}

.typing-text {
  margin-left: 2px;
}

@keyframes typingDot {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message {
  background: #f8f9fa;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 10px;
  position: relative;
}

.message p {
  margin: 0 0 5px 0;
  font-size: 14px;
  line-height: 1.4;
}

.message small {
  color: #6c757d;
  font-size: 11px;
}

.chat-footer {
  padding: 10px 16px;
  background: #f0f2f5;
  border-top: 1px solid #e5e5e5;
}

.chat-input-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-input-wrapper {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 24px;
  padding: 8px 12px;
  flex: 1;
  border: 1px solid #e5e5e5;
}

.chat-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 4px 8px;
  background: transparent;
  cursor: pointer;
}

.chat-input::placeholder {
  color: #667781;
}

.send-button {
  background: #25d366;
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.send-button:hover {
  background: #1ebe5a;
}

.send-button svg {
  margin-left: 2px;
}

/* Mobile Responsive for WhatsApp Widget */
@media (max-width: 768px) {
  .whatsapp-widget {
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-toggle {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
  
  .whatsapp-chat {
    width: 280px;
    right: -10px;
  }
}

@media (max-width: 480px) {
  .whatsapp-widget {
    bottom: 10px;
    right: 10px;
  }
  
  .whatsapp-toggle {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  
  .whatsapp-chat {
    width: 260px;
    bottom: 70px;
  }
  
  .chat-header {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .chat-body {
    padding: 15px;
  }
  
  .message {
    padding: 10px 12px;
  }
  
  .message p {
    font-size: 13px;
  }
  
  .chat-footer {
    padding: 8px 12px;
  }
  
  .chat-input-wrapper {
    padding: 6px 10px;
  }
  
  .chat-input {
    font-size: 13px;
  }
  
  .send-button {
    width: 32px;
    height: 32px;
  }
}/* Footer Styles */
.site-footer {
  background: #000000;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}

.footer-main {
  padding: 80px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.footer-tagline {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-description {
  color: #cccccc;
  margin-bottom: 30px;
  line-height: 1.8;
}

.trust-indicators {
  display: flex;
  gap: 20px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.trust-badge svg {
  color: #25D366;
  font-size: 16px;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul,
.footer-legal ul,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-legal ul li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-legal a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 5px 0;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #25D366;
  transform: translateX(5px);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #cccccc;
}

.contact-list svg {
  color: #ffffff;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.social-links {
  margin-top: 25px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.social-links a:hover {
  background: #25D366;
  transform: translateY(-3px);
}

.footer-bottom {
  background: #111111;
  padding: 25px 0;
  text-align: center;
  font-size: 13px;
  color: #999999;
}

.footer-bottom p {
  margin: 0;
}

.company-info,
.registration {
  color: #fff;
  font-weight: 600;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
  }
  
  .trust-indicators {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: left;
  }
  
  .footer-main {
    padding: 40px 0 20px;
  }
  
  .trust-indicators {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  
  .social-links {
    justify-content: flex-start;
  }
  
  .contact-list li {
    justify-content: flex-start;
  }
  
  .footer-logo {
    font-size: 24px;
  }
  
  .footer-tagline {
    font-size: 12px;
  }
  
  .footer-description {
    font-size: 13px;
  }
  
  .footer-links h4,
  .footer-legal h4,
  .footer-contact h4 {
    font-size: 16px;
  }
  
  .footer-links a,
  .footer-legal a {
    font-size: 13px;
  }
  
  .contact-list li {
    font-size: 13px;
  }
  
  .footer-bottom {
    font-size: 11px;
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 30px 0 15px;
  }
  
  .footer-content {
    gap: 20px;
  }
  
  .footer-logo {
    font-size: 22px;
  }
  
  .footer-tagline {
    font-size: 11px;
  }
  
  .footer-description {
    font-size: 12px;
    margin-bottom: 20px;
  }
  
  .trust-badge {
    font-size: 11px;
    padding: 8px 12px;
  }
  
  .footer-links h4,
  .footer-legal h4,
  .footer-contact h4 {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .footer-links a,
  .footer-legal a {
    font-size: 12px;
    padding: 4px 0;
  }
  
  .contact-list li {
    font-size: 12px;
    margin-bottom: 10px;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .footer-bottom {
    font-size: 10px;
    padding: 15px 0;
  }
}