  /* Typography reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Content section */
.content-section {
  margin: 0;
  padding: 0;
}

/* Header styling */
.page-header {
  padding: 30px;
  background-color: lawngreen;
  font-size: 2em;
  font-family: 'Nunito', sans-serif;
  text-align: center;
  text-transform: uppercase;
}

/* History section container */
.history-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 40px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 8px 5px 10px rgba(16, 255, 28, 0.6);
}

/* Background effect */
.history-section::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background:
    linear-gradient(75deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9)),
    url('../img/img_assets/dangels-logo.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover, contain;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: -1;
}

.history-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

/* Title and paragraph */
.history-title {
  font-size: 28px;
  color: rgb(0, 4, 255);
  margin-bottom: 15px;
}

.history-text {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  padding: 10px;
}
.bg-custom {
  background-color: #0088ff;
}