/* style/about-licenses-regulations.css */
.page-about-licenses-regulations {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1a1a1a; /* Dark background */
  line-height: 1.6;
}

.page-about-licenses-regulations-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-about-licenses-regulations-hero {
  background: linear-gradient(135deg, #8B0000 0%, #4a0000 100%); /* Dark red gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  border-bottom: 5px solid #FFD700;
}

.page-about-licenses-regulations-main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-about-licenses-regulations-hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  color: #f0f0f0; /* Slightly lighter text for readability */
}

.page-about-licenses-regulations-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about-licenses-regulations-section:last-of-type {
  border-bottom: none;
}

.page-about-licenses-regulations-section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-about-licenses-regulations-section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #8B0000; /* Dark Red */
  border-radius: 2px;
}

.page-about-licenses-regulations-sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about-licenses-regulations-content-block {
  background-color: #2a2a2a; /* Slightly lighter dark background for content */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about-licenses-regulations-content-block p {
  margin-bottom: 15px;
  color: #E0E0E0; /* Light grey */
}

.page-about-licenses-regulations-image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-about-licenses-regulations-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  border: 2px solid #FFD700;
}

.page-about-licenses-regulations-list {
  list-style-type: disc;
  margin-left: 25px;
  padding-left: 0;
  color: #E0E0E0; /* Light grey */
  margin-bottom: 20px;
}

.page-about-licenses-regulations-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-about-licenses-regulations-list li strong {
  color: #FFD700; /* Gold */
}

.page-about-licenses-regulations-cta-section {
  background-color: #8B0000; /* Dark Red background */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold */
  border-top: 5px solid #FFD700;
}

.page-about-licenses-regulations-cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-about-licenses-regulations-cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-about-licenses-regulations-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark Red text */
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  margin: 0 15px;
  border: 2px solid #FFD700;
}

.page-about-licenses-regulations-cta-button:hover {
  background-color: #b39700; /* Darker gold on hover */
  color: #ffffff; /* White text on hover */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-about-licenses-regulations-cta-button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-about-licenses-regulations-cta-button--secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-about-licenses-regulations-main-title {
    font-size: 2.5em;
  }
  .page-about-licenses-regulations-hero-description {
    font-size: 1em;
  }
  .page-about-licenses-regulations-section-title {
    font-size: 2em;
  }
  .page-about-licenses-regulations-sub-title {
    font-size: 1.5em;
  }
  .page-about-licenses-regulations-content-block {
    padding: 20px;
  }
  .page-about-licenses-regulations-cta-title {
    font-size: 2.2em;
  }
  .page-about-licenses-regulations-cta-description {
    font-size: 1.1em;
  }
  .page-about-licenses-regulations-cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .page-about-licenses-regulations-main-title {
    font-size: 2em;
  }
  .page-about-licenses-regulations-section-title {
    font-size: 1.8em;
  }
  .page-about-licenses-regulations-hero {
    padding: 50px 0;
  }
  .page-about-licenses-regulations-cta-button {
    display: block;
    margin: 15px auto;
    width: 80%;
  }
  .page-about-licenses-regulations-list {
    margin-left: 15px;
  }
}