/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: linear-gradient(135deg, #fef9e7 0%, #fef5e7 50%, #fff3e0 100%);
  overflow-x: hidden;
}

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

/* PLAYFUL DYNAMIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1e3a5f;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  animation: bounceIn 0.8s ease-out;
  background: linear-gradient(135deg, #1e3a5f, #4a7ba7, #e8b86d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #4a7ba7;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #e8b86d, #ffd700);
  border-radius: 2px;
  animation: slideRight 0.5s ease-out;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1e3a5f;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

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

ul {
  list-style: none;
}

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #ff6b6b, #ff8c42);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  color: white;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(255, 107, 107, 0.6);
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #1e3a5f 0%, #4a7ba7 100%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b6b, #ff8c42);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(180deg) scale(1.1);
  background: linear-gradient(135deg, #ff8c42, #ff6b6b);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  animation: slideInRight 0.5s ease-out backwards;
}

.mobile-nav a:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav a:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav a:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav a:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav a:nth-child(5) { animation-delay: 0.5s; }
.mobile-nav a:nth-child(6) { animation-delay: 0.6s; }

.mobile-nav a:hover {
  background: linear-gradient(135deg, #e8b86d, #ffd700);
  color: #1e3a5f;
  transform: translateX(-10px) scale(1.1);
  box-shadow: 0 8px 20px rgba(232, 184, 109, 0.4);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
  padding: 20px 0;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.logo img {
  height: 50px;
  filter: drop-shadow(0 4px 8px rgba(232, 184, 109, 0.4));
  transition: all 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1) rotate(5deg);
}

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

.nav-menu li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: white;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #e8b86d, #ffd700);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-menu li a:hover {
  background: rgba(232, 184, 109, 0.2);
  color: #e8b86d;
  transform: translateY(-3px);
}

.nav-menu li a:hover::before {
  width: 80%;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #4a7ba7 0%, #1e3a5f 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 184, 109, 0.3), transparent);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.2), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff, #e8b86d, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  line-height: 1.8;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(232, 184, 109, 0.3);
  transition: all 0.3s ease;
  animation: popIn 0.5s ease-out backwards;
}

.trust-badges span:nth-child(1) { animation-delay: 0.2s; }
.trust-badges span:nth-child(2) { animation-delay: 0.3s; }
.trust-badges span:nth-child(3) { animation-delay: 0.4s; }

.trust-badges span:hover {
  background: rgba(232, 184, 109, 0.3);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(232, 184, 109, 0.4);
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b6b, #ff8c42);
  color: white;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, #4a7ba7, #1e3a5f);
  color: white;
  box-shadow: 0 8px 20px rgba(74, 123, 167, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(74, 123, 167, 0.6);
}

.btn-outline {
  background: transparent;
  color: #1e3a5f;
  border: 3px solid #e8b86d;
  box-shadow: 0 4px 15px rgba(232, 184, 109, 0.2);
}

.btn-outline:hover {
  background: linear-gradient(135deg, #e8b86d, #ffd700);
  color: white;
  border-color: transparent;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(232, 184, 109, 0.5);
}

/* SECTIONS */
section {
  padding: 80px 0;
  position: relative;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* SERVICES OVERVIEW */
.services-overview {
  background: linear-gradient(135deg, #fef9e7 0%, #fff8e1 100%);
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #e8b86d, #ffd700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(30, 58, 95, 0.2);
  border-color: #e8b86d;
}

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

.service-card h3 {
  color: #1e3a5f;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  color: #4a5568;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #ff6b6b;
  margin-top: 20px;
}

/* PROCESS STEPS */
.process-steps {
  background: linear-gradient(135deg, #4a7ba7 0%, #1e3a5f 100%);
  color: white;
}

.process-steps h2 {
  text-align: center;
  color: white;
  margin-bottom: 56px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(232, 184, 109, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: #e8b86d;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b6b, #ff8c42);
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
  animation: bounce 2s infinite;
}

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

.step h3 {
  color: #e8b86d;
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* BENEFITS */
.benefits {
  background: linear-gradient(135deg, #fff8e1 0%, #fef9e7 100%);
}

.benefits h2 {
  text-align: center;
  margin-bottom: 56px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.benefit-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #e8b86d;
}

.benefit-card:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(232, 184, 109, 0.3);
  border-left-width: 8px;
}

.benefit-card h3 {
  color: #1e3a5f;
  margin-bottom: 16px;
  font-size: 22px;
}

.benefit-card p {
  color: #4a5568;
  line-height: 1.7;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
  padding: 80px 0;
}

.testimonials h2 {
  text-align: center;
  color: white;
  margin-bottom: 56px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 550px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  color: rgba(232, 184, 109, 0.2);
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(232, 184, 109, 0.3);
}

.testimonial-card p {
  color: #2d3748;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 2px solid #e8b86d;
}

.testimonial-author strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #1e3a5f;
  font-size: 18px;
}

.testimonial-author span {
  color: #4a7ba7;
  font-size: 14px;
}

/* STATS */
.stats {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8c42 100%);
  padding: 80px 0;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.stat {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: white;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: countUp 2s ease-out;
}

@keyframes countUp {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA BANNER */
.cta-banner, .cta-section, .cta-consultation, .cta-contact, .cta-services {
  background: linear-gradient(135deg, #4a7ba7 0%, #1e3a5f 100%);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 184, 109, 0.3), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* LEGAL FORMS */
.legal-forms {
  background: linear-gradient(135deg, #fef9e7 0%, #fff8e1 100%);
}

.legal-forms h2 {
  text-align: center;
  margin-bottom: 56px;
}

.legal-forms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.legal-form-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
  border-top: 5px solid #e8b86d;
}

.legal-form-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(232, 184, 109, 0.3);
  border-top-width: 8px;
}

.legal-form-card h3 {
  color: #1e3a5f;
  margin-bottom: 20px;
  font-size: 24px;
}

.legal-form-card p {
  color: #2d3748;
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-form-card ul {
  list-style: none;
  margin: 16px 0;
}

.legal-form-card ul li {
  padding: 8px 0;
  color: #4a5568;
  padding-left: 24px;
  position: relative;
}

.legal-form-card ul li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #e8b86d;
  font-size: 16px;
}

/* FOUNDING PROCESS */
.founding-process {
  background: linear-gradient(135deg, #fff8e1 0%, #fef9e7 100%);
}

.founding-process h2 {
  text-align: center;
  margin-bottom: 56px;
}

.process-detailed {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.process-step {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #ff6b6b;
}

.process-step:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
  border-left-width: 8px;
}

.process-step h3 {
  color: #1e3a5f;
  margin-bottom: 16px;
  font-size: 22px;
}

.process-step ul {
  list-style: none;
  margin-top: 16px;
}

.process-step ul li {
  padding: 8px 0;
  color: #4a5568;
  padding-left: 24px;
  position: relative;
}

.process-step ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ecdc4;
  font-weight: bold;
}

/* COSTS */
.costs {
  background: linear-gradient(135deg, #4a7ba7 0%, #1e3a5f 100%);
  text-align: center;
  padding: 80px 0;
}

.costs h2 {
  color: white;
  margin-bottom: 24px;
}

.costs p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.costs-table {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.costs-table p {
  color: #2d3748;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 16px;
  background: linear-gradient(135deg, #fef9e7 0%, #fff8e1 100%);
  border-radius: 10px;
  border-left: 4px solid #e8b86d;
}

/* PACKAGES */
.packages {
  background: linear-gradient(135deg, #fef9e7 0%, #fff8e1 100%);
}

.packages h2 {
  text-align: center;
  margin-bottom: 56px;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.package-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  max-width: 380px;
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.package-card.recommended {
  border-color: #ff6b6b;
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 107, 107, 0.3);
}

.package-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(30, 58, 95, 0.2);
  border-color: #e8b86d;
}

.package-card.recommended:hover {
  transform: translateY(-10px) scale(1.07);
}

.package-card .badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b6b, #ff8c42);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.package-card h3 {
  color: #1e3a5f;
  font-size: 26px;
  margin-bottom: 12px;
}

.package-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #ff6b6b;
  margin-bottom: 12px;
}

.package-card > p {
  color: #4a5568;
  font-size: 14px;
  margin-bottom: 24px;
}

.package-card ul {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.package-card ul li {
  padding: 12px 0;
  color: #2d3748;
  font-size: 15px;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid rgba(232, 184, 109, 0.2);
}

.package-card ul li:last-child {
  border-bottom: none;
}

.package-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ecdc4;
  font-weight: bold;
  font-size: 18px;
}

/* SERVICES DETAILED */
.services-detailed {
  background: linear-gradient(135deg, #fef9e7 0%, #fff8e1 100%);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-detail {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #e8b86d;
}

.service-detail:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 50px rgba(232, 184, 109, 0.3);
  border-left-width: 8px;
}

.service-detail h2 {
  color: #1e3a5f;
  margin-bottom: 20px;
  font-size: 28px;
}

.service-detail p {
  color: #4a5568;
  margin-bottom: 24px;
  line-height: 1.8;
}

.service-detail .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #ff6b6b;
  margin-bottom: 24px;
  display: block;
}

/* COMPANY STORY */
.company-story {
  background: linear-gradient(135deg, #fff8e1 0%, #fef9e7 100%);
}

.company-story h2 {
  margin-bottom: 24px;
}

.company-story > .container > p {
  font-size: 18px;
  line-height: 1.8;
  color: #2d3748;
  max-width: 900px;
  margin: 0 auto 56px;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.milestone {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  max-width: 500px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
  border-top: 5px solid #ff6b6b;
}

.milestone:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 107, 107, 0.3);
}

.milestone h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  color: #e8b86d;
  margin-bottom: 12px;
}

.milestone p {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.7;
}

/* MISSION VISION */
.mission-vision {
  background: linear-gradient(135deg, #4a7ba7 0%, #1e3a5f 100%);
  color: white;
}

.mission-vision h2 {
  text-align: center;
  color: white;
  margin-bottom: 56px;
}

.mission-vision h3 {
  text-align: center;
  color: #e8b86d;
  margin: 56px 0 40px;
  font-size: 28px;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 56px;
}

.mission-box {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(232, 184, 109, 0.3);
  transition: all 0.3s ease;
}

.mission-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.mission-box h3 {
  color: #e8b86d;
  text-align: left;
  margin-bottom: 20px;
  font-size: 24px;
}

.mission-box p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.value-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  background: rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(232, 184, 109, 0.3);
  transition: all 0.3s ease;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
  border-color: #e8b86d;
}

.value-card h4 {
  color: #e8b86d;
  margin-bottom: 12px;
  font-size: 20px;
}

.value-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* TEAM */
.team {
  background: linear-gradient(135deg, #fef9e7 0%, #fff8e1 100%);
}

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

.team > .container > p {
  text-align: center;
  font-size: 18px;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto 56px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.team-member {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  max-width: 350px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 5px solid #e8b86d;
}

.team-member:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(232, 184, 109, 0.3);
}

.team-member h3 {
  color: #1e3a5f;
  margin-bottom: 12px;
  font-size: 22px;
}

.team-member p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 12px;
}

.team-member p strong {
  color: #4a7ba7;
  display: block;
  margin-bottom: 8px;
}

/* OFFICE LOCATION & INFO */
.office-location, .office-info {
  background: linear-gradient(135deg, #fff8e1 0%, #fef9e7 100%);
  text-align: center;
}

.office-location h2, .office-info h2 {
  margin-bottom: 32px;
}

.office-location p, .office-info .office-details p {
  font-size: 18px;
  color: #2d3748;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* CATEGORIES */
.categories {
  background: linear-gradient(135deg, #fef9e7 0%, #fff8e1 100%);
}

.categories h2 {
  text-align: center;
  margin-bottom: 56px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.category-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
  border-top: 5px solid #ff6b6b;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 107, 107, 0.3);
  border-top-width: 8px;
}

.category-card h3 {
  color: #1e3a5f;
  font-size: 22px;
}

.category-card p {
  color: #4a5568;
  line-height: 1.7;
  flex-grow: 1;
}

.category-card span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #e8b86d;
  font-size: 14px;
  text-transform: uppercase;
}

/* FEATURED ARTICLES */
.featured-articles {
  background: linear-gradient(135deg, #fff8e1 0%, #fef9e7 100%);
}

.featured-articles h2 {
  text-align: center;
  margin-bottom: 56px;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.article-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #4a7ba7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-card:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(74, 123, 167, 0.3);
  border-left-width: 8px;
}

.article-card h3 {
  color: #1e3a5f;
  font-size: 20px;
  line-height: 1.4;
}

.article-card p {
  color: #4a5568;
  line-height: 1.7;
  flex-grow: 1;
}

.article-card span {
  font-size: 13px;
  color: #4a7ba7;
  font-weight: 600;
}

/* DOWNLOADS */
.downloads {
  background: linear-gradient(135deg, #4a7ba7 0%, #1e3a5f 100%);
  text-align: center;
}

.downloads h2 {
  color: white;
  margin-bottom: 24px;
}

.downloads > .container > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 48px;
}

.downloads-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.download-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  max-width: 350px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 5px solid #e8b86d;
}

.download-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(232, 184, 109, 0.4);
}

.download-card h3 {
  color: #1e3a5f;
  margin-bottom: 16px;
  font-size: 20px;
}

.download-card p {
  color: #4a5568;
  margin-bottom: 16px;
  line-height: 1.7;
}

.download-card span {
  font-size: 13px;
  color: #4a7ba7;
  font-weight: 600;
}

/* FAQ */
.faq {
  background: linear-gradient(135deg, #fef9e7 0%, #fff8e1 100%);
}

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

.faq > .container > p {
  text-align: center;
  font-size: 18px;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto 48px;
}

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

.faq-item {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #e8b86d;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(232, 184, 109, 0.3);
  border-left-width: 8px;
}

.faq-item h3 {
  color: #1e3a5f;
  margin-bottom: 16px;
  font-size: 20px;
}

.faq-item p {
  color: #4a5568;
  line-height: 1.8;
}

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8c42 100%);
  text-align: center;
  padding: 80px 0;
}

.newsletter h2 {
  color: white;
  margin-bottom: 20px;
}

.newsletter > .container > p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.newsletter ul {
  list-style: none;
  max-width: 500px;
  margin: 0 auto 32px;
  text-align: left;
}

.newsletter ul li {
  color: white;
  font-size: 16px;
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
}

.newsletter ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #e8b86d;
  font-weight: bold;
  font-size: 20px;
}

.newsletter em {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* CONTACT METHODS */
.contact-methods {
  background: linear-gradient(135deg, #fef9e7 0%, #fff8e1 100%);
}

.contact-methods h2 {
  text-align: center;
  margin-bottom: 56px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.method-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
  border-top: 5px solid #ff6b6b;
  text-align: center;
}

.method-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 107, 107, 0.3);
  border-top-width: 8px;
}

.method-card h3 {
  color: #1e3a5f;
  margin-bottom: 20px;
  font-size: 24px;
}

.method-card p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 12px;
}

.method-card p strong {
  color: #1e3a5f;
  font-size: 20px;
  display: block;
  margin-bottom: 8px;
}

/* CONTACT FORM SECTION */
.contact-form-section {
  background: linear-gradient(135deg, #fff8e1 0%, #fef9e7 100%);
  text-align: center;
}

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

.contact-form-section > .container > p {
  font-size: 18px;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto 48px;
}

.form-note {
  background: white;
  padding: 24px;
  border-radius: 15px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  text-align: left;
  border-left: 5px solid #e8b86d;
}

.form-note p {
  color: #2d3748;
  margin-bottom: 12px;
  line-height: 1.7;
}

.form-note p:last-child {
  margin-bottom: 0;
}

/* OFFICE HOURS */
.office-hours {
  background: linear-gradient(135deg, #4a7ba7 0%, #1e3a5f 100%);
  text-align: center;
}

.office-hours h2 {
  color: white;
  margin-bottom: 40px;
}

.hours-table {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hours-table p {
  color: #2d3748;
  font-size: 18px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.hours-table em {
  color: #4a7ba7;
  font-size: 14px;
  display: block;
  margin-top: 24px;
}

/* MULTILINGUAL */
.multilingual {
  background: linear-gradient(135deg, #fef9e7 0%, #fff8e1 100%);
}

.multilingual h2 {
  text-align: center;
  margin-bottom: 56px;
}

.languages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.language {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  max-width: 500px;
  background: white;
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #e8b86d;
}

.language:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 30px rgba(232, 184, 109, 0.3);
  border-left-width: 6px;
}

.language p {
  color: #2d3748;
  font-size: 16px;
  line-height: 1.7;
}

.language p strong {
  color: #1e3a5f;
  font-weight: 700;
}

/* FAQ CONTACT */
.faq-contact {
  background: linear-gradient(135deg, #fff8e1 0%, #fef9e7 100%);
}

/* TRUST SIGNALS */
.trust-signals {
  background: linear-gradient(135deg, #4a7ba7 0%, #1e3a5f 100%);
  text-align: center;
}

.trust-signals h2 {
  color: white;
  margin-bottom: 40px;
}

.trust-signals ul {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.trust-signals ul li {
  color: white;
  font-size: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding-left: 48px;
  position: relative;
  text-align: left;
}

.trust-signals ul li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  color: #e8b86d;
  font-weight: bold;
  font-size: 24px;
}

.trust-signals ul li:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

/* THANK YOU PAGE */
.thank-you-page, .thank-you-hero {
  background: linear-gradient(135deg, #4a7ba7 0%, #1e3a5f 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: white;
  margin: 0 auto 32px;
  box-shadow: 0 15px 40px rgba(78, 205, 196, 0.4);
  animation: successPulse 1.5s ease-out;
}

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

.thank-you-hero h1,
.thank-you-page h1 {
  color: white;
  margin-bottom: 24px;
}

.thank-you-page p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.8;
}

/* NEXT STEPS */
.next-steps {
  background: linear-gradient(135deg, #fef9e7 0%, #fff8e1 100%);
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 56px;
}

.next-steps .steps-grid .step {
  background: white;
  border: 2px solid #e8b86d;
}

.next-steps .steps-grid .step:hover {
  background: white;
  border-color: #ff6b6b;
}

.next-steps .step-number {
  background: linear-gradient(135deg, #4a7ba7, #1e3a5f);
}

.next-steps .step h3 {
  color: #1e3a5f;
}

.next-steps .step p {
  color: #4a5568;
}

.next-steps .timing {
  display: inline-block;
  background: linear-gradient(135deg, #e8b86d, #ffd700);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 12px;
}

/* IMPORTANT INFO */
.important-info {
  background: linear-gradient(135deg, #fff8e1 0%, #fef9e7 100%);
}

.important-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.info-box {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  max-width: 350px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 5px solid #ff6b6b;
}

.info-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 107, 107, 0.3);
}

.info-box h3 {
  color: #1e3a5f;
  margin-bottom: 16px;
  font-size: 20px;
}

.info-box p {
  color: #4a5568;
  line-height: 1.7;
}

/* WHILE WAITING */
.while-waiting {
  background: linear-gradient(135deg, #4a7ba7 0%, #1e3a5f 100%);
  text-align: center;
}

.while-waiting h2 {
  color: white;
  margin-bottom: 56px;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.resource-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  max-width: 500px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.resource-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(232, 184, 109, 0.4);
}

.resource-card h3 {
  color: #1e3a5f;
  font-size: 24px;
}

.resource-card p {
  color: #4a5568;
  line-height: 1.7;
}

/* SOCIAL PROOF */
.social-proof {
  background: linear-gradient(135deg, #fef9e7 0%, #fff8e1 100%);
}

.social-proof h2 {
  text-align: center;
  margin-bottom: 56px;
}

.social-proof .stats-grid {
  margin-bottom: 56px;
}

.social-proof .stats-grid .stat-number {
  color: #1e3a5f;
  text-shadow: none;
}

.social-proof .stats-grid .stat-label {
  color: #4a7ba7;
}

.social-proof .testimonial {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.1);
  text-align: center;
  border-left: 5px solid #e8b86d;
}

.social-proof .testimonial p {
  color: #2d3748;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-proof .testimonial p:last-child {
  color: #1e3a5f;
  font-weight: 700;
  margin-bottom: 0;
}

/* CONTACT REMINDER */
.contact-reminder {
  background: linear-gradient(135deg, #4a7ba7 0%, #1e3a5f 100%);
  text-align: center;
}

.contact-reminder h2 {
  color: white;
  margin-bottom: 24px;
}

.contact-reminder > .container > p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.contact-reminder .contact-methods {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.contact-reminder .contact-methods p {
  color: #2d3748;
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.contact-reminder .contact-methods p strong {
  color: #1e3a5f;
  font-weight: 700;
}

/* FOREIGN FOUNDERS */
.foreign-founders {
  background: linear-gradient(135deg, #fff8e1 0%, #fef9e7 100%);
}

.foreign-founders h2 {
  text-align: center;
  margin-bottom: 56px;
}

.founders-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

/* LEGAL PAGE */
.legal-page {
  background: linear-gradient(135deg, #fef9e7 0%, #fff8e1 100%);
  padding: 80px 0;
}

.legal-page h1 {
  margin-bottom: 32px;
}

.legal-content {
  background: white;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #1e3a5f;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.legal-content h3 {
  color: #4a7ba7;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 20px;
}

.legal-content p {
  color: #2d3748;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: none;
  margin: 20px 0;
}

.legal-content ul li {
  color: #4a5568;
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: #e8b86d;
  font-size: 20px;
  font-weight: bold;
}

.contact-privacy {
  background: linear-gradient(135deg, #4a7ba7, #1e3a5f);
  padding: 32px;
  border-radius: 15px;
  margin-top: 48px;
  text-align: center;
}

.contact-privacy h2 {
  color: white;
  margin-bottom: 16px;
  font-size: 24px;
}

.contact-privacy p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f1e33 100%);
  color: white;
  padding: 60px 0 0;
  margin-top: 0;
}

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

.footer-section {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
}

.footer-section h3 {
  color: #e8b86d;
  font-size: 22px;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #e8b86d;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

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

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: #e8b86d;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(232, 184, 109, 0.3);
  padding: 24px 0;
  text-align: center;
}

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

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e3a5f, #2c5282);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: none;
  animation: slideUp 0.5s ease-out;
}

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

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

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

.cookie-text {
  flex: 1 1 400px;
  color: white;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: #e8b86d;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: white;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.4);
}

.cookie-btn-reject {
  background: linear-gradient(135deg, #ff6b6b, #ff8c42);
  color: white;
}

.cookie-btn-reject:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.cookie-btn-settings {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* COOKIE MODAL */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease-out;
}

#cookie-modal.show {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: popUp 0.4s ease-out;
}

@keyframes popUp {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #4a5568;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
  transform: rotate(90deg);
}

.cookie-modal-content h2 {
  color: #1e3a5f;
  margin-bottom: 24px;
  font-size: 28px;
}

.cookie-category {
  background: linear-gradient(135deg, #fef9e7, #fff8e1);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  border-left: 4px solid #e8b86d;
}

.cookie-category h3 {
  color: #1e3a5f;
  margin-bottom: 12px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #4a5568;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 26px;
  transition: 0.3s;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.cookie-modal-buttons button {
  flex: 1 1 200px;
}

/* ANIMATIONS */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideRight {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav .nav-menu {
    display: none;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

  .hero-subheadline {
    font-size: 16px;
  }

  .trust-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .services-grid,
  .steps-grid,
  .benefits-grid,
  .testimonials-grid,
  .stats-grid,
  .legal-forms-grid,
  .packages-grid,
  .mission-grid,
  .values-grid,
  .team-grid,
  .categories-grid,
  .articles-grid,
  .downloads-grid,
  .methods-grid,
  .languages-grid,
  .info-grid,
  .resources-grid,
  .founders-info {
    flex-direction: column;
  }

  .service-card,
  .step,
  .benefit-card,
  .testimonial-card,
  .stat,
  .legal-form-card,
  .package-card,
  .mission-box,
  .value-card,
  .team-member,
  .category-card,
  .article-card,
  .download-card,
  .method-card,
  .language,
  .info-box,
  .resource-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .package-card.recommended {
    transform: scale(1);
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  section {
    padding: 60px 0;
  }

  .container {
    padding: 0 16px;
  }

  .legal-content {
    padding: 32px 24px;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-modal-content {
    padding: 24px;
    margin: 20px;
  }

  .cookie-modal-buttons {
    flex-direction: column;
  }

  .cookie-modal-buttons button {
    width: 100%;
  }

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

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .timeline {
    flex-direction: column;
  }

  .milestone {
    flex: 1 1 100%;
  }
}