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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background: #ffffff;
  font-size: 16px;
}

a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1e40af;
}

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.3s ease;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e293b;
  color: #ffffff;
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
  text-align: center;
  line-height: 1.6;
}

.cookie-content a {
  color: #60a5fa;
  text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}

.btn-accept {
  background: #2563eb;
  color: #ffffff;
}

.btn-accept:hover {
  background: #1e40af;
}

.btn-reject {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.main-nav {
  background: #ffffff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-size: 24px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.5px;
}

.logo:hover {
  color: #2563eb;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 8px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1e293b;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-menu a {
  color: #475569;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #2563eb;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.4s ease;
}

.sticky-cta.show {
  opacity: 1;
  transform: translateY(0);
}

.sticky-btn {
  background: #2563eb;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  display: block;
}

.sticky-btn:hover {
  background: #1e40af;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 80px 20px;
}

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

.hero-title {
  font-size: 56px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ffffff;
  color: #667eea;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: #1e293b;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  border: 2px solid #1e293b;
}

.btn-secondary:hover {
  background: #1e293b;
  color: #ffffff;
  transform: translateY(-3px);
}

.story-intro {
  padding: 100px 20px;
  background: #f8fafc;
}

.story-text {
  font-size: 21px;
  line-height: 1.8;
  margin-bottom: 28px;
  color: #334155;
}

.story-text-bold {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.6;
  margin-top: 40px;
}

.problem-section {
  padding: 100px 20px;
  background: #ffffff;
}

.split-layout {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.split-text {
  flex: 1;
  min-width: 300px;
}

.split-text h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.split-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #475569;
}

.highlight-text {
  font-size: 20px;
  font-weight: 700;
  color: #dc2626;
  margin-top: 32px;
}

.split-image {
  flex: 1;
  min-width: 300px;
}

.split-image img {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.insight-section {
  padding: 100px 20px;
  background: #0f172a;
  color: #ffffff;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.insight-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 60px;
}

.insight-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.insight-number {
  font-size: 48px;
  font-weight: 900;
  color: #60a5fa;
  min-width: 80px;
  line-height: 1;
}

.insight-item h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.insight-item p {
  font-size: 18px;
  line-height: 1.7;
  color: #cbd5e1;
}

.transformation-section {
  padding: 100px 20px;
  background: #fef3c7;
}

.center-title {
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: #1e293b;
  letter-spacing: -0.5px;
}

.center-subtitle {
  font-size: 20px;
  text-align: center;
  margin-bottom: 60px;
  color: #475569;
}

.testimonial-flow {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.7;
  color: #1e293b;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 16px;
  font-weight: 700;
  color: #475569;
}

.method-section {
  padding: 100px 20px;
  background: #ffffff;
}

.method-intro {
  font-size: 22px;
  line-height: 1.8;
  margin-bottom: 60px;
  color: #475569;
  text-align: center;
}

.method-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 60px;
}

.method-step {
  border-left: 4px solid #2563eb;
  padding-left: 32px;
}

.method-step h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e293b;
}

.method-step p {
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
}

.urgency-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

.urgency-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.urgency-box h2 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.urgency-box p {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
}

.urgency-highlight {
  font-size: 24px;
  font-weight: 700;
  color: #fef3c7;
  margin-top: 32px;
}

.reveal-section {
  padding: 100px 20px;
  background: #f8fafc;
}

.reveal-title {
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: #1e293b;
  letter-spacing: -0.5px;
}

.reveal-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.reveal-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.reveal-icon {
  font-size: 32px;
  color: #10b981;
  min-width: 40px;
  font-weight: 700;
}

.reveal-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1e293b;
}

.reveal-item p {
  font-size: 17px;
  line-height: 1.7;
  color: #475569;
}

.services-preview {
  padding: 100px 20px;
  background: #ffffff;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  flex: 1;
  min-width: 320px;
  background: #f8fafc;
  padding: 40px 32px;
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #2563eb;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
  transform: translateY(-4px);
}

.service-card.featured {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff;
  border-color: #1e40af;
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #fbbf24;
  color: #1e293b;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}

.service-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e293b;
}

.service-card.featured h3 {
  color: #ffffff;
}

.service-duration {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 16px;
}

.service-card.featured .service-duration {
  color: rgba(255, 255, 255, 0.9);
}

.service-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #475569;
  flex-grow: 1;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.95);
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  font-size: 15px;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #475569;
  line-height: 1.5;
}

.service-card.featured .service-features li {
  color: rgba(255, 255, 255, 0.95);
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.service-card.featured .service-features li:before {
  color: #fbbf24;
}

.service-price {
  font-size: 32px;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 20px;
}

.service-card.featured .service-price {
  color: #ffffff;
}

.btn-service {
  background: #2563eb;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  width: 100%;
}

.btn-service:hover {
  background: #1e40af;
  transform: translateY(-2px);
}

.service-card.featured .btn-service {
  background: #ffffff;
  color: #2563eb;
}

.service-card.featured .btn-service:hover {
  background: #f8fafc;
}

.guarantee-section {
  padding: 80px 20px;
  background: #ecfdf5;
  text-align: center;
}

.guarantee-section h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #1e293b;
}

.guarantee-section p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #475569;
}

.form-section {
  padding: 100px 20px;
  background: #ffffff;
}

.form-title {
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  color: #1e293b;
  letter-spacing: -0.5px;
}

.form-subtitle {
  font-size: 20px;
  text-align: center;
  margin-bottom: 60px;
  color: #475569;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.btn-submit {
  background: #2563eb;
  color: #ffffff;
  padding: 16px 48px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  width: 100%;
  margin-top: 16px;
}

