* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffffff;
  color: #222;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* PAGE HEADER */
.page-header {
  background: #2b3440;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.page-header h1 {
  font-size: 34px;
  font-weight: 600;
}

/* INTRO */
.epc-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding: 80px 0;
  align-items: center;
}

.epc-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.epc-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* HIGHLIGHT */
.epc-highlight {
  background: linear-gradient(135deg, #0a2540, #123a6f);
  color: #fff;
  text-align: center;
  padding: 28px 20px;
}

.epc-highlight h2 {
  font-size: 20px;
  font-weight: 500;
}

/* CONTENT */
.epc-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 80px 0;
}

.epc-box h3 {
  font-size: 22px;
  color: #0a2540;
  margin-bottom: 15px;
}

.epc-box ul {
  list-style: disc;
  padding-left: 18px;
}

.epc-box ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* PROCESS */
.epc-process {
  padding: 80px 0;
  text-align: center;
}

.epc-process h2 {
  font-size: 30px;
  color: #0a2540;
  margin-bottom: 50px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
}

.process-card i {
  font-size: 32px;
  color: #0a2540;
  margin-bottom: 15px;
}

.process-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0a2540;
}

.process-card p {
  font-size: 14px;
  color: #555;
}

/* CTA */
.cta-section {
  background: #0a1f3f;
  padding: 60px 20px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.cta-box h2 {
  font-size: 26px;
  font-weight: 500;
}

.cta-btn {
  background: #ffffff;
  color: #0a2540;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #e5e7eb;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .epc-intro,
  .epc-content {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .page-header h1 {
    font-size: 24px;
  }

  .epc-process h2 {
    font-size: 24px;
  }
}