/* Intro Box */
.intro-box {
  background: #f5f5f5;
  padding: 30px;
  border-left: 6px solid #d71d07;
  margin-bottom: 50px;
}

.intro-box p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.intro-box p:last-child {
  margin-bottom: 0;
}

.intro-box strong {
  color: #d71d07;
}

/* Highlight Box */
.highlight-box {
  background: #000000;
  color: #ffffff;
  padding: 40px;
  margin-bottom: 60px;
  position: relative;
}

.highlight-label {
  display: inline-block;
  background: #d71d07;
  color: #ffffff;
  padding: 5px 15px;
  font-family: Antonio, 'Arial Black', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.highlight-box h2 {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 15px;
}

.highlight-box p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.highlight-source {
  color: #999999;
  font-size: 0.9rem;
}

.highlight-link {
  display: inline-block;
  background: #d71d07;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 30px;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
  border: 2px solid #d71d07;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.highlight-link:hover {
  background: #ccb113;
  border-color: #ccb113;
  color: #000000;
}

/* Resource Category */
.resource-category {
  margin-bottom: 60px;
}

.resource-category > h2 {
  border-bottom: 3px solid #000000;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.resource-category > p {
  margin-bottom: 30px;
}

/* Resource List */
.resource-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.resource-item {
  border: 2px solid #e0e0e0;
  padding: 25px 30px;
  background: #ffffff;
  transition: border-color 0.3s ease;
}

.resource-item:hover {
  border-color: #d71d07;
}

.resource-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.resource-item p {
  margin-bottom: 10px;
  line-height: 1.8;
}

.resource-source {
  color: #888888;
  font-size: 0.85rem;
  font-style: italic;
}

.resource-item a {
  display: inline-block;
  color: #d71d07;
  text-decoration: none;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 20px;
  transition: color 0.3s ease;
}

.resource-item a:hover {
  color: #000000;
}

/* Important Note */
.important-note {
  background: #fffef0;
  border: 2px solid #ccb113;
  padding: 30px;
  margin: 40px 0;
}

.important-note h2 {
  margin-top: 0;
}

.important-note p {
  margin-bottom: 15px;
}

.important-note p:last-child {
  margin-bottom: 0;
}

/* CTA Box */
.cta-box {
  background: #d71d07;
  color: #ffffff;
  padding: 40px;
  text-align: center;
  margin-top: 50px;
}

.cta-box h2 {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 20px;
}

.cta-box p {
  margin-bottom: 25px;
}

.cta-box .cta-button {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #000000;
}

.cta-box .cta-button:hover {
  background: #ccb113;
  border-color: #ccb113;
  color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
  .intro-box {
    padding: 20px;
  }

  .highlight-box {
    padding: 25px 20px;
  }

  .resource-item {
    padding: 20px;
  }

  .resource-item a {
    display: block;
    margin-right: 0;
    margin-bottom: 5px;
  }

  .highlight-link {
    display: block;
    text-align: center;
    padding: 12px 20px;
  }

  .important-note {
    padding: 20px;
  }

  .cta-box {
    padding: 30px 20px;
  }

  .cta-box .cta-button {
    padding: 15px 5px;
    font-size: 1rem;
  }
}
