.ccs-cl-section_0ad2b31a *,
.ccs-cl-section_0ad2b31a *::before,
.ccs-cl-section_0ad2b31a *::after {
  box-sizing: border-box;
}

.ccs-cl-section_0ad2b31a {
  --ccs-navy:    #1a2a4a;
  --ccs-blue:    #1E90FF;
  --ccs-blue-dk: #1470D0;
  --ccs-sky:     #e0f0ff;
  --ccs-sky-lt:  #f0f7ff;
  --ccs-teal:    #32CD32;
  --ccs-green:   #32CD32;
  --ccs-white:   #FFFFFF;
  --ccs-gray:    #6b7280;
  --ccs-dark:    #333333;
  --ccs-border:  #d8e8f5;
  --ccs-ff-head: 'Playfair Display', Georgia, serif;
  --ccs-ff-body: 'DM Sans', system-ui, sans-serif;
  --ccs-r:       12px;
  --ccs-rl:      20px;
  --ccs-sh:      0 4px 24px rgba(15,31,23,.07);
  --ccs-shm:     0 8px 40px rgba(15,31,23,.13);
}

.ccs-cl-section_0ad2b31a {
  background: #ffffff;
  padding: 88px 0;
  font-family: var(--ccs-ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ccs-dark);
}

.ccs-cl-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.ccs-cl-hdr {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 52px;
}

.ccs-cl-eyebrow {
  display: inline-block;
  font-family: var(--ccs-ff-body);
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ccs-blue);
  background: var(--ccs-sky);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.ccs-cl-hdr h2 {
  font-family: var(--ccs-ff-head);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.01em;
  color: var(--ccs-navy);
  margin: 0 0 14px;
  padding: 0;
  position: relative;
  display: inline-block;
}

.ccs-cl-hdr h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--ccs-teal);
  border-radius: 2px;
  margin: 10px auto 0;
}

.ccs-cl-hdr p {
  font-family: var(--ccs-ff-body);
  font-size: 1.05rem;
  color: var(--ccs-gray);
  line-height: 1.78;
  margin: 0;
  padding: 0;
}

.ccs-cl-hdr p a {
  color: var(--ccs-blue);
  font-weight: 600;
  text-decoration: none;
}

.ccs-cl-hdr p a:hover {
  text-decoration: underline;
}

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

.ccs-cl-card {
  background: #fff;
  border: 1px solid var(--ccs-border);
  border-radius: var(--ccs-rl);
  padding: 28px;
  box-shadow: var(--ccs-sh);
  display: flex;
  flex-direction: column;
}

.ccs-cl-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ccs-sky);
}

.ccs-cl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  font-size: 24px;
  color: var(--ccs-blue);
}

.ccs-cl-icon i,
.ccs-cl-icon svg {
  width: 24px;
  height: 24px;
  font-size: 24px;
  fill: var(--ccs-blue);
  color: var(--ccs-blue);
}

.ccs-cl-card-head h3 {
  font-family: var(--ccs-ff-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ccs-navy);
  margin: 0;
  padding: 0;
  line-height: 1.3;
}

.ccs-cl-card-head h3::after { display: none !important; }

.ccs-cl-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.ccs-cl-list li {
  font-family: var(--ccs-ff-body);
  font-size: .83rem;
  color: var(--ccs-gray);
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid var(--ccs-border);
  line-height: 1.5;
}

.ccs-cl-list li:last-child {
  border-bottom: none;
}

.ccs-cl-list li::before {
  content: '✓';
  color: var(--ccs-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: .85rem;
}

.ccs-cl-list li em {
  color: var(--ccs-blue);
  font-style: italic;
  font-size: .78rem;
}

.ccs-cl-footer {
  text-align: center;
  margin-top: 36px;
}

.ccs-cl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--ccs-r);
  font-family: var(--ccs-ff-head);
  font-weight: 700;
  font-size: .93rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1;
  transition: transform .18s, box-shadow .18s, background .15s;
}

.ccs-cl-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.ccs-cl-btn-primary {
  background: var(--ccs-blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(30,144,255,.3);
}

.ccs-cl-btn-primary:hover {
  background: var(--ccs-blue-dk);
  color: #fff;
  box-shadow: 0 6px 28px rgba(30,144,255,.42);
}

@media (max-width: 960px) {
  .ccs-cl-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .ccs-cl-section_0ad2b31a {
    padding: 64px 0;
  }
  .ccs-cl-grid {
    grid-template-columns: 1fr;
  }
  .ccs-cl-btn {
    width: 100%;
    justify-content: center;
  }
}
