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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #ffffff;
}

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

h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 3rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.25rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.75rem; }

.nav {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.nav-brand {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2563eb;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

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

.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

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

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: #ffffff;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-secondary:hover {
  background: #eff6ff;
}

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

.objectives {
  padding: 5rem 0;
  background: #ffffff;
}

.objectives h2 {
  text-align: center;
  color: #0f172a;
  margin-bottom: 3rem;
}

.obj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.obj-card {
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.obj-card:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

.obj-icon {
  font-family: 'Manrope', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 1rem;
}

.obj-card h3 {
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.obj-card p {
  color: #64748b;
}

.approach {
  padding: 5rem 0;
  background: #f8fafc;
}

.approach .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.approach-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.approach h2 {
  color: #0f172a;
  margin-bottom: 2rem;
}

.approach-item {
  margin-bottom: 2rem;
}

.approach-item h4 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.approach-item p {
  color: #64748b;
}

.tech-stack {
  padding: 5rem 0;
  background: #ffffff;
}

.tech-stack h2 {
  text-align: center;
  color: #0f172a;
  margin-bottom: 3rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tech-card {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #2563eb;
}

.tech-card h4 {
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.tech-card p {
  color: #64748b;
  font-size: 0.9rem;
}

.cta-footer {
  padding: 4rem 0;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  text-align: center;
}

.cta-footer h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-footer p {
  color: #dbeafe;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-footer .btn-primary {
  background: #ffffff;
  color: #2563eb;
}

.cta-footer .btn-primary:hover {
  background: #f0f9ff;
}

.footer {
  padding: 2rem 0;
  background: #0f172a;
  text-align: center;
}

.footer p {
  color: #94a3b8;
  font-size: 0.9rem;
}

.page-header {
  padding: 3rem 0 2rem;
  background: #f8fafc;
}

.breadcrumb {
  color: #64748b;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: inline-block;
}

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

.page-subtitle {
  color: #64748b;
  font-size: 1.125rem;
  max-width: 700px;
}

.compliance-overview {
  padding: 4rem 0;
  background: #ffffff;
}

.compliance-overview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.compliance-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.compliance-intro h2 {
  color: #0f172a;
  margin-bottom: 1rem;
}

.compliance-intro p {
  color: #475569;
  line-height: 1.7;
}

.compliance-modules {
  padding: 4rem 0;
  background: #f8fafc;
}

.module-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.module-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.module-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.module-badge {
  background: #dbeafe;
  color: #1e40af;
  padding: 0.375rem 0.875rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
}

.module-item p {
  color: #475569;
  margin-bottom: 1rem;
}

.module-item ul {
  list-style: none;
  padding-left: 0;
}

.module-item li {
  color: #64748b;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.module-item li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
}

.compliance-features {
  padding: 4rem 0;
  background: #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 1.75rem;
  background: #f8fafc;
  border-radius: 10px;
  border-top: 3px solid #2563eb;
}

.feature-card h4 {
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #64748b;
  font-size: 0.95rem;
}

.compliance-timeline {
  padding: 4rem 0;
  background: #f8fafc;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-marker {
  background: #2563eb;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  height: fit-content;
}

.timeline-content {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.timeline-content h4 {
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.timeline-content p {
  color: #64748b;
}

.timeline-overview {
  padding: 3rem 0;
  background: #ffffff;
}

.timeline-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.stat-label {
  color: #64748b;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.project-phases {
  padding: 4rem 0;
  background: #f8fafc;
}

.phase-block {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid #e2e8f0;
}

.phase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.phase-duration {
  background: #dbeafe;
  color: #1e40af;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

.phase-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.phase-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.phase-details h4 {
  color: #0f172a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.phase-details h4:first-child {
  margin-top: 0;
}

.phase-details ul {
  list-style: none;
  padding-left: 0;
}

.phase-details li {
  color: #475569;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.phase-details li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
}

.phase-details p {
  color: #64748b;
  line-height: 1.7;
}

.deliverables-summary {
  padding: 4rem 0;
  background: #ffffff;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.deliverable-item {
  padding: 2rem;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #2563eb;
}

.deliverable-item h4 {
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.deliverable-item p {
  color: #64748b;
  font-size: 0.95rem;
}

.next-steps {
  padding: 4rem 0;
  background: #f8fafc;
  text-align: center;
}

.next-steps h2 {
  color: #0f172a;
  margin-bottom: 1rem;
}

.next-steps p {
  color: #64748b;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.next-steps-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .hero .container,
  .approach .container,
  .compliance-overview .container,
  .phase-content {
    grid-template-columns: 1fr;
  }
  
  .obj-grid,
  .tech-grid,
  .feature-grid,
  .timeline-stats,
  .deliverable-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .hero-cta,
  .next-steps-cta {
    flex-direction: column;
  }
  
  .timeline-item {
    grid-template-columns: 1fr;
  }
}