

.cpcsea-section{
  font-family:Arial,sans-serif;
}

.cpcsea-card{
  background:#ffffff;
  border-radius:22px;
  padding:50px;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
  border-top:6px solid var(--accent-red);
  position:relative;
  overflow:hidden;
}

.cpcsea-card::before{
  content:"";
  position:absolute;
  top:-90px;
  right:-90px;
  width:240px;
  height:240px;
  background:rgba(38,52,137,0.04);
  border-radius:50%;
}

.cpcsea-content{
  position:relative;
  z-index:2;
}

.cpcsea-content h1{
  color:var(--primary-blue);
  font-size:38px;
  font-weight:700;
  margin-bottom:32px;
  line-height:1.4;
  position:relative;
  padding-left:22px;
}

.cpcsea-content h1::before{
  content:"";
  position:absolute;
  left:0;
  top:6px;
  width:6px;
  height:85%;
  background:var(--accent-red);
  border-radius:20px;
}

.cpcsea-content p{
  color:var(--text-black);
  font-size:16px;
  line-height:1.9;
  margin-bottom:26px;
  text-align:justify;
}

.cpcsea-highlight{
  background:#fff;
  border-left:5px solid var(--accent-red);
  border-radius:16px;
  padding:24px 28px;
  margin:35px 0;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
}

.cpcsea-highlight p{
  margin:0;
}

.cpcsea-info-box{
  display:flex;
  align-items:flex-start;
  gap:20px;
  background:#ffffff;
  border-radius:18px;
  padding:24px;
  box-shadow:0 6px 20px rgba(0,0,0,0.06);
  border:1px solid rgba(38,52,137,0.08);
  margin-top:35px;
}

.cpcsea-icon{
  width:70px;
  height:70px;
  min-width:70px;
  background:rgba(236,29,37,0.08);
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
}

.cpcsea-info-box p{
  margin:0;
}

@media(max-width:991px){

  .cpcsea-card{
    padding:30px 22px;
  }

  .cpcsea-content h1{
    font-size:30px;
  }

  .cpcsea-content p{
    font-size:15px;
  }

  .cpcsea-info-box{
    flex-direction:column;
    align-items:flex-start;
  }
}