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

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

h1, h2, h3, h4 {
  font-family: 'Crimson Pro', serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

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

.header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-family: 'Crimson Pro', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d5a7b;
}

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

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

.nav-links a:hover,
.nav-links a.active {
  color: #2d5a7b;
}

.hero {
  background: linear-gradient(135deg, #2d5a7b 0%, #4a7a9e 100%);
  color: #fff;
  padding: 120px 0;
  text-align: center;
}

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

.hero h1 {
  margin-bottom: 24px;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.95;
}

.btn-primary {
  display: inline-block;
  background: #fff;
  color: #2d5a7b;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.section {
  padding: 80px 0;
}

.bg-light {
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
  color: #1a1a1a;
}

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

.intro-text {
  font-size: 1.125rem;
  color: #4a4a4a;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.feature-card {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

.feature-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.feature-card h3 {
  color: #2d5a7b;
  margin-bottom: 12px;
}

.design-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.design-showcase.reverse {
  direction: rtl;
}

.design-showcase.reverse > * {
  direction: ltr;
}

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

.showcase-content h3 {
  color: #2d5a7b;
  margin-bottom: 16px;
}

.showcase-content p {
  color: #4a4a4a;
  margin-bottom: 16px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.portfolio-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.portfolio-item:hover {
  transform: translateY(-4px);
}

.portfolio-item img {
  width: 100%;
  display: block;
}

.portfolio-caption {
  padding: 24px;
}

.portfolio-caption h4 {
  color: #2d5a7b;
  margin-bottom: 8px;
}

.portfolio-caption p {
  color: #666;
  font-size: 0.95rem;
}

.cta-section {
  background: #2d5a7b;
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  color: #fff;
  margin-bottom: 16px;
}

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

.footer {
  background: #1a1a1a;
  color: #999;
  padding: 32px 0;
  text-align: center;
}

.page-hero {
  background: #f8f9fa;
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}

.page-subtitle {
  font-size: 1.125rem;
  color: #666;
  margin-top: 16px;
}

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

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

.step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e5e5e5;
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: 'Crimson Pro', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #2d5a7b;
  opacity: 0.3;
  flex-shrink: 0;
}

.step-content h3 {
  color: #2d5a7b;
  margin-bottom: 12px;
}

.step-content p {
  color: #4a4a4a;
  margin-bottom: 16px;
}

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

.step-list li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  color: #666;
}

.step-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #2d5a7b;
  font-weight: bold;
}

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

.benefit-card {
  background: #fff;
  padding: 28px;
  border-radius: 8px;
  border-left: 3px solid #2d5a7b;
}

.benefit-card h4 {
  color: #2d5a7b;
  margin-bottom: 8px;
}

.benefit-card p {
  color: #666;
  font-size: 0.95rem;
}

.image-content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.content-block h3 {
  color: #2d5a7b;
  margin-bottom: 16px;
}

.content-block p {
  color: #4a4a4a;
  margin-bottom: 16px;
}

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

.timeline-phase {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.phase-duration {
  background: #2d5a7b;
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
}

.phase-header h3 {
  color: #2d5a7b;
}

.phase-content p {
  color: #4a4a4a;
  margin-bottom: 16px;
}

.deliverables {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 6px;
  margin-top: 16px;
}

.deliverables h4 {
  color: #2d5a7b;
  margin-bottom: 12px;
  font-size: 1rem;
}

.deliverables ul {
  list-style: none;
}

.deliverables li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 6px;
  color: #666;
}

.deliverables li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2d5a7b;
  font-weight: bold;
}

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

.included-item {
  background: #fff;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.included-item h4 {
  color: #2d5a7b;
  margin-bottom: 8px;
}

.included-item p {
  color: #666;
  font-size: 0.95rem;
}

.revision-policy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.policy-block {
  background: #f8f9fa;
  padding: 28px;
  border-radius: 8px;
  border-top: 3px solid #2d5a7b;
}

.policy-block h4 {
  color: #2d5a7b;
  margin-bottom: 12px;
}

.policy-block p {
  color: #666;
  font-size: 0.95rem;
}

.image-showcase {
  text-align: center;
}

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

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

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  .hero { padding: 80px 0; }
  .section { padding: 60px 0; }
  
  .nav-links { gap: 20px; }
  
  .design-showcase,
  .design-showcase.reverse,
  .image-content-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .step { flex-direction: column; gap: 16px; }
  .step-number { font-size: 2rem; }
}