/* regulations.css */
.regulations_main {
  padding-top: 160px;
  padding-bottom: 80px;
}

main.films_main {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.regulation_header {
  text-align: center;
  margin-bottom: 2rem;
}
.regulation_header p {
  font-size: 16px;
}

.header_h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
}

.regulation_table {
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 3rem;
}
.regulation_table h2 {
  margin-bottom: 20px;
}

.regulations_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
}

.regulations_table thead {
  background-color: #131313;
  color: #fff;
}

.regulations_table th,
.regulations_table td {
  padding: 1rem;
  border: 1px solid #252525;
  text-align: left;
}

.regulations_table td {
  background-color: black;
}

.regulations_table tr:nth-child(even) td {
  background-color: black;
}

.regulations_table td:first-child {
  font-weight: 600;
  color: var(--white-color);
}

.regulation_footer {
  border: 1px solid var(--main-color);
  padding: 2rem;
  border-radius: 10px;
}

.regulation_footer h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.regulation_footer ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.regulation_footer li {
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .header_h1 {
    font-size: 2rem;
  }
  .regulations_table th,
  .regulations_table td {
    font-size: 0.9rem;
    padding: 0.75rem;
  }
  .regulation_footer button {
    margin: 0px auto;
    display: block;
  }
}/*# sourceMappingURL=regulations.css.map */