/* Overlay text on background image */
.overlay-box {
  position: absolute;
  z-index: 2;
  border-radius: 8px;
}

/* Yellow decorative backgrounds */
/* .decor-one,
.decor-two {
  position: absolute;
  background-color: rgb(10, 37, 192);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 1;
}

.decor-one {
  bottom: 10%;
  right: 15%;
  width: 120px;
  height: 120px;
}

.decor-two {
  bottom: 5%;
  right: 5%;
  width: 80px;
  height: 80px;
} */

.decor-one {
  position: absolute;
  top: -1%;
  left: 27%;
  width: 337px;
  height: 319px;
  background-color: #669bbc;
  z-index: 1;
  border-radius: 20px;
  opacity: 0.7;
}

.decor-two {
  position: absolute;
  bottom: 1%;
  right: 28%;
  width: 330px;
  height: 301px;
  background-color: #caf0f8;
  z-index: 1;
  border-radius: 20px;
  opacity: 0.7;
}

/* Image animation */
.chairman-img {
  position: relative;
  z-index: 2;
  max-width: 400px;
  animation: tension-bounce 4s ease-in-out infinite;
}

@keyframes tension-bounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03) rotate(-1deg);
  }
}

.message-box {
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
  background-color: #f9f9f9;
  border-left: 5px solid #0077b6;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.message-box p {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-style: italic;
  font-weight: 500;
  color: #333;
}
/* 
.message-box p::before,
.message-box p::after {
  font-family: serif;
  font-size: 3rem;
  color: #971010;
  position: absolute;
}

.message-box p::before {
  content: "“";
  left: -10px;
  top: -10px;
}

.message-box p::after {
  content: "”";
  right: -10px;
  bottom: -20px;
} */

.bed-right {
  background-color: #9b0404;
  border-radius: 20px;
  color: white;
}


.blue-right {
  background-color: #03045e;
  border-radius: 20px;
  color: white;
}

.rule-section {
      padding: 50px 0;
    }

    .rule-card {
      background-color: #ffffff;
      border-left: 5px solid #0d6efd;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 40px;
      border-radius: 8px;
    }

    .rule-card h3 {
      color: #0d6efd;
      font-weight: bold;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .rule-card ol li {
      margin-bottom: 10px;
    }

    .rule-card ul {
      padding-left: 20px;
      margin-top: 10px;
    }

    .rule-card ul li {
      list-style: circle;
    }

    .rules-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .rules-header h2 {
      font-weight: bold;
      text-transform: uppercase;
      color: #0d6efd;
    }