body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: white;
    color: #1f2933;
    line-height: 1.7;
}

.header {
    background: linear-gradient(135deg, #0b4f6c, #01baef);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.header h1 {
    margin: 0;
    font-size: 34px;
}

.header h2 {
    margin-top: 10px;
    font-weight: 400;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 30px 20px;
}

section {
    background: #ffffff;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

section h3 {
    color: #0b4f6c;
    border-left: 6px solid #01baef;
    padding-left: 12px;
    margin-top: 0;
    font-weight: 600;	
}

.highlight {
    background: #eaf6fb;
    padding: 10px;
    border-left: 6px solid #0b4f6c;
    border-radius: 6px;
    font-weight: 500;
	text-align:justify;
    font-size: 14px;	
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
    font-size: 12px;	
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.card {
    background: #f9fbfd;
    padding: 18px;
    border-radius: 8px;
    border: 1px solid #dbe2ea;
}

.card h4 {
    margin-top: 0;
    color: #0b4f6c;
}

table {
    width: 750px;
    border-collapse: collapse;
    font-size: 12px;	
}

th {
    background: #0b4f6c;
    color: white;
    padding: 12px;
    text-align: left;
}
p {
	text-align: justify;
    font-size: 14px;	
}
td {
    text-align: left;	
    padding: 5px;
    font-size: 11px;	
    border-bottom: 1px solid #dbe2ea;
}

tr:nth-child(even) {
    background: #f1f5f9;
}
.strategic-list {
  list-style: none;
  counter-reset: item;
  padding-left: 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

.strategic-list li {
  counter-increment: item;
  background: white; /*#f5f9fc;*/
  border-left: 6px solid #0b4f6c;
  margin-bottom: 5px;
  padding: 5px 8px;
  border-radius: 8px;
}

.strategic-list li::before {
  content: counter(item) ". ";
  font-weight: bold;
  color: #0b4f6c;
  font-size: 13px;
}

.strategic-list strong {
  color: #0b4f6c;
}

    .pillar {
        margin-bottom: 10px;
        padding: 10px;
        border-radius: 8px;
        background: #f9fbff;
        border: 1px solid #dbe5ff;
    }

    .pillar-title {
        font-size: 14px;
        font-weight: 700;
        color: #0b3d91;
        margin-bottom: 10px;
    }

    .pillar p {
        font-size: 14px;
        line-height: 1.5;
        text-align: justify;
        margin: 0;
    }
	
.strategic-container {
        max-width: 1100px;
        margin: auto;
        background: #ffffff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    .section-title {
        font-size: 24px;
        font-weight: 700;
        color: #1f4aa8;
        border-left: 6px solid #1f4aa8;
        padding-left: 12px;
        margin-bottom: 25px;
    }
	
	
	
.footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #5f6c7b;
}
