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

:root {
  --primary-color: #0066cc;
  --secondary-color: #00b8d4;
  --accent-color: #ff6b35;
  --dark-blue: #003d7a;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f5f9fc;
  --bg-white: #ffffff;
  --border-color: #e0e8f0;
  --success-color: #00c853;
  --error-color: #ff1744;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  color: var(--text-dark);
  font-size: 14px;
}

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

header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 12px 0;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

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

.logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--bg-white);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bg-white);
  font-size: 22px;
  cursor: pointer;
  padding: 5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  width: 100%;
}

.nav-menu li a {
  color: var(--bg-white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}

.nav-menu li a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-mega {
  position: relative;
  min-height: 600px;
  background: linear-gradient(
    135deg,
    var(--dark-blue) 0%,
    var(--primary-color) 50%,
    var(--secondary-color) 100%
  );
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--bg-white);
  top: -100px;
  right: -100px;
  animation: float 20s infinite ease-in-out;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  bottom: -80px;
  left: 10%;
  animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--secondary-color);
  top: 50%;
  left: -50px;
  animation: float 18s infinite ease-in-out;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text {
  color: var(--bg-white);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 800;
  color: var(--bg-white);
}

.hero-text > p {
  font-size: 17px;
  margin-bottom: 24px;
  opacity: 0.95;
  color: var(--bg-white);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--bg-white);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--bg-white);
  transition: all 0.3s;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--bg-white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-btn {
  display: inline-block;
  background: var(--accent-color);
  color: var(--bg-white);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  display: inline-block;
  background: var(--bg-white);
  color: var(--primary-color);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s;
  border: 2px solid var(--primary-color);
  cursor: pointer;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--bg-light);
}

section {
  padding: 40px 0;
}

h2 {
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 700;
}

h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 600;
}

p {
  margin-bottom: 12px;
  color: var(--text-light);
  font-size: 14px;
}

.features {
  background: var(--bg-light);
}

.features h2 {
  text-align: center;
  margin-bottom: 30px;
}

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

