:root {
  --primary-color: #007bff;
  --secondary-color: #ffc107;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f8f9fa;
  --background-dark: #0056b3; /* Darker shade of primary for contrast */
  --border-color: #e0e0e0;
}

.page-contact {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-light);
}

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

/* Hero Section */
.page-contact .hero-contact-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--background-dark);
  color: var(--text-color-light);
  overflow: hidden;
}

.page-contact .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.page-contact .hero-image {
  width: 100%;
  height: 400px; /* Adjust as needed */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-contact .hero-content h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--text-color-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-contact .hero-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  color: var(--text-color-light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-contact .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-color-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact .cta-button:hover {
  background: #e0a800; /* Slightly darker secondary color */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-contact section {
  padding: 60px 0;
  margin-bottom: 30px;
}

.page-contact section:nth-of-type(even) {
  background-color: #f0f4f8;
}

.page-contact h2 {
  font-size: 2.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-contact h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.page-contact h3 {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-contact p {
  margin-bottom: 15px;
}

.page-contact .text-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact .text-link:hover {
  color: var(--secondary-color);
}

/* Contact Channels Section */
.page-contact .channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-contact .channel-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact .channel-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-contact .channel-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-contact .channel-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-contact .contact-info {
  font-weight: bold;
  color: var(--text-color-dark);
  margin-top: 15px;
}

.page-contact .contact-info a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-contact .social-links {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.page-contact .social-links li {
  margin-bottom: 8px;
}

.page-contact .social-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-contact .social-links a:hover {
  color: var(--secondary-color);
}

.page-contact .channel-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.95em;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-contact .channel-button:hover {
  background: var(--secondary-color);
  color: var(--text-color-dark);
}

/* Why Contact Section */
.page-contact .why-contact-section .content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-contact .why-contact-section .content-wrapper.reverse {
  flex-direction: row-reverse;
}

.page-contact .why-contact-section .text-content,
.page-contact .why-contact-section .image-content {
  flex: 1;
  min-width: 300px;
}

.page-contact .why-contact-section .text-content ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 0;
}

.page-contact .why-contact-section .text-content li {
  margin-bottom: 10px;
}

.page-contact .why-contact-section .content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-contact .faq-section {
  background-color: var(--background-light);
}

.page-contact .faq-list {
  margin-top: 40px;
}

.page-contact .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.page-contact .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-contact .faq-question:hover {
  background: #f5f5f5;
}

.page-contact .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--text-color-dark);
}

.page-contact .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-contact .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.page-contact .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #f9f9f9;
  color: var(--text-color-dark);
}

.page-contact .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

/* Direct Request Section (Contact Form) */
.page-contact .direct-request-section {
  background-color: #f0f4f8;
}

.page-contact .contact-form {
  max-width: 700px;
  margin: 40px auto 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-contact .form-group {
  margin-bottom: 25px;
}

.page-contact .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--primary-color);
}

.page-contact .form-group input[type="text"],
.page-contact .form-group input[type="email"],
.page-contact .form-group input[type="tel"],
.page-contact .form-group textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1em;
  color: var(--text-color-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact .form-group input:focus,
.page-contact .form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
  outline: none;
}

.page-contact .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.page-contact .submit-button {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--primary-color);
  color: var(--text-color-light);
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact .submit-button:hover {
  background: var(--secondary-color);
  color: var(--text-color-dark);
  transform: translateY(-2px);
}

/* Commitment Section */
.page-contact .commitment-section {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-contact .commitment-section h2 {
  color: var(--secondary-color);
}

.page-contact .commitment-section h2::after {
  background: var(--text-color-light);
}

.page-contact .commitment-section h3 {
  color: var(--secondary-color);
}

.page-contact .commitment-section p,
.page-contact .commitment-section li {
  color: var(--text-color-light);
}

.page-contact .commitment-section ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 0;
}

.page-contact .commitment-section li strong {
  color: var(--secondary-color);
}

.page-contact .commitment-section .text-link {
  color: var(--secondary-color);
}

.page-contact .commitment-section .text-link:hover {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-contact .hero-content h1 {
    font-size: 2.2em;
  }
  .page-contact h2 {
    font-size: 1.8em;
  }
  .page-contact .why-contact-section .content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-contact .why-contact-section .content-wrapper.reverse {
    flex-direction: column;
  }
  .page-contact .why-contact-section .image-content {
    order: -1; /* Image above text on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-contact .hero-contact-section {
    padding: 40px 15px;
  }
  .page-contact .hero-image {
    height: 300px;
  }
  .page-contact .hero-content h1 {
    font-size: 1.8em;
  }
  .page-contact .hero-content p {
    font-size: 1em;
  }
  .page-contact .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-contact section {
    padding: 40px 0;
  }
  .page-contact h2 {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-contact h3 {
    font-size: 1.3em;
  }
  .page-contact .channel-grid {
    grid-template-columns: 1fr;
  }
  .page-contact .channel-item {
    padding: 25px;
  }
  .page-contact .faq-question {
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
  .page-contact .faq-question h3 {
    margin-bottom: 8px;
  }
  .page-contact .faq-toggle {
    align-self: flex-end;
    margin-top: -30px;
  }
  .page-contact .faq-answer {
    padding: 0 15px;
  }
  .page-contact .faq-item.active .faq-answer {
    padding: 15px;
  }
  .page-contact .contact-form {
    padding: 30px;
  }
  .page-contact .form-group input,
  .page-contact .form-group textarea {
    width: calc(100% - 20px);
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .page-contact .hero-image {
    height: 250px;
  }
  .page-contact .hero-content h1 {
    font-size: 1.5em;
  }
  .page-contact .hero-content p {
    font-size: 0.9em;
  }
  .page-contact .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-contact h2 {
    font-size: 1.4em;
  }
  .page-contact h3 {
    font-size: 1.2em;
  }
  .page-contact .contact-form {
    padding: 20px;
  }
}