/* xl - DESKTOP STYLES */ 
/* --------------- Home page - Three steps ------------- */

.process-right {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 20px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f0f6fb;
  border: 2px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 33px;
  font-weight: 700;
  color: #001f3f;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 19px;
  margin: 0 0 10px;
  font-weight: 600;
}

.step-content p {
  margin: 0;
  font-size: 19px;
  line-height: 1.5;
}

.red { color: #c8102e; }
.blue { color: #001f3f; }

/* Individual step classes for targeting */
.step-1 {}
.step-2 {}
.step-3 {}

@media (max-width: 768px) {
  .process-right {
    padding-left: 0;
  }
  .process-step {
    margin-bottom: 20px;
  }
}


/* ------------- Home page - Table ------------- */

.timeline-table {
  width: 100%;
  font-family: Arial, sans-serif;
  border-collapse: collapse;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: none;
}

th, td {
  padding: 10px;
  text-align: left;
}

/* Remove all borders from the first header row */
thead tr.no-border th {
  border: none;
}

/* Add border to tbody only */
tbody td {
  border: 1px solid #ddd;
}

th {
  font-family: 'Noto Sans';
  font-size: 19px !important;
  font-weight: 600;
  color: #b81c1d !important;
}

.timeline-item {
  display: block;
  min-width: 500px;
}

.timeline-item .title {
  font-size: 19px;
  font-weight: 600;
  color: #b81c1d;
  font-family: 'Noto Sans';
  display: flex;
  row-gap: 2px !important;
  padding: 0;
  margin: 0;
  margin-bottom: 0px;
}

.timeline-item .launch {
  font-size: 16px;
  color: #2F3C57;
  font-family: 'Noto Sans';
}

table th, table td {
  border: none;
  padding: 1em 1em;
  border-inline-end: 1px solid #dedede;
}

.rectangle {
  width: 100px;
  height: 14px;
  background-color: #c22035;
}

.rectangle.grey-rect {
  background-color: #e9e9e9;
}

.rectangle.low-opacity {
  background-color: #c2203559;
}

.arrow-rect {
  width: 100px;
  height: 24px;
  background-color: #c22035;
  position: relative;
  margin: 30px auto; /* centre horizontally */
}

/* Upward arrow using ::before */
.arrow-rect::before {
  content: '';
  position: absolute;
  bottom: 100%; /* position above rectangle */
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 5px; /* space between arrow and rectangle */
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #c22035; /* arrow points up */
}

/* Circle tick */
.circle-rect {
  width: 100px;
  height: 24px;
  background-color: #c22035;
  position: relative;
  margin: 30px auto; /* centre horizontally */
}

/* Red circle above rectangle */
.circle-rect::before {
  content: '';
  position: absolute;
  bottom: 100%; /* place above rectangle */
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 5px; /* gap between circle and rectangle */
  width: 24px;
  height: 24px;
  background-color: #c22035;
  border-radius: 50%; /* make it a circle */
	



