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

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

.page-contact .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFD700, #DC143C);
  color: #fff;
}

.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%;
  margin-bottom: 30px;
}

.page-contact .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-contact .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #fff;
}

.page-contact .hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #eee;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact .cta-button:hover {
  background: #DC143C;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-contact h2 {
  font-size: 2.5em;
  color: #DC143C;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
}

.page-contact h3 {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 15px;
}

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

.page-contact section {
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

.page-contact section:last-of-type {
  border-bottom: none;
}

.page-contact .contact-methods-section {
  background-color: #fff;
}

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

.page-contact .method-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-contact .method-card h3 {
  color: #FFD700;
  margin-top: 0;
}

.page-contact .method-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.page-contact .method-card ul li {
  margin-bottom: 10px;
}

.page-contact .social-link {
  color: #DC143C;
  text-decoration: none;
  font-weight: bold;
}

.page-contact .social-link:hover {
  text-decoration: underline;
}

.page-contact .btn-small {
  display: inline-block;
  padding: 10px 20px;
  background: #DC143C;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact .btn-small:hover {
  background: #a81030;
  transform: translateY(-1px);
}

.page-contact .contact-form-section {
  background-color: #f2f2f2;
}

.page-contact .support-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

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

.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: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
}

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

.page-contact .support-form .cta-button {
  width: auto;
  margin-top: 0;
}

.page-contact .why-contact-section {
  background-color: #fff;
}

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

.page-contact .benefit-item {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.page-contact .benefit-item img {
  max-width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-contact .benefit-item h3 {
  color: #DC143C;
  font-size: 1.5em;
}

.page-contact .faq-section {
  background-color: #f2f2f2;
}

.page-contact .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

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

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

.page-contact .faq-question h3 {
  margin: 0;
  color: #333;
  font-size: 1.1em;
}

.page-contact .faq-toggle {
  font-size: 20px;
  font-weight: bold;
  color: #DC143C;
  transition: transform 0.3s ease;
}

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

.page-contact .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #fcfcfc;
  color: #555;
}

.page-contact .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px;
  border-top: 1px solid #e0e0e0;
}

.page-contact .additional-info-section {
  text-align: center;
  padding-bottom: 60px;
}

.page-contact .additional-info-section p {
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-contact .quick-links {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-contact .btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: #FFD700;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact .btn-secondary:hover {
  background: #DC143C;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-contact .btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: #DC143C;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact .btn-primary:hover {
  background: #a81030;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact .hero-content h1 {
    font-size: 2.8em;
  }
}

@media (max-width: 768px) {
  .page-contact .hero-section {
    padding: 40px 15px;
  }
  .page-contact .hero-content h1 {
    font-size: 2.2em;
  }
  .page-contact .hero-content p {
    font-size: 1em;
  }
  .page-contact .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-contact h2 {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-contact h3 {
    font-size: 1.5em;
  }
  .page-contact .methods-grid, .page-contact .benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-contact .method-card, .page-contact .benefit-item {
    padding: 20px;
  }
  .page-contact .support-form {
    padding: 20px;
  }
  .page-contact .quick-links {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact .btn-secondary, .page-contact .btn-primary {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-contact .hero-content h1 {
    font-size: 1.8em;
  }
  .page-contact .hero-image img {
    border-radius: 4px;
  }
  .page-contact .cta-button {
    font-size: 14px;
    padding: 10px 25px;
  }
  .page-contact h2 {
    font-size: 1.8em;
  }
  .page-contact .faq-question h3 {
    font-size: 1em;
  }
}