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

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

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

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

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #2563eb;
}

.nav-links {
  display: flex;
  gap: 32px;
}

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

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

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

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

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.btn-primary {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(37,99,235,0.2);
}

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

.btn-secondary {
  display: inline-block;
  background: #ffffff;
  color: #2563eb;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #2563eb;
  transition: all 0.2s;
}

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

.section {
  padding: 80px 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  text-align: center;
  margin-bottom: 16px;
  color: #111827;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.bg-light {
  background: #f9fafb;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.card-text {
  color: #6b7280;
  line-height: 1.7;
}

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

.split-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.body-text {
  font-size: 17px;
  color: #4b5563;
  margin-bottom: 24px;
  line-height: 1.8;
}

.checklist {
  list-style: none;
  margin-bottom: 32px;
}

.checklist li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #374151;
}

.checklist li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
  font-size: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 60px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #6b7280;
  font-weight: 500;
}

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

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 18px;
  color: #e0e7ff;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.footer {
  background: #111827;
  padding: 40px 0;
  text-align: center;
  color: #9ca3af;
}

.page-header {
  padding: 80px 0 40px;
  text-align: center;
  background: #f9fafb;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 16px;
  color: #111827;
}

.page-subtitle {
  font-size: 18px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr 300px;
  gap: 32px;
  margin-bottom: 60px;
  align-items: start;
}

.timeline-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #2563eb;
}

.timeline-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.timeline-text {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 12px;
}

.timeline-meta {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 500;
}

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

.deliverable {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.deliverable-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.deliverable-text {
  color: #6b7280;
  line-height: 1.7;
}

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

.portfolio-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.portfolio-item:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.portfolio-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.portfolio-info {
  padding: 28px;
}

.portfolio-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}

.portfolio-meta {
  font-size: 14px;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 12px;
}

.portfolio-desc {
  color: #6b7280;
  line-height: 1.7;
}

.issue-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.issue-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.issue-text {
  color: #6b7280;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero .container,
  .split,
  .grid-3,
  .grid-2,
  .stats,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .timeline-item {
    grid-template-columns: 1fr;
  }
  .timeline-image {
    order: -1;
  }
  .hero-title {
    font-size: 36px;
  }
  .section-title {
    font-size: 32px;
  }
  .nav-links {
    gap: 16px;
  }
}