body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #000000;
  color: #333;
}

header {
  text-align: center;
  padding: 30px 20px;
  background-color: #000000;
  color: rgb(255, 3, 3);
}

header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1rem;
  opacity: 0.8;
}

.accordion {
  max-width: 800px;
  margin: 30px auto;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: #f8f9fc;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #e8eef6;
}

.plus {
  font-size: 1.4rem;
  color: #f60707;
  transition: transform 0.3s;
}

.accordion-header.active .plus {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: white;
  padding: 0 20px;
  font-size: 0.95rem;
  color: #555;
  transition: max-height 0.4s ease-out, padding 0.3s ease-out;
}

.accordion-content.open {
  padding: 15px 20px;
}

.c-btn {
  position: relative;
  display: inline-block;
  padding: 5px 8px;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(45deg, #ff0000, #990000);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  font-weight: bold;
  text-decoration: none;
  font-size: 10px;
}

.c-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75px;
  width: 50px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
}

.c-btn:hover {
  transform: scale(1.05);
  
}

.c-btn:hover::before {
  left: 125%;
  transition: left 0.5s ease;
}
