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

:root {
  --primary: #6366f1;
  --secondary: #8b5cf6;
  --accent: #ec4899;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #64748b;
  --white: #ffffff;
  --success: #10b981;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--light);
  overflow-x: hidden;
}

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

header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(99,102,241,0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-menu li a {
  text-decoration: none;
  color: var(--dark);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: block;
}

.nav-menu li a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: var(--white);
  padding: 100px 0 70px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.15)"/></svg>');
  animation: float 20s linear infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-60px); }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.5;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-feature::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.cta-button, .btn, .btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--white);
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover, .btn:hover, .btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

section {
  padding: 70px 0;
}

h2 {
  font-size: 38px;
  margin-bottom: 16px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  text-align: center;
  letter-spacing: -1px;
  line-height: 1.2;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.3;
}

section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 17px;
  color: var(--gray);
  line-height: 1.6;
}

.service-grid, .pricing-grid, .features-grid, .benefits-grid, .reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.service-card, .price-card, .feature, .benefit, .reason {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(99,102,241,0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before, .price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before, .price-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover, .price-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}

.service-card h3, .price-card h3 {
  margin-bottom: 14px;
}

.service-card p, .price-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 20px;
}

.price-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  transform: scale(1.05);
  border: none;
}

.price-card.featured h3,
.price-card.featured .price,
.price-card.featured p {
  color: var(--white);
}

.price {
  font-size: 44px;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 20px 0;
  line-height: 1;
}

.price-card.featured .price {
  background: var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-card ul {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.price-card ul li {
  padding: 8px 0;
  font-size: 14px;
  position: relative;
  padding-left: 26px;
}

.price-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 16px;
}

.price-card.featured ul li:before {
  color: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.step {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: 18px;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--gradient-1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(102,126,234,0.3);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

.stats-section {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: var(--white);
  padding: 70px 0;
  position: relative;
}

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

.stat-item {
  padding: 28px 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
}

.trust-section {
  background: var(--light);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.trust-badge {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: 18px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.badge-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(102,126,234,0.3);
}

.trust-badge h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.trust-badge p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.testimonial {
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

.author {
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
}

.info-grid, .details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.info-item, .detail-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: 18px;
  transition: all 0.3s ease;
}

.info-item:hover, .detail-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.info-item h3, .detail-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.info-item p, .detail-item p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

.map-container {
  margin-top: 32px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

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

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}

.form-group input, .form-group textarea {
  padding: 14px;
  border: 2px solid rgba(99,102,241,0.2);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99,102,241,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

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

.checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

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

.submit-btn {
  padding: 14px 28px;
  background: var(--gradient-1);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102,126,234,0.3);
}

.contact-info-container {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 36px;
  border-radius: 18px;
  color: var(--white);
}

.info-block {
  margin-bottom: 28px;
}

.info-block:last-child {
  margin-bottom: 0;
}

.info-block h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--white);
}

.info-block p {
  font-size: 15px;
  margin-bottom: 6px;
  opacity: 0.95;
  line-height: 1.5;
}

footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
  padding: 50px 0 20px;
  margin-top: 70px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  margin-bottom: 36px;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 17px;
}

.footer-section p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  opacity: 1;
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
}

.footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

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

.faq-section {
  padding: 70px 0;
  background: var(--light);
}

.faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 16px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
  color: var(--gray);
  line-height: 1.6;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  display: block;
}

.emergency-banner {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}

.emergency-banner h3 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 14px;
}

.emergency-banner p {
  font-size: 17px;
  margin-bottom: 28px;
  opacity: 0.95;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: var(--white);
  padding: 20px;
  z-index: 2000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  display: none;
  backdrop-filter: blur(10px);
}

.privacy-popup.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.privacy-content {
  max-width: 1280px;
  margin: 0 auto;
}

.privacy-content h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 10px;
}

.privacy-content p {
  font-size: 14px;
  margin-bottom: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

.privacy-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.privacy-buttons button {
  padding: 10px 28px;
  background: var(--white);
  color: var(--primary);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.privacy-buttons button:hover {
  transform: scale(1.05);
}

.privacy-buttons a {
  color: var(--white);
  font-size: 14px;
  text-decoration: underline;
}

.policy-page {
  padding: 70px 0;
  background: var(--white);
}

.policy-page .container {
  max-width: 900px;
}

.policy-page h1 {
  font-size: 42px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.policy-page h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
  text-align: left;
}

.policy-page h3 {
  font-size: 22px;
  margin-top: 28px;
  margin-bottom: 14px;
}

.policy-page ul {
  margin-left: 28px;
  margin-bottom: 20px;
}

.policy-page ul li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.policy-page p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray);
}

.update-date {
  font-size: 14px;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 28px;
}

.error-page, .thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: var(--white);
  text-align: center;
  padding: 30px 20px;
}

