:root {
  --primary-color: #0A246A; /* Deep Blue */
  --secondary-color: #FFD700; /* Gold */
  --accent-color: #DC3545; /* Red for emphasis */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f7f6;
  --bg-dark: #071a47; /* Slightly darker than primary for contrast */
  --border-color: #e0e0e0;
}

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

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

/* Hero Section */
.page-contact-us .hero-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1A3E8A 100%); /* Gradient with primary color */
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
}

.page-contact-us .hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-contact-us .hero-image {
  width: 100%;
  max-width: 800px; /* Adjust size for visual balance */
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

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

.page-contact-us .hero-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-contact-us .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-contact-us .cta-button:hover {
  background: #FFEB3B; /* Lighter gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Sections General */
.page-contact-us section {
  padding: 60px 0;
  text-align: center;
}

.page-contact-us section:nth-of-type(even) {
  background-color: var(--bg-light);
}

.page-contact-us h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: var(--primary-color);
  font-weight: bold;
}

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

.page-contact-us p {
  font-size: 1.1em;
  margin-bottom: 15px;
}

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

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

.page-contact-us .contact-card {
  background: var(--text-light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-contact-us .contact-icon {
  width: 150px; /* Increased size for content image, not icon */
  height: 150px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}

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