/* COLORS (same as React theme) */
:root {
  --ccs-dark: #0B2559;
  --ccs-gold: #8DC63F;
  --ccs-light: #F6F8FC;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.services-section {
  padding: 80px 20px;
  background: var(--ccs-light);
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.title-box {
  text-align: center;
  margin-bottom: 50px;
}

.title-box h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--ccs-dark);
}

.title-box h2 span {
  color: var(--ccs-gold);
  font-style: italic;
  font-weight: normal;
}

.line {
  width: 90px;
  height: 4px;
  background: var(--ccs-gold);
  margin: 12px auto;
  border-radius: 10px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border-bottom: 4px solid transparent;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card:hover {
  border-bottom: 4px solid var(--ccs-gold);
  transform: translateY(-5px);
}

/* ICON */
.icon {
  width: 55px;
  height: 55px;
  margin: auto;
  margin-bottom: 20px;
  background: rgba(201, 162, 39, 0.1);
  color: var(--ccs-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: 0.3s;
}

.card:hover .icon {
  background: var(--ccs-gold);
  color: white;
}

/* TITLE */
.card h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--ccs-dark);
  margin-bottom: 10px;
}

/* DESCRIPTION */
.card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .title-box h2 {
    font-size: 26px;
  }
}