.card-container {
    max-width: 1100px;
    margin: auto;
    padding: 10px 15px;
}

.card-container h1 {
    text-align: left;
    color: #1a237e;
    font-size: 20px;
}

.card-subtitle {
    /*text-align: justify;*/
    max-width: 800px;
    margin: 10px auto 30px;
    color: #555;

    hyphens: auto;
    -webkit-hyphens: auto;

    word-spacing: -0.5px;    
}

.sub-check-list {
  list-style: none;
  padding-left: 0;
  font-weight: lighter !important;
  font-size: 14px !important;
}

.sub-check-list p {
  padding-left: 8px;
  padding-top: 5px;
  font-weight: lighter !important ;
  font-size: 8px !important;
}

.sub-check-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 4px !important;
}

.sub-check-list li::before {
  content: "•" !important;
  position: absolute;
  left: 0;
  font-weight: lighter !important;
}


.check-list {
  list-style: none;
  padding-left: 0;
  font-weight: bold;
}

.check-list p {
  padding-left: 8px;
  padding-top: 5px;
  font-weight: lighter;
  font-size: 14px;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.card-section-title {
    margin-top: 40px;
    color: #1a237e;
    font-size: 22px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card-card:hover {
    transform: translateY(-5px);
}

.card-card h3 {
    margin-bottom: 10px;
    color: #0d47a1;
}

.card-impact-list {
    color: #1a237e;
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.card-impact-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.card-value-box {
    margin-top: 30px;
    padding: 20px;
    background: #e8eaf6;
    border-left: 5px solid #1a237e;
    border-radius: 8px;
}