.error-content, .thankyou-content {
  max-width: 700px;
}

.error-code {
  font-size: 100px;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 8px 30px rgba(0,0,0,0.3);
  line-height: 1;
}

.error-content h2, .thankyou-content h1 {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
}

.error-content p, .thankyou-content p {
  font-size: 17px;
  margin-bottom: 28px;
  opacity: 0.95;
  line-height: 1.5;
}

.error-actions, .thankyou-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.success-icon {
  width: 90px;
  height: 90px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  margin: 0 auto 28px;
  color: var(--white);
  box-shadow: 0 10px 40px rgba(16,185,129,0.4);
}

.thankyou-info {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 14px;
  margin: 28px 0;
  border: 1px solid rgba(255,255,255,0.2);
}

.thankyou-info p {
  margin-bottom: 10px;
  font-size: 15px;
}

.thankyou-info p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .header-container {
    padding: 14px 18px;
  }

  .logo {
    font-size: 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    box-shadow: var(--shadow-md);
    display: none;
    padding: 12px 0;
    border-radius: 0 0 14px 14px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li a {
    padding: 12px 20px;
    border-radius: 0;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .hero-features {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .hero-feature {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .cta-button, .btn, .btn-primary {
    padding: 14px 32px;
    font-size: 14px;
  }

  section {
    padding: 60px 0;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }

  section > .container > p {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .service-grid, .pricing-grid, .features-grid, .benefits-grid, .reasons-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }

  .service-card, .price-card {
    padding: 24px;
  }

  .service-card img {
    height: 200px;
  }

  .price-card.featured {
    transform: scale(1);
  }

  .price {
    font-size: 40px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-label {
    font-size: 15px;
  }

  .trust-badges {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .info-grid, .details-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .contact-info-container {
    padding: 28px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-question {
    font-size: 15px;
    padding: 18px;
  }

  .faq-answer {
    padding: 0 18px 18px;
    font-size: 14px;
  }

  .emergency-banner h3 {
    font-size: 28px;
  }

  .emergency-banner p {
    font-size: 16px;
  }

  .error-code {
    font-size: 80px;
  }

  .error-content h2, .thankyou-content h1 {
    font-size: 30px;
  }

  .error-content p, .thankyou-content p {
    font-size: 16px;
  }

  .policy-page h1 {
    font-size: 36px;
  }

  .policy-page h2 {
    font-size: 26px;
  }

  .map-container iframe {
    height: 350px;
  }
}

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

  .container {
    padding: 0 16px;
  }

  .header-container {
    padding: 12px 16px;
  }

  .logo {
    font-size: 18px;
  }

  .hero {
    padding: 70px 0 50px;
  }

  .hero h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-features {
    gap: 12px;
    margin: 24px 0;
  }

  .hero-feature {
    font-size: 14px;
    padding: 8px 16px;
  }

  .hero-feature::before {
    width: 22px;
    height: 22px;
    font-size: 13px;
  }

  .cta-button, .btn, .btn-primary {
    padding: 13px 28px;
    font-size: 13px;
  }

  section {
    padding: 50px 0;
  }

  h2 {
    font-size: 28px;
    margin-bottom: 14px;
  }

  h3 {
    font-size: 19px;
  }

  section > .container > p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .service-grid, .pricing-grid, .features-grid, .benefits-grid, .reasons-grid {
    gap: 20px;
    margin-top: 28px;
  }

  .service-card, .price-card, .feature, .benefit, .reason {
    padding: 22px;
    border-radius: 16px;
  }

  .service-card img {
    height: 180px;
    border-radius: 12px;
    margin-bottom: 16px;
  }

  .service-card h3, .price-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .service-card p, .price-card p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .price {
    font-size: 36px;
    margin: 16px 0;
  }

  .price-card ul {
    margin: 16px 0;
  }

  .price-card ul li {
    padding: 7px 0;
    font-size: 13px;
    padding-left: 24px;
  }

  .price-card ul li:before {
    font-size: 15px;
  }

  .steps {
    gap: 20px;
    margin-top: 28px;
  }

  .step {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .step-number {
    width: 58px;
    height: 58px;
    font-size: 26px;
    margin-bottom: 16px;
  }

  .step h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .step p {
    font-size: 13px;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .stat-number {
    font-size: 42px;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 14px;
  }

  .trust-badges {
    gap: 20px;
    margin-top: 28px;
  }

  .trust-badge {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .badge-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
    margin-bottom: 16px;
  }

  .trust-badge h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .trust-badge p {
    font-size: 13px;
  }

  .testimonial-grid {
    gap: 20px;
    margin-top: 28px;
  }

  .testimonial {
    padding: 22px;
    border-radius: 16px;
  }

  .testimonial p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .author {
    font-size: 13px;
  }

  .info-grid, .details-grid {
    gap: 20px;
    margin-top: 28px;
  }

  .info-item, .detail-item {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .info-item h3, .detail-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .info-item p, .detail-item p {
    font-size: 14px;
  }

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

  .contact-wrapper {
    gap: 24px;
    margin-top: 28px;
  }

  .contact-form {
    gap: 18px;
  }

  .form-group label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .form-group input, .form-group textarea {
    padding: 12px;
    font-size: 14px;
    border-radius: 8px;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .checkbox-label {
    font-size: 12px;
    gap: 8px;
  }

  .checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  .submit-btn {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 8px;
  }

  .contact-info-container {
    padding: 24px;
    border-radius: 16px;
  }

  .info-block {
    margin-bottom: 24px;
  }

  .info-block h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .info-block p {
    font-size: 14px;
  }

  footer {
    padding: 40px 0 18px;
    margin-top: 50px;
  }

  .footer-content {
    gap: 24px;
    margin-bottom: 28px;
  }

  .footer-section h4 {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .footer-section p {
    font-size: 13px;
  }

  .footer-section ul li {
    margin-bottom: 8px;
  }

  .footer-section ul li a {
    font-size: 13px;
  }

  .footer-bottom {
    padding-top: 18px;
    font-size: 12px;
  }

  .footer-links {
    gap: 16px;
    margin-top: 8px;
  }

  .footer-links a {
    font-size: 12px;
  }

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

  .faq-list {
    margin-top: 28px;
  }

  .faq-item {
    border-radius: 12px;
    margin-bottom: 14px;
  }

  .faq-question {
    padding: 16px;
    font-size: 14px;
  }

  .faq-question::after {
    font-size: 22px;
  }

  .faq-answer {
    padding: 0 16px 16px;
    font-size: 13px;
  }

  .emergency-banner {
    padding: 40px 0;
  }

  .emergency-banner h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .emergency-banner p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .privacy-popup {
    padding: 18px 16px;
  }

  .privacy-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .privacy-content p {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .privacy-buttons {
    gap: 12px;
  }

  .privacy-buttons button {
    padding: 9px 24px;
    font-size: 13px;
  }

  .privacy-buttons a {
    font-size: 13px;
  }

  .policy-page {
    padding: 50px 0;
  }

  .policy-page h1 {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .policy-page h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 14px;
  }

  .policy-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
  }

  .policy-page ul {
    margin-left: 24px;
    margin-bottom: 18px;
  }

  .policy-page ul li {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .policy-page p {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .update-date {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .error-page, .thankyou-page {
    padding: 24px 16px;
  }

  .error-code {
    font-size: 70px;
    margin-bottom: 18px;
  }

  .error-content h2, .thankyou-content h1 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .error-content p, .thankyou-content p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .error-actions, .thankyou-actions {
    gap: 14px;
    margin-top: 28px;
  }

  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 48px;
    margin-bottom: 24px;
  }

  .thankyou-info {
    padding: 18px;
    border-radius: 12px;
    margin: 24px 0;
  }

  .thankyou-info p {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .map-container {
    margin-top: 28px;
    border-radius: 16px;
  }

  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 14px;
  }

  .header-container {
    padding: 10px 14px;
  }

  .logo {
    font-size: 17px;
  }

  .nav-toggle {
    padding: 6px;
  }

  .nav-toggle span {
    width: 22px;
    height: 2.5px;
  }

  .nav-menu {
    max-width: 100%;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero h1 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero-features {
    gap: 10px;
    margin: 20px 0;
  }

  .hero-feature {
    font-size: 13px;
    padding: 7px 14px;
  }

  .hero-feature::before {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .cta-button, .btn, .btn-primary {
    padding: 12px 24px;
    font-size: 12px;
  }

  section {
    padding: 40px 0;
  }

  h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  h3 {
    font-size: 17px;
  }

  section > .container > p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .service-grid, .pricing-grid, .features-grid, .benefits-grid, .reasons-grid {
    gap: 18px;
    margin-top: 24px;
  }

  .service-card, .price-card, .feature, .benefit, .reason {
    padding: 20px;
    border-radius: 14px;
  }

  .service-card img {
    height: 160px;
    border-radius: 10px;
    margin-bottom: 14px;
  }

  .service-card h3, .price-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .service-card p, .price-card p {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .price {
    font-size: 32px;
    margin: 14px 0;
  }

  .price-card ul {
    margin: 14px 0;
  }

  .price-card ul li {
    padding: 6px 0;
    font-size: 12px;
    padding-left: 22px;
  }

  .price-card ul li:before {
    font-size: 14px;
  }

  .steps {
    gap: 18px;
    margin-top: 24px;
  }

  .step {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .step-number {
    width: 54px;
    height: 54px;
    font-size: 24px;
    margin-bottom: 14px;
  }

  .step h3 {
    font-size: 17px;
    margin-bottom: 7px;
  }

  .step p {
    font-size: 12px;
  }

  .stats-section {
    padding: 40px 0;
  }

  .stats-grid {
    gap: 18px;
  }

  .stat-item {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .stat-number {
    font-size: 38px;
    margin-bottom: 7px;
  }

  .stat-label {
    font-size: 13px;
  }

  .trust-badges {
    gap: 18px;
    margin-top: 24px;
  }

  .trust-badge {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .badge-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
    margin-bottom: 14px;
  }

  .trust-badge h3 {
    font-size: 17px;
    margin-bottom: 7px;
  }

  .trust-badge p {
    font-size: 12px;
  }

  .testimonial-grid {
    gap: 18px;
    margin-top: 24px;
  }

  .testimonial {
    padding: 20px;
    border-radius: 14px;
  }

  .testimonial p {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .author {
    font-size: 12px;
  }

  .info-grid, .details-grid {
    gap: 18px;
    margin-top: 24px;
  }

  .info-item, .detail-item {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .info-item h3, .detail-item h3 {
    font-size: 17px;
    margin-bottom: 7px;
  }

  .info-item p, .detail-item p {
    font-size: 13px;
  }

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

  .contact-wrapper {
    gap: 20px;
    margin-top: 24px;
  }

  .contact-form {
    gap: 16px;
  }

  .form-group label {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .form-group input, .form-group textarea {
    padding: 11px;
    font-size: 13px;
    border-radius: 7px;
  }

  .form-group textarea {
    min-height: 90px;
  }

  .checkbox-label {
    font-size: 11px;
    gap: 7px;
  }

  .checkbox-label input[type="checkbox"] {
    width: 15px;
    height: 15px;
  }

  .submit-btn {
    padding: 11px 22px;
    font-size: 13px;
    border-radius: 7px;
  }

  .contact-info-container {
    padding: 20px;
    border-radius: 14px;
  }

  .info-block {
    margin-bottom: 20px;
  }

  .info-block h3 {
    font-size: 16px;
    margin-bottom: 7px;
  }

  .info-block p {
    font-size: 13px;
  }

  footer {
    padding: 36px 0 16px;
    margin-top: 40px;
  }

  .footer-content {
    gap: 20px;
    margin-bottom: 24px;
  }

  .footer-section h4 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .footer-section p {
    font-size: 12px;
  }

  .footer-section ul li {
    margin-bottom: 7px;
  }

  .footer-section ul li a {
    font-size: 12px;
  }

  .footer-bottom {
    padding-top: 16px;
    font-size: 11px;
  }

  .footer-links {
    gap: 14px;
    margin-top: 7px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .faq-section {
    padding: 40px 0;
  }

  .faq-list {
    margin-top: 24px;
  }

  .faq-item {
    border-radius: 10px;
    margin-bottom: 12px;
  }

  .faq-question {
    padding: 14px;
    font-size: 13px;
  }

  .faq-question::after {
    font-size: 20px;
  }

  .faq-answer {
    padding: 0 14px 14px;
    font-size: 12px;
  }

  .emergency-banner {
    padding: 36px 0;
  }

  .emergency-banner h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .emergency-banner p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .privacy-popup {
    padding: 16px 14px;
  }

  .privacy-content h3 {
    font-size: 15px;
    margin-bottom: 7px;
  }

  .privacy-content p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .privacy-buttons {
    gap: 10px;
  }

  .privacy-buttons button {
    padding: 8px 20px;
    font-size: 12px;
  }

  .privacy-buttons a {
    font-size: 12px;
  }

  .policy-page {
    padding: 40px 0;
  }

  .policy-page h1 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .policy-page h2 {
    font-size: 19px;
    margin-top: 28px;
    margin-bottom: 12px;
  }

  .policy-page h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .policy-page ul {
    margin-left: 20px;
    margin-bottom: 16px;
  }

  .policy-page ul li {
    margin-bottom: 7px;
    font-size: 13px;
  }

  .policy-page p {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .update-date {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .error-page, .thankyou-page {
    padding: 20px 14px;
  }

  .error-code {
    font-size: 60px;
    margin-bottom: 16px;
  }

  .error-content h2, .thankyou-content h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .error-content p, .thankyou-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .error-actions, .thankyou-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .success-icon {
    width: 72px;
    height: 72px;
    font-size: 42px;
    margin-bottom: 20px;
  }

  .thankyou-info {
    padding: 16px;
    border-radius: 10px;
    margin: 20px 0;
  }

  .thankyou-info p {
    font-size: 13px;
    margin-bottom: 7px;
  }

  .map-container {
    margin-top: 24px;
    border-radius: 14px;
  }

  .map-container iframe {
    height: 280px;
  }
}
