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

:root {
  --primary: #6366f1;
  --secondary: #ec4899;
  --accent: #f59e0b;
  --dark: #0f172a;
  --gray: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

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

h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.8rem;
}
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;
}

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

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

.btn-primary:hover {
  background: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

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

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

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  transition: all 0.3s ease;
}

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

.btn-primary-large {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background: var(--primary);
  color: var(--white);
  transition: all 0.3s ease;
}

.btn-primary-large:hover {
  background: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 18px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.privacy-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

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

.privacy-actions button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.header {
  background: var(--white);
  padding: 15px 0;
  border-bottom: 1px solid var(--light);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  position: relative;
}

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

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

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

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

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

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

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--white);
  top: -100px;
  left: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  top: 50%;
  right: -50px;
  animation-delay: -5s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--white);
  bottom: -50px;
  left: 30%;
  animation-delay: -10s;
}

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

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

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.hero-mega-content h1 {
  font-size: 3.2rem;
  margin-bottom: 25px;
  line-height: 1.1;
  text-align: left;
}

.hero-mega-content p {
  font-size: 1.15rem;
  margin-bottom: 35px;
  opacity: 0.95;
  line-height: 1.7;
  text-align: left;
}

.hero-stats-inline {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

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

.stat-inline strong {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.stat-inline span {
  font-size: 13px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
}

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

.floating-card {
  position: absolute;
  background: var(--white);
  color: var(--dark);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 3s infinite ease-in-out;
}

.card-1 {
  top: 10%;
  left: -30px;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: -30px;
  animation-delay: -1s;
}

.card-3 {
  bottom: 10%;
  left: -20px;
  animation-delay: -2s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.card-icon {
  font-size: 1.5rem;
}

.card-text {
  font-weight: 600;
  font-size: 14px;
}

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

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

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

.section-header p {
  color: var(--gray);
  font-size: 1rem;
}

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

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.service-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.2;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

.process {
  padding: 70px 0;
}

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

.step {
  text-align: center;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 15px;
}

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

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

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

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

.showcase-text h2 {
  margin-bottom: 20px;
}

.showcase-text p {
  color: var(--gray);
  margin-bottom: 20px;
}

.showcase-image img {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.stats {
  padding: 70px 0;
  background: var(--dark);
  color: var(--white);
}

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

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 14px;
  opacity: 0.9;
}

.cta {
  padding: 70px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.05rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.impact {
  padding: 70px 0;
  background: var(--dark);
  color: var(--white);
}

.impact-header {
  text-align: center;
  margin-bottom: 50px;
}

.impact-header p {
  color: rgba(255, 255, 255, 0.8);
}

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

.impact-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.impact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.impact-metric {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 15px;
}

.impact-card h3 {
  margin-bottom: 15px;
}

.impact-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
}

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

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

.methodology-image img {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.philosophy-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.philosophy-item p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

.final-cta {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
}

.final-cta-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}

.cta-text h2 {
  margin-bottom: 15px;
}

.cta-text p {
  font-size: 1.05rem;
  opacity: 0.95;
  line-height: 1.7;
}

.cta-action {
  text-align: center;
}

.cta-note {
  margin-top: 15px;
  font-size: 13px;
  opacity: 0.85;
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 25px 0;
  font-size: 13px;
}

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

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

.footer-links a {
  color: var(--white);
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 1.05rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

.team-intro {
  padding: 70px 0;
}

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

.intro-content h2 {
  margin-bottom: 25px;
}

.intro-content p {
  color: var(--gray);
  margin-bottom: 20px;
}

.team-members {
  padding: 70px 0;
  background: var(--light);
}

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

.member-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-icon i {
  font-size: 2rem;
  color: var(--white);
}

.member-emoji {
  font-size: 2.5rem;
}

.member-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.member-card p {
  color: var(--gray);
  font-size: 14px;
}

.team-values {
  padding: 70px 0;
}

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

.value-item {
  text-align: center;
}

.value-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.value-emoji {
  font-size: 3rem;
  margin-bottom: 20px;
}

.value-item h3 {
  margin-bottom: 10px;
}

.value-item p {
  color: var(--gray);
  font-size: 14px;
}

.interaction-intro {
  padding: 70px 0;
}

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

.intro-text h2 {
  margin-bottom: 20px;
}

.intro-text p {
  color: var(--gray);
  margin-bottom: 20px;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: start;
  background: var(--light);
  padding: 20px;
  border-radius: 10px;
}

.feature-item i {
  font-size: 1.8rem;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-emoji {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-item h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.feature-item p {
  color: var(--gray);
  font-size: 14px;
}

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

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

.principle-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
}

.principle-number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 15px;
}

.principle-card h3 {
  margin-bottom: 12px;
}

.principle-card p {
  color: var(--gray);
  font-size: 14px;
}

.products {
  padding: 70px 0;
}

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

.product-card {
  background: var(--white);
  border: 2px solid var(--light);
  border-radius: 12px;
  padding: 35px;
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card.featured {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.product-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-header {
  margin-bottom: 20px;
}

.product-header h3 {
  margin-bottom: 10px;
}

.product-price {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.product-description {
  color: var(--gray);
  margin-bottom: 25px;
  font-size: 14px;
}

.product-features {
  list-style: none;
  margin-bottom: 30px;
}

.product-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features i {
  color: var(--primary);
  font-size: 14px;
}

.check-emoji {
  font-size: 16px;
}

.process-detail {
  padding: 70px 0;
  background: var(--light);
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.timeline-emoji {
  font-size: 1.8rem;
}

.timeline-content h3 {
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--gray);
  font-size: 14px;
}

.contact-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  padding: 60px 0;
}

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

.contact-hero-content h1 {
  margin-bottom: 15px;
}

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

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--gray);
  margin-bottom: 35px;
}

.contact-details {
  margin-bottom: 35px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.3rem;
  color: var(--white);
}

.contact-emoji {
  font-size: 1.5rem;
}

.contact-text h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.contact-text p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.contact-hours {
  background: var(--light);
  padding: 20px;
  border-radius: 10px;
}

.contact-hours h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact-hours p {
  color: var(--gray);
  font-size: 14px;
}

.contact-form-wrapper {
  background: var(--light);
  padding: 40px;
  border-radius: 12px;
}

.contact-form h2 {
  margin-bottom: 25px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: 'Space Grotesk', 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);
}

.checkbox-group {
  margin-top: 15px;
}

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

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

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

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

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

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

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

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

.thankyou-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-icon i {
  font-size: 3rem;
  color: var(--white);
}

.thankyou-emoji {
  font-size: 3.5rem;
}

.thankyou-content h1 {
  margin-bottom: 20px;
}

.thankyou-content p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.thankyou-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.thankyou-extra p {
  color: var(--gray);
  font-size: 14px;
}

.error-code {
  font-family: 'Syne', sans-serif;
  font-size: 6rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 20px;
}

.error-content h1 {
  margin-bottom: 20px;
}

.error-content p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.error-suggestions {
  background: var(--light);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.error-suggestions h3 {
  margin-bottom: 15px;
}

.error-suggestions ul {
  list-style: none;
}

.error-suggestions li {
  padding: 8px 0;
}

.error-suggestions a {
  color: var(--primary);
  font-size: 14px;
}

.error-suggestions a:hover {
  text-decoration: underline;
}

.policy-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}

.policy-hero h1 {
  margin-bottom: 10px;
}

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

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

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

.policy-text h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--dark);
}

.policy-text h2:first-child {
  margin-top: 0;
}

.policy-text p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 15px;
  }

  .menu-toggle {
    display: flex;
  }

  .logo {
    font-size: 0.8rem;
  }

  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero {
    padding: 50px 0;
  }

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

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

  .hero-mega {
    padding: 60px 0 50px;
  }

  .hero-mega-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-mega-content h1 {
    font-size: 2rem;
    text-align: center;
  }

  .hero-mega-content p {
    text-align: center;
  }

  .hero-badge {
    display: block;
    text-align: center;
  }

  .hero-stats-inline {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .floating-card {
    position: static;
    margin: 10px auto;
    max-width: 250px;
  }

  .services,
  .process,
  .showcase,
  .stats,
  .cta,
  .team-intro,
  .team-members,
  .team-values,
  .interaction-intro,
  .principles,
  .products,
  .process-detail,
  .contact-main,
  .map-section,
  .policy-content,
  .impact,
  .methodology,
  .final-cta {
    padding: 50px 0;
  }

  .showcase-content,
  .intro-grid,
  .contact-grid,
  .methodology-content,
  .final-cta-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-grid,
  .process-steps,
  .members-grid,
  .values-grid,
  .principles-grid,
  .products-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .privacy-actions {
    justify-content: center;
  }

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

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

  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .btn-primary-large {
    width: 100%;
    text-align: center;
  }

  .timeline-item {
    gap: 15px;
  }

  .timeline-icon {
    width: 50px;
    height: 50px;
  }

  .timeline-icon i {
    font-size: 1.2rem;
  }

  .timeline-emoji {
    font-size: 1.5rem;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

  .cta-text,
  .cta-action {
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  body {
    font-size: 13px;
  }

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

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

  .stat-inline strong {
    font-size: 1.5rem;
  }

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

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

  .service-card,
  .member-card,
  .principle-card,
  .product-card,
  .impact-card {
    padding: 20px;
  }

  .contact-form-wrapper {
    padding: 20px;
  }

  .error-code {
    font-size: 3rem;
  }

  .impact-metric {
    font-size: 1.5rem;
  }

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

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

  h1 {
    font-size: 1.3rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  body {
    font-size: 12px;
  }

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

  .btn-primary-large {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-mega {
    padding: 40px 0 30px;
  }

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

  .hero-badge {
    font-size: 11px;
    padding: 6px 15px;
  }

  .stat-inline strong {
    font-size: 1.3rem;
  }

  .stat-inline span {
    font-size: 11px;
  }

  .services,
  .process,
  .showcase,
  .stats,
  .cta,
  .team-intro,
  .team-members,
  .team-values,
  .interaction-intro,
  .principles,
  .products,
  .process-detail,
  .contact-main,
  .map-section,
  .policy-content,
  .impact,
  .methodology,
  .final-cta {
    padding: 40px 0;
  }

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

  .impact-metric {
    font-size: 0.8rem;
  }

  .floating-card {
    padding: 12px 15px;
    font-size: 12px;
  }

  .card-icon {
    font-size: 1.2rem;
  }

  .card-text {
    font-size: 12px;
  }
}
