/* style/resources-official-address.css */
.page-resources-official-address {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text for dark background */
  background-color: #0A1931; /* Main dark background */
  line-height: 1.6;
}

.page-resources-official-address__container {
  max-width: 800px; /* Content width for readability */
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-official-address__hero {
  background: linear-gradient(135deg, #0A1931, #2C3E50); /* Dark gradient for hero */
  padding: 80px 0 60px;
  text-align: center;
  color: #FFFFFF;
}

.page-resources-official-address__title {
  font-size: 2.8em;
  color: #E6B325; /* Accent gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-official-address__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-resources-official-address__btn {
  display: inline-block;
  background-color: #E6B325; /* Gold button */
  color: #0A1931; /* Dark text on gold */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-resources-official-address__btn:hover {
  background-color: #d1a120; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-resources-official-address__btn--primary {
  background-color: #E6B325;
  color: #0A1931;
}

.page-resources-official-address__btn--secondary {
  background-color: #1a3250; /* Darker blue for secondary action */
  color: #E6B325;
  border: 1px solid #E6B325;
}

.page-resources-official-address__btn--secondary:hover {
  background-color: #0A1931;
  color: #E6B325;
}

.page-resources-official-address__section {
  padding: 40px 0;
}

.page-resources-official-address__article-content {
  background-color: #12243d; /* Slightly lighter dark background for article */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-official-address__heading {
  font-size: 2em;
  color: #E6B325; /* Gold for main headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #E6B325;
  padding-bottom: 10px;
}

.page-resources-official-address__sub-heading {
  font-size: 1.5em;
  color: #F8F8F8;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-official-address__article-content p {
  margin-bottom: 1em;
  color: #E0E0E0;
}

.page-resources-official-address__list,
.page-resources-official-address__ordered-list {
  list-style-position: inside;
  margin-bottom: 1em;
  padding-left: 20px;
  color: #E0E0E0;
}

.page-resources-official-address__list li,
.page-resources-official-address__ordered-list li {
  margin-bottom: 0.5em;
}

.page-resources-official-address__list strong {
  color: #E6B325;
}

.page-resources-official-address__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.page-resources-official-address__cta-box {
  background-color: #1a3250; /* Darker blue for CTA box */
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  margin: 40px 0;
  border: 1px dashed #E6B325;
}

.page-resources-official-address__cta-text {
  font-size: 1.3em;
  color: #E6B325;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-official-address__faq {
  margin-top: 30px;
}

.page-resources-official-address__faq-item {
  background-color: #1a3250;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.page-resources-official-address__faq-question {
  font-size: 1.2em;
  color: #E6B325;
  margin-bottom: 10px;
}

.page-resources-official-address__faq-answer {
  color: #E0E0E0;
  font-size: 0.95em;
}

.page-resources-official-address__return-link {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #2C3E50;
}

.page-resources-official-address__link {
  color: #E6B325;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-official-address__link:hover {
  color: #d1a120;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-official-address__title {
    font-size: 2.2em;
  }

  .page-resources-official-address__heading {
    font-size: 1.8em;
  }

  .page-resources-official-address__sub-heading {
    font-size: 1.3em;
  }

  .page-resources-official-address__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-resources-official-address__article-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-official-address__title {
    font-size: 1.8em;
  }

  .page-resources-official-address__heading {
    font-size: 1.5em;
  }

  .page-resources-official-address__subtitle {
    font-size: 1em;
  }

  .page-resources-official-address__cta-text {
    font-size: 1.1em;
  }

  .page-resources-official-address__faq-question {
    font-size: 1.1em;
  }
}