.btn-submit:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.final-push {
  padding: 100px 20px;
  background: #f8fafc;
  text-align: center;
}

.final-push h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #1e293b;
}

.final-push p {
  font-size: 22px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #475569;
}

.final-cta-text {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 32px;
}

.btn-final {
  background: #2563eb;
  color: #ffffff;
  padding: 20px 56px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.btn-final:hover {
  background: #1e40af;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 60px 20px 30px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  color: #94a3b8;
}

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

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

.footer-col ul li a {
  color: #94a3b8;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #1e293b;
}

.footer-bottom p {
  font-size: 14px;
  color: #64748b;
}

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

.page-hero h1 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.page-subtitle {
  font-size: 22px;
  opacity: 0.95;
  line-height: 1.6;
}

.services-detail {
  padding: 80px 20px;
  background: #f8fafc;
}

.service-detail-card {
  background: #ffffff;
  padding: 48px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.featured-service {
  border: 3px solid #2563eb;
  position: relative;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid #e2e8f0;
}

.service-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.5px;
}

.service-price-large {
  font-size: 42px;
  font-weight: 900;
  color: #2563eb;
}

.service-body {
  margin-top: 24px;
}

.service-description {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #475569;
}

.service-body h3 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1e293b;
}

.curriculum-list {
  list-style: none;
  margin-bottom: 24px;
}

.curriculum-list li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  font-size: 17px;
  line-height: 1.6;
  color: #475569;
}

.curriculum-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
  font-size: 20px;
}

.service-body ul {
  margin-left: 32px;
  margin-bottom: 32px;
}

.service-body ul li {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.6;
  color: #475569;
}

.cta-section {
  padding: 80px 20px;
  background: #fef3c7;
  text-align: center;
}

.cta-section h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1e293b;
}

.cta-section p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #475569;
}

.about-content {
  padding: 80px 20px;
  background: #ffffff;
}

.about-section {
  margin-bottom: 80px;
}

.about-section h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #1e293b;
  letter-spacing: -0.5px;
}

.about-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #475569;
}

.differences-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.difference-item {
  flex: 1;
  min-width: 280px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.difference-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e293b;
}

.difference-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

.values-list {
  list-style: none;
  margin-top: 24px;
}

.values-list li {
  padding: 16px 0;
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
}

.values-list li strong {
  color: #1e293b;
  font-weight: 700;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  background: #f8fafc;
  border-radius: 12px;
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: #2563eb;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 16px;
  color: #64748b;
  font-weight: 600;
}

.cta-about {
  text-align: center;
  margin-top: 80px;
  padding: 60px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  color: #ffffff;
}

.cta-about h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff;
}

.cta-about p {
  font-size: 20px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
}

.contact-section {
  padding: 80px 20px;
  background: #ffffff;
}

.contact-grid {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
}

.contact-form-container h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1e293b;
}

.contact-form-container p {
  font-size: 17px;
  margin-bottom: 32px;
  color: #64748b;
}

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

.info-block h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e293b;
}

.info-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 8px;
}

.info-block a {
  color: #2563eb;
  font-weight: 600;
}

.small-text {
  font-size: 14px;
  color: #64748b;
  margin-top: 8px;
}

.thanks-section {
  padding: 120px 20px;
  background: #f8fafc;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: #10b981;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  font-weight: 700;
}

.thanks-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1e293b;
}

.thanks-message {
  font-size: 22px;
  color: #64748b;
  margin-bottom: 40px;
}

.thanks-details {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  text-align: left;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.thanks-details p {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 16px;
}

.thanks-details h3 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1e293b;
}

.next-steps {
  margin-left: 24px;
  margin-top: 20px;
}

.next-steps li {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 12px;
  padding-left: 8px;
}

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

.thanks-extra {
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
}

.thanks-extra p {
  font-size: 14px;
  color: #64748b;
}

.legal-page {
  padding: 80px 20px;
  background: #ffffff;
}

.legal-page h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1e293b;
  letter-spacing: -0.5px;
}

.last-updated {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 48px;
  font-style: italic;
}

.legal-content {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
}

.legal-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 20px;
  color: #1e293b;
}

.legal-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1e293b;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 32px;
  margin-bottom: 24px;
}

.legal-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.legal-content strong {
  font-weight: 700;
  color: #1e293b;
}

.legal-content a {
  color: #2563eb;
  font-weight: 600;
}

.cookie-table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
}

.cookie-table thead {
  background: #f8fafc;
}

.cookie-table th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 700;
  color: #1e293b;
  border-bottom: 2px solid #e2e8f0;
}

.cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: none;
    gap: 16px;
  }

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

  .hero-title {
    font-size: 38px;
  }

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

  .split-layout {
    flex-direction: column;
  }

  .section-title,
  .center-title,
  .reveal-title {
    font-size: 36px;
  }

  .story-text {
    font-size: 18px;
  }

  .split-text h2 {
    font-size: 32px;
  }

  .services-grid {
    flex-direction: column;
  }

  .service-card {
    min-width: 100%;
  }

  .form-title {
    font-size: 36px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .service-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-grid {
    flex-direction: column;
  }

  .stats-grid {
    flex-direction: column;
  }

  .sticky-cta {
    bottom: 10px;
    right: 10px;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .section-title,
  .center-title,
  .reveal-title {
    font-size: 28px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-final {
    padding: 14px 28px;
    font-size: 16px;
  }

  .thanks-content h1 {
    font-size: 32px;
  }

  .legal-page h1 {
    font-size: 32px;
  }

  .cookie-table {
    font-size: 14px;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 8px;
  }
}