/* style.css */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    color: #333;
    /* background-color: #f8f9fa; */
}

header {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    color: #2c3e50;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
}

h2 {
    color: #34495e;
    margin-top: 30px;
    padding-bottom: 5px;
    border-bottom: 1px solid #bdc3c7;
}

h3 {
    color: #2980b9;
    margin-top: 20px;
}

hr {
    border: 0;
    border-top: 1px dashed #ccc;
    margin: 40px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 0.7em;
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #e9ecef;
    color: #555;
    font-weight: bold;
}

.key-conclusion {
    background-color: #fff3cd; /* Light warning color */
    padding: 15px;
    border-left: 5px solid #ffc107; /* Warning yellow */
    margin-top: 20px;
    border-radius: 4px;
}

ul {
    padding-left: 20px;
}


.section {
  margin-bottom: 2.5rem;
}

.section h2 {
  color: var(--primary);
  border-left: 4px solid var(--primary);
  padding-left: 10px;
  font-size: 1.4rem;
}

.section ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

.diagram-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.diagram-container img {
  width: 80%;
  max-width: 700px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 1rem;
}

.kpi {
  background: linear-gradient(90deg, #ecfeff, #f0fdfa);
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 450px;
}

.kpi:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.kpi-text h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.kpi-text p {
  color: var(--muted);
  font-size: 0.9rem;
}

.kpi-image {
  width: 70%;
  border-radius: 6px;
  margin-top: 8px;
  object-fit: contain;
  align-self: center;
  justify-self: center;
  justify-self: center;
}


/* Project Links Styling */
.project-link-p {
    text-align: center;
    margin: 20px 0;
}

.project-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.project-link:hover {
    background-color: #2980b9;
}

.responsive-image {
    max-width: 70%;
    height: auto;
    display: block;
    margin: 20px auto;
}

p, ul{
    text-align: justify;
    font-size: 0.8em;
}