.sheet-container {
  width:90%;
  margin:0 auto;
  container: sheet-container / inline-size;
}
.fact-sheets-module {
  background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent white */
  border-radius: 15px;
  padding: 30px;
  margin: 0 0 25px;
  max-width: 55%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fact-sheets-header h3 {
  font-family: Arial, sans-serif; /* Or your preferred font */
  font-size: 20px;
  font-weight:700;
  color: #0F145B;
  padding-bottom: 25px;
  border-bottom: 1px solid #0F145B;
  margin:0;
}

.fact-sheet-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid #0F145B;
  color: #0F145B;
}

.fact-sheet-item p {
  margin:0;
}

/* .fact-sheet-item:last-child {
  border-bottom: none; /* No border for the last item */
}*/

.fact-sheet-item p {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #0F145B;
  margin: 0;
  flex-grow: 1; /* Allow text to take available space */
  padding-right: 15px; /* Spacing between text and button */
}

.fact-sheet-item p a {
  font-family: Arial, sans-serif;
  text-decoration:none;
  color: #0F145B;
}

.read-now-button {
  background-color: #e0e6f0; /* Light blue/grey for the button */
  color: #0F145B;
  padding: 10px 30px;
  border: 2px solid #0F145B;
  border-radius: 5px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight:700;
  transition: background-color 0.3s ease;
}

.read-now-button:hover {
  background-color: #d0d8e8; /* Slightly darker on hover */
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight:700;
  cursor: pointer;
}


/*******Responsive********/
/***Module by Sandy Cariaga ******/

@container sheet-container (max-width: 430px) {
  .fact-sheets-module {
  max-width: 100%;
  }
  
  .fact-sheet-item {
    flex-direction: column;
    row-gap: 10px;
  }
  
  .read-now-button {
    width: 100%;
    text-align: center; 
  }
}