:root {
  --primary-color: #003366;
  --secondary-color: #FFCC00;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #f8f8f8;
  --background-dark: #002244;
  --border-color: #e0e0e0;
}

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

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

.page-contact h1, .page-contact h2, .page-contact h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact h1 {
  font-size: 2.8em;
  text-align: center;
  color: var(--text-light);
}

.page-contact h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-contact h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

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

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

.page-contact a:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

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

.page-contact .cta-button:hover {
  background-color: darken(var(--secondary-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.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: var(--primary-color);
}

.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: var(--text-light);
}

.page-contact .hero-content p {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}

/* Intro Section */
.page-contact .intro-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

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

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

.page-contact .method-card {
  background: var(--text-light);
  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 .method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-contact .method-card h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-contact .method-card p {
  font-size: 0.95em;
  color: var(--text-dark);
  margin-bottom: 10px;
}

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

.page-contact .method-card .btn-contact:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
}

/* Contact Form Section */
.page-contact .contact-form-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-contact .contact-form {
  max-width: 700px;
  margin: 40px auto 0 auto;
  background: var(--text-light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 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(--primary-color);
}

.page-contact .form-group input[type="text"],
.page-contact .form-group input[type="email"],
.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-dark);
  transition: border-color 0.3s ease;
}

.page-contact .form-group input:focus,
.page-contact .form-group textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
}

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

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

.page-contact .btn-submit:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

/* Tips Section */
.page-contact .tips-section {
  padding: 60px 0;
  background-color: #f0f5f8;
}

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

.page-contact .tip-item {
  background: var(--text-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-contact .tip-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-contact .tip-item h3 {
  color: var(--primary-color);
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-contact .tip-item p {
  font-size: 0.9em;
  color: var(--text-dark);
}

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

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

.page-contact .commitment-section p {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.page-contact .commitment-section ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 30px;
}

.page-contact .commitment-section ul li {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 5px;
  font-size: 1.05em;
  color: var(--text-light);
}

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

.page-contact .commitment-section img {
  display: block;
  margin: 0 auto 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* CTA End Section */
.page-contact .cta-end-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-contact .cta-end-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-contact .cta-end-section p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-contact .cta-end-section .small-text {
  font-size: 0.9em;
  margin-top: 20px;
  color: var(--text-dark);
}

/* Copyright Info */
.page-contact .copyright-info {
  text-align: center;
  padding: 20px;
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9em;
}

.page-contact .copyright-info a {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-contact h1 {
    font-size: 2.2em;
  }
  .page-contact h2 {
    font-size: 1.8em;
  }
  .page-contact .hero-content p {
    font-size: 1em;
  }
  .page-contact .methods-grid, .page-contact .tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-contact .container {
    padding: 15px;
  }
  .page-contact h1 {
    font-size: 1.8em;
  }
  .page-contact h2 {
    font-size: 1.6em;
  }
  .page-contact .hero-section, .page-contact .intro-section, .page-contact .contact-methods-section, .page-contact .contact-form-section, .page-contact .tips-section, .page-contact .commitment-section, .page-contact .cta-end-section {
    padding: 40px 0;
  }
  .page-contact .methods-grid, .page-contact .tips-grid {
    grid-template-columns: 1fr;
  }
  .page-contact .contact-form {
    padding: 25px;
  }
  .page-contact .method-card img, .page-contact .tip-item img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .page-contact .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact .hero-content p {
    font-size: 0.95em;
  }
  .page-contact .btn-submit {
    font-size: 1em;
    padding: 12px 20px;
  }
}