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

:root {
  --primary: #6366f1;
  --secondary: #0ea5e9;
  --dark: #0f172a;
  --accent: #f43f5e;
  --text: #1e293b;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --border: #e2e8f0;
  --success: #10b981;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  background: var(--bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.6rem;
}
h3 {
  font-size: 1.3rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.header {
  background: var(--bg);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 25px;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: white;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.7;
  max-width: 800px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: white;
  color: var(--primary);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.services {
  padding: 50px 0;
  background: var(--bg-light);
}

.services h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card i {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card h3 {
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.service-card p {
  color: var(--text-light);
  font-size: 14px;
}

.about {
  padding: 50px 0;
}

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

.about-text h2 {
  margin-bottom: 1rem;
  color: var(--dark);
}

.about-text p {
  margin-bottom: 1.2rem;
  color: var(--text-light);
}

.features-list {
  list-style: none;
}

.features-list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 12px;
  font-size: 14px;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.products {
  padding: 50px 0;
  background: var(--bg-light);
}

.products h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.product-card {
  background: white;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-card.featured {
  border: 2px solid var(--primary);
  position: relative;
}

.product-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.product-card h3 {
  margin-bottom: 1rem;
  color: var(--dark);
}

.product-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 1.5rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.process {
  padding: 50px 0;
}

.process h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--dark);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.step {
  text-align: center;
  padding: 25px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.2rem;
}

.step h3 {
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.step p {
  color: var(--text-light);
  font-size: 14px;
}

.testimonials {
  padding: 50px 0;
  background: var(--bg-light);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
}

.testimonial-text {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info h4 {
  margin: 0;
  font-size: 0.95rem;
  color: var(--dark);
}

.author-info p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-hero h1,
.contact-hero h1 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-hero p,
.contact-hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.content-section {
  padding: 50px 0;
}

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

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-text h2 {
  margin-bottom: 1rem;
  color: var(--dark);
}

.content-text p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.content-image img {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.features-section {
  padding: 50px 0;
  background: var(--bg-light);
}

.features-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.feature-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.feature-box i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-box h3 {
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.feature-box p {
  color: var(--text-light);
  font-size: 14px;
}

.cta-section {
  padding: 50px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 50px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

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

.cta-box h2 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-box p {
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.recovery-process {
  padding: 50px 0;
  background: var(--bg-light);
}

.recovery-process h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--dark);
}

.recovery-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.recovery-step {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.recovery-step h3 {
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.recovery-step p {
  color: var(--text-light);
  font-size: 14px;
}

.warning-signs {
  padding: 50px 0;
}

.warning-signs h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--dark);
}

.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.sign-card {
  background: #fef3c7;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.sign-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
}

.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.contact-section {
  padding: 50px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.contact-info h2 {
  margin-bottom: 2rem;
  color: var(--dark);
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  border-left: 3px solid var(--primary);
  padding-left: 15px;
}

.info-item h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--dark);
}

.info-item p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

.contact-form-wrapper h2 {
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.contact-form {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  margin-bottom: 25px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
}

.checkbox-label input[type='checkbox'] {
  margin-top: 3px;
  width: auto;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.map-section {
  padding: 50px 0;
  background: var(--bg-light);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--dark);
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thankyou-section,
.error-section {
  padding: 80px 0;
  min-height: calc(100vh - 20px);
  display: flex;
  align-items: center;
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-icon {
  width: 100px;
  height: 100px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  font-weight: 700;
}

.thankyou-icon::before {
  content: '✓';
}

.thankyou-content h1 {
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.thankyou-content p {
  margin-bottom: 1.2rem;
  color: var(--text-light);
}

.thankyou-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.error-number {
  font-size: 6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.error-content h1 {
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.error-content p {
  margin-bottom: 1.2rem;
  color: var(--text-light);
}

.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.policy-section {
  padding: 50px 0;
  word-break: break-all;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h1 {
  margin-bottom: 1rem;
  color: var(--dark);
}

.update-date {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 2rem;
}

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.policy-content p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.policy-content ul {
  margin-bottom: 1rem;
  padding-left: 25px;
}

.policy-content li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

.footer {
  background: var(--dark);
  color: white;
  padding: 25px 0;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-info p {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 12px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: white;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.privacy-content p {
  margin: 0;
  font-size: 14px;
  flex: 1;
}

.privacy-content a {
  color: var(--secondary);
  text-decoration: underline;
}

.privacy-content button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s ease;
}

.privacy-content button:hover {
  background: var(--secondary);
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.1rem;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.05rem;
  }

  .hero-stats {
    gap: 25px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    gap: 15px;
  }

  .nav.active {
    transform: translateX(0);
  }

  .menu-toggle {
    display: flex;
  }

  .about-content,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .products-grid,
  .features-grid,
  .process-steps,
  .recovery-steps,
  .signs-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .thankyou-actions,
  .error-actions {
    flex-direction: column;
  }

  .thankyou-actions .btn-primary,
  .thankyou-actions .btn-secondary,
  .error-actions .btn-primary,
  .error-actions .btn-secondary {
    width: 100%;
  }

  .cta-box {
    padding: 35px 25px;
  }

  .privacy-content {
    flex-direction: column;
    text-align: center;
  }

  .privacy-content button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1rem;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 20px;
    flex-direction: column;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .hero,
  .page-hero,
  .contact-hero {
    padding: 40px 0;
  }

  .services,
  .about,
  .products,
  .process,
  .content-section,
  .features-section,
  .cta-section,
  .recovery-process,
  .warning-signs,
  .contact-section,
  .map-section,
  .policy-section {
    padding: 35px 0;
  }

  .cta {
    padding: 45px 0;
  }

  .service-card,
  .product-card,
  .feature-box,
  .recovery-step {
    padding: 25px;
  }

  .contact-form {
    padding: 25px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 22px;
    font-size: 13px;
  }

  .error-number {
    font-size: 4rem;
  }

  .thankyou-icon {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 13px;
  }

  .container {
    padding: 0 12px;
  }

  h1 {
    font-size: 1.3rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  h3 {
    font-size: 0.95rem;
  }

  .hero-content h1 {
    font-size: 1.4rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .logo {
    font-size: 1rem;
  }

  .service-card,
  .product-card,
  .feature-box,
  .recovery-step {
    padding: 20px;
  }

  .contact-form {
    padding: 20px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 9px 18px;
    font-size: 12px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