.feature-card {
  background: var(--bg-white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.feature-card h3 {
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 19px;
}

.btn-link {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  margin-top: 10px;
  transition: color 0.3s;
}

.btn-link:hover {
  color: var(--secondary-color);
}

.benefits {
  text-align: center;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.benefit-item {
  padding: 20px;
}

.benefit-item h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

.destinations {
  background: var(--bg-light);
  text-align: center;
}

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

.dest-card {
  background: var(--bg-white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dest-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

.how-it-works {
  text-align: center;
}

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

.step {
  padding: 20px;
}

.step-num {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--bg-white);
  border-radius: 50%;
  line-height: 40px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonials {
  background: var(--bg-light);
  text-align: center;
}

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

.testimonial {
  background: var(--bg-white);
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--accent-color);
}

.testimonial p {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.author-location {
  font-size: 12px;
  color: var(--text-light);
}

.tips {
  text-align: center;
}

.tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.tip-item {
  padding: 20px;
  background: var(--bg-light);
  border-radius: 8px;
}

.tip-item h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

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

.section-tag {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-header h2 {
  margin-bottom: 10px;
}

.section-header p {
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.about-section {
  padding: 60px 0;
  background: var(--bg-white);
}

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

.about-content h2 {
  margin-bottom: 16px;
}

.about-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-features {
  margin: 24px 0;
}

.about-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.check-icon {
  color: var(--success-color);
  font-weight: 700;
  font-size: 18px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.stats-section {
  background: var(--primary-color);
  padding: 50px 0;
}

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

.stat-box {
  text-align: center;
  color: var(--bg-white);
}

.stat-big {
  display: block;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-text {
  display: block;
  font-size: 14px;
  opacity: 0.9;
}

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

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

.service-item {
  background: var(--bg-white);
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-item h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.faq-home {
  padding: 60px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.final-cta {
  background: linear-gradient(135deg, var(--dark-blue), var(--primary-color));
  padding: 70px 0;
  text-align: center;
}

.cta-content h2 {
  color: var(--bg-white);
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--bg-white);
  font-size: 16px;
  margin-bottom: 28px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 40px 0 20px;
}

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

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--bg-white);
}

.footer-col p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

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

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

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--bg-white);
}

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

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--bg-white);
  padding: 40px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.page-header p {
  color: var(--bg-white);
  opacity: 0.95;
}

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

.calculator-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.budget-form {
  background: var(--bg-white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
}

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

.result-section {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 8px;
}

.result-section h2 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.result-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.result-total {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 10px;
}

.tips-calculator {
  background: var(--bg-light);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.tip-box {
  background: var(--bg-white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tip-box h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

.products-section {
  text-align: center;
  padding: 40px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  background: var(--bg-white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

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

.product-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  margin: 12px 0;
}

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

.product-card ul li {
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
}

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

.checklist-intro {
  text-align: center;
  margin-bottom: 30px;
}

.checklist-category {
  background: var(--bg-white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.checklist-category h2 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.checklist-items {
  display: grid;
  gap: 10px;
}

.checklist-item {
  display: flex;
  align-items: center;
  padding: 10px;
  background: var(--bg-light);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.checklist-item:hover {
  background: #e0e7ff;
}

.checklist-checkbox {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checklist-item span {
  font-size: 14px;
  color: var(--text-dark);
}

.progress-section {
  margin-top: 30px;
  text-align: center;
}

.progress-section h3 {
  margin-bottom: 12px;
}

.progress-bar {
  width: 100%;
  height: 24px;
  background: var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  width: 0%;
  transition: width 0.5s;
}

#progress-text {
  font-weight: 600;
  color: var(--primary-color);
}

.tips-checklist {
  background: var(--bg-light);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-info {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 8px;
}

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

.info-item h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.info-item p {
  font-size: 13px;
  color: var(--text-dark);
}

.contact-form-wrapper {
  background: var(--bg-white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.checkbox-group {
  margin: 16px 0;
}

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

.checkbox-label input[type='checkbox'] {
  margin-right: 8px;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.checkbox-label span {
  color: var(--text-light);
}

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

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

.map-section h2 {
  text-align: center;
  margin-bottom: 24px;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

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

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

.why-contact h2 {
  text-align: center;
  margin-bottom: 24px;
}

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

.reason-item {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.reason-item h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

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

.faq-section h2 {
  text-align: center;
  margin-bottom: 24px;
}

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

.faq-item {
  background: var(--bg-white);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.faq-item p {
  font-size: 13px;
}

.thankyou-page,
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 20px;
}

.thankyou-content,
.error-content {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 600px;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background: var(--success-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 20px;
}

.thankyou-content h1 {
  font-size: 26px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.thankyou-content p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.thankyou-info {
  background: var(--bg-light);
  padding: 16px;
  border-radius: 8px;
  margin: 20px 0;
}

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

.thankyou-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.error-code {
  font-size: 72px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
}

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

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

.error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.policy-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--bg-white);
  padding: 40px 0;
  text-align: center;
}

.policy-header h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--bg-white);
}

.policy-header p {
  color: var(--bg-white);
  opacity: 0.9;
  font-size: 13px;
}

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

.policy-text {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.policy-text h2 {
  font-size: 22px;
  color: var(--primary-color);
  margin-top: 24px;
  margin-bottom: 12px;
}

.policy-text h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-top: 16px;
  margin-bottom: 10px;
}

.policy-text h4 {
  font-size: 16px;
  color: var(--text-dark);
  margin-top: 12px;
  margin-bottom: 8px;
}

.policy-text p {
  margin-bottom: 12px;
  line-height: 1.7;
  color: var(--text-dark);
}

.policy-text ul,
.policy-text ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.policy-text li {
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 16px;
  z-index: 1000;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
  display: none;
}

.privacy-popup.show {
  display: block;
}

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

.privacy-content p {
  margin: 0;
  font-size: 13px;
  color: var(--bg-white);
}

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

#accept-privacy {
  background: var(--accent-color);
  color: var(--bg-white);
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.3s;
}

#accept-privacy:hover {
  background: #d97706;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

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

  .services-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-color);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

  .nav-menu.active {
    max-height: 300px;
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu li a {
    display: block;
    padding: 12px 15px;
  }

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

  .hero p {
    font-size: 14px;
  }

  h2 {
    font-size: 22px;
  }

  .feature-grid,
  .benefits-list,
  .dest-grid,
  .steps,
  .testimonial-grid,
  .tips-list,
  .tips-grid,
  .products-grid,
  .contact-grid,
  .reasons-grid,
  .stats-grid,
  .services-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-mega {
    min-height: auto;
    padding: 50px 0 40px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-stats {
    gap: 20px;
  }

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

  .cta-content h2 {
    font-size: 26px;
  }

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

  .thankyou-content,
  .error-content {
    padding: 30px 20px;
  }

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

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

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

  .hero-text h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 16px;
  }

  .cta-btn,
  .btn-secondary,
  .btn-outline {
    padding: 8px 18px;
    font-size: 13px;
  }

  .feature-card,
  .budget-form,
  .contact-form-wrapper,
  .service-item {
    padding: 18px;
  }

  section {
    padding: 30px 0;
  }

  .policy-text {
    padding: 20px;
  }

  .hero-stats {
    gap: 16px;
  }

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

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

  .stat-big {
    font-size: 32px;
  }

  .cta-content h2 {
    font-size: 22px;
  }
}

@media (max-width: 360px) {
  .hero-text h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 18px;
  }

  .container {
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 320px) {
  .container {
    padding: 0 12px;
  }
}
