:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f5f5f5;
  --background-dark: #222222;
  --border-color: #e0e0e0;
}

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

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

/* Hero Section */
.page-contact .hero-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-contact .hero-section p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

.page-contact .hero-image {
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-contact .hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

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

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

/* General Section Styling */
.page-contact section {
  padding: 60px 0;
}

.page-contact section:nth-child(even) {
  background-color: var(--background-light);
}

.page-contact section:nth-child(odd) {
  background-color: #ffffff;
}

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

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

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

.page-contact p {
  margin-bottom: 15px;
  color: var(--text-dark);
}

/* Contact Methods Section */
.page-contact .contact-methods-section {
  background-color: var(--background-light);
}

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

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

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

.page-contact .method-card h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-contact .method-image {
  width: 100%;
  max-width: 250px;
  height: 180px;
  margin: 0 auto 20px auto;
  overflow: hidden;
  border-radius: 8px;
}

.page-contact .method-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.page-contact .contact-info a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-contact .contact-info a:hover {
  color: var(--primary-color);
}

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

.page-contact .contact-button:hover {
  background-color: #a30000; /* Slightly darker red */
}

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

.page-contact .form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.page-contact .form-image {
  flex: 1 1 400px;
  max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-contact .form-image img {
  width: 100%;
  height: auto;
  display: block;
}

.page-contact .contact-form {
  flex: 1 1 400px;
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.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 select,
.page-contact .form-group textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1em;
  background-color: #ffffff;
  color: var(--text-dark);
}

.page-contact .form-group textarea {
  resize: vertical;
}

.page-contact .submit-button {
  width: 100%;
  padding: 15px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact .submit-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
}

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

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

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

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

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

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

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
  background: var(--background-light);
  color: var(--text-dark);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
}

.faq-answer p {
  margin: 0;
}

/* Commitment Section */
.page-contact .commitment-section {
  background-color: #ffffff;
}

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

.page-contact .commitment-item {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-contact .commitment-item h3 {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-contact .commitment-item p {
  color: var(--text-dark);
}

/* Call to Action Section */
.page-contact .call-to-action-section {
  background: linear-gradient(135deg, var(--secondary-color), #a30000);
  color: var(--text-light);
  text-align: center;
  padding: 80px 20px;
}

.page-contact .call-to-action-section h2 {
  color: var(--text-light);
  margin-bottom: 30px;
}

.page-contact .call-to-action-section h2::after {
  background-color: var(--primary-color);
}

.page-contact .call-to-action-section p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-contact .cta-buttons-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-contact .large-cta {
  padding: 18px 35px;
  font-size: 1.2em;
  min-width: 250px;
}

.page-contact .secondary-cta {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

.page-contact .secondary-cta:hover {
  background-color: #e6c200; /* Slightly darker gold */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-contact .hero-section h1 {
    font-size: 2.2em;
  }
  .page-contact h2 {
    font-size: 1.8em;
  }
  .page-contact h3 {
    font-size: 1.4em;
  }
  .page-contact .form-wrapper {
    flex-direction: column;
  }
  .page-contact .form-image, .page-contact .contact-form {
    max-width: 100%;
  }
  .page-contact .method-grid {
    grid-template-columns: 1fr;
  }
  .page-contact .cta-buttons-group {
    flex-direction: column;
  }
  .page-contact .large-cta {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-contact .hero-section {
    padding: 40px 15px;
  }
  .page-contact .hero-section h1 {
    font-size: 1.8em;
  }
  .page-contact .hero-section p {
    font-size: 1em;
  }
  .page-contact section {
    padding: 40px 0;
  }
  .page-contact h2 {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-contact .method-card {
    padding: 20px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-contact .call-to-action-section {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .page-contact .hero-section h1 {
    font-size: 1.5em;
  }
  .page-contact .cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-contact .contact-form {
    padding: 20px;
  }
  .page-contact .submit-button {
    padding: 12px;
    font-size: 1em;
  }
  .page-contact .large-cta {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}