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

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

.page-contact-section {
  padding: 60px 0;
  text-align: center;
}

.page-contact-section:nth-of-type(odd) {
  background-color: #2D3748;
}

.page-contact-section-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.page-contact-section-description {
  font-size: 1.2em;
  color: #A0AEC0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-contact-hero {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  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;
}

.page-contact-hero-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-contact-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px;
}

.page-contact-hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-contact-hero-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-contact-card {
  background-color: #1A202C;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

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

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

.page-contact-card p {
  color: #A0AEC0;
  font-size: 1.1em;
  margin-bottom: 25px;
}

.page-contact-card-button {
  display: inline-block;
  padding: 12px 25px;
  background: #FFD700;
  color: #1A202C;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact-card-button:hover {
  background: #E0B400;
  transform: translateY(-2px);
}

/* Contact Form Section */
.page-contact-form-section {
  background-color: #1A202C;
}

.page-contact-form {
  max-width: 700px;
  margin: 40px auto 0;
  background-color: #2D3748;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: left;
}

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

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

.page-contact-form-input,
.page-contact-form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #4A5568;
  border-radius: 8px;
  background-color: #4A5568;
  color: #E0E0E0;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

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

.page-contact-form-input:focus,
.page-contact-form-textarea:focus {
  border-color: #FFD700;
  background-color: #3B455A;
  outline: none;
}

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

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

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

/* FAQ Section */
.page-contact-faq-section {
  background-color: #2D3748;
}

.page-contact-faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.faq-question:hover {
  background: #2D3748;
}

.faq-question h3 {
  color: #FFD700;
  font-size: 1.2em;
  margin: 0;
}

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #1A202C;
  color: #A0AEC0;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 25px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-item.active .faq-answer p {
  margin-bottom: 15px;
}

.page-contact-faq-button {
  display: inline-block;
  padding: 10px 20px;
  background: #FFD700;
  color: #1A202C;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 10px;
}

.page-contact-faq-button:hover {
  background: #E0B400;
  transform: translateY(-2px);
}

/* Why Choose Section */
.page-contact-why-choose {
  background-color: #1A202C;
}

.page-contact-feature-card {
  background-color: #2D3748;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-contact-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

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

.page-contact-feature-card h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-contact-feature-card p {
  color: #A0AEC0;
  font-size: 1em;
}

.page-contact-final-cta {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(90deg, #FFD700, #E0B400);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-contact-final-cta p {
  font-size: 1.5em;
  color: #1A202C;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-contact-final-cta .page-contact-cta-button {
  background: #1A202C;
  color: #FFD700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-contact-hero-title {
    font-size: 2.8em;
  }
  .page-contact-hero-description {
    font-size: 1.1em;
  }
  .page-contact-section-title {
    font-size: 2.5em;
  }
  .page-contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-contact-section {
    padding: 40px 0;
  }
  .page-contact-hero {
    padding: 60px 15px;
  }
  .page-contact-hero-image {
    max-height: 350px;
  }
  .page-contact-hero-title {
    font-size: 2.2em;
  }
  .page-contact-hero-description {
    font-size: 1em;
  }
  .page-contact-section-title {
    font-size: 2em;
  }
  .page-contact-section-description {
    font-size: 1em;
  }
  .page-contact-grid {
    grid-template-columns: 1fr;
  }
  .page-contact-card,
  .page-contact-feature-card {
    padding: 25px;
  }
  .page-contact-card-icon,
  .page-contact-feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-contact-form {
    padding: 30px;
  }
  .page-contact-form-input,
  .page-contact-form-textarea {
    padding: 12px;
  }
  .page-contact-submit-button {
    padding: 15px;
    font-size: 1.1em;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.5em;
  }
  .faq-item.active .faq-answer {
    padding: 20px;
  }
  .page-contact-final-cta p {
    font-size: 1.2em;
  }
  .page-contact-cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-contact-hero-title {
    font-size: 1.8em;
  }
  .page-contact-section-title {
    font-size: 1.8em;
  }
  .page-contact-hero-image {
    max-height: 250px;
  }
  .page-contact-final-cta p {
    font-size: 1em;
  }
}