.page-contact {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #1A1A1A;
  line-height: 1.6;
}

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

/* Hero Section */
.page-contact-hero {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 20px;
}

.page-contact-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-contact-hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  max-width: 800px;
}

.page-contact-hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: bold;
}

.page-contact-hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-contact-cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-contact-cta-button:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Section Titles & Descriptions */
.page-contact-section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact-section-description {
  font-size: 1.1em;
  color: #D0D0D0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

/* Contact Methods Section */
.page-contact-methods {
  background-color: #2A2A2A;
  padding: 60px 0;
}

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

.page-contact-method-item {
  background-color: #1A1A1A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
}

.page-contact-method-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.page-contact-method-icon {
  width: 150px; /* Increased size */
  height: 150px; /* Increased size */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-contact-method-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-contact-method-text {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 20px;
}

.page-contact-email-address, .page-contact-phone-number {
  font-size: 1.1em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-contact-email-link, .page-contact-phone-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-contact-email-link:hover, .page-contact-phone-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-contact-method-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-contact-method-button:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

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

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

.page-contact-social-links a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact-social-links a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* Contact Form Section */
.page-contact-form-section {
  background-color: #1A1A1A;
  padding: 60px 0;
}

.page-contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.page-contact-form-image-wrapper {
  text-align: center;
}

.page-contact-form-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-contact-form {
  background-color: #2A2A2A;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #333;
}

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

.page-contact-form-group label {
  display: block;
  margin-bottom: 8px;
  color: #FFD700;
  font-weight: bold;
  font-size: 1.1em;
}

.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;
  border: 1px solid #555;
  border-radius: 5px;
  background-color: #3A3A3A;
  color: #E0E0E0;
  font-size: 1em;
}

.page-contact-form-group input::placeholder,
.page-contact-form-group textarea::placeholder {
  color: #888;
}

.page-contact-form-group input:focus,
.page-contact-form-group textarea:focus {
  border-color: #FFD700;
  outline: none;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-contact-submit-button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #FFD700;
  color: #1A1A1A;
  border: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-contact-submit-button:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* FAQ Section */
.page-contact-faq {
  background-color: #2A2A2A;
  padding: 60px 0;
}

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

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #1A1A1A;
  color: #FFD700;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #333333;
}

.faq-question h3 {
  margin: 0;
  color: #FFD700;
  font-size: 1.2em;
  flex-grow: 1;
  text-align: left;
}

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #3A3A3A;
  color: #D0D0D0;
  font-size: 1em;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 25px;
  border-top: 1px solid #444;
}

.faq-answer p {
  margin: 0;
}

.faq-answer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Commitment Section */
.page-contact-commitment {
  background-color: #1A1A1A;
  padding: 60px 0 80px 0;
  text-align: center;
}

.page-contact-commitment-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact-commitment-list li {
  font-size: 1.2em;
  color: #FFFFFF;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  max-width: 700px;
  text-align: left;
}

.page-contact-commitment-icon {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
  font-weight: bold;
}

.page-contact-final-cta {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 50px;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-contact-commitment .primary-button {
  padding: 18px 45px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact-hero-title {
    font-size: 3em;
  }
  .page-contact-hero-description {
    font-size: 1.1em;
  }
  .page-contact-section-title {
    font-size: 2em;
  }
  .page-contact-method-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-contact-form-grid {
    grid-template-columns: 1fr;
  }
  .page-contact-form-image-wrapper {
    order: -1; /* Move image above form on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-contact-hero {
    height: 400px;
  }
  .page-contact-hero-title {
    font-size: 2.5em;
  }
  .page-contact-hero-description {
    font-size: 1em;
  }
  .page-contact-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact-section-title {
    font-size: 1.8em;
  }
  .page-contact-section-description {
    font-size: 0.95em;
  }
  .page-contact-method-icon {
    width: 120px;
    height: 120px;
  }
  .page-contact-method-title {
    font-size: 1.5em;
  }
  .faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.5em;
  }
  .faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }
  .page-contact-commitment-list li {
    font-size: 1.1em;
  }
  .page-contact-final-cta {
    font-size: 1.3em;
  }
  .page-contact-commitment .primary-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-contact-hero {
    height: 350px;
    padding: 0 15px;
  }
  .page-contact-hero-title {
    font-size: 2em;
  }
  .page-contact-hero-description {
    font-size: 0.9em;
  }
  .page-contact-container {
    padding: 15px;
  }
  .page-contact-method-grid {
    grid-template-columns: 1fr;
  }
  .page-contact-form-group input, .page-contact-form-group textarea {
    width: calc(100% - 10px);
    padding: 10px;
  }
  .page-contact-form {
    padding: 25px;
  }
  .faq-question {
    padding: 12px 15px;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 1.3em;
  }
  .faq-answer {
    padding: 12px 15px;
  }
}