.contact-page {
    background: #f4f6f9;
}
.container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}


/* Emergency Banner */
.emergency-banner {
    background: #dee038;
    color: white;
    padding: 15px 0;
}
  .emergency-icon {
  color: #e40a24;
  font-size: 2em;
  }
.emergency-banner .container {
    display: flex;
    align-items: center;
    gap: 25px;
}
.emergency-banner h3 {
color: #e40a24;
font-size: 1.5em;
}
.container p {
color: #001947;
font-size: 1.1em;
margin: 0;
}
  .main-column p {
  margin-bottom: 10px;
  }
/* Layout */
.page-content {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 40px;
    padding: 60px 0;
}


/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-bottom: 50px;
}
.contact-card {
background: #fff;
padding: 15px;
border-radius: 12px;
box-shadow: 0 3px 15px rgba(0,0,0,.08);
text-align: center;
}
  .contact-card h3 {
  font-size: 1em;
  color: #003aa8;
  text-transform: uppercase;
  margin-bottom: 15px;
  }
  .contact-card p {
  font-size: .9em;
  color: #575757;
  }
  .phone {
  color: #575757;
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 10px;
  }


/* Section Title */
.section-title {
margin-bottom: 30px;
color: #dee038;
font-size: 1.4em;
padding: 6px;
background: #001847;
border-radius: 8px;
}


/* Department Cards */
.department-grid {
display: grid;
grid-template-columns: repeat(2,1fr);
gap: 25px;
}
.department-card {
background: #fff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 3px 15px rgba(0,0,0,.08);
}
  .department-card h3 {
  font-size: 1em;
  color: #003aa8;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 15px;
  }
  .department-card p {
  margin-bottom: 15px;
  font-size: .9em;
  color: #575757;
  }
  .department-card p.occupant {
  text-align: center;
  margin-bottom: 15px;
  font-size: .9em;
  color: #575757;
  }

/* Sidebar */

.sidebar-box {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,.08);
}
  .sidebar-box h3 {
  color: #003aa8;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  }
  .sidebar-box p {
  font-size: .9em;
  color: #575757;
  }
  .emergency-contact {
      background: #001847;
      color: white;
  }
  .emergency-contact h3 {
  font-size: 1.2em;
  text-align: center;
  color: #dee038;
  }
  .emergency-contact p {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  color: white;
  text-decoration: none;
  font-weight: 400;
  }
  .large-phone {
    font-family: "RobotoB", sans-serif;
    font-size: 1.4em;
    color: #dee038;
    text-decoration: none;
    font-weight: 400;
    margin-top: 20px;
    text-align: center;
  }
  .large-phone a[href^="tel:"]:link, .large-phone a[href^="tel:"]:visited {
  font-family: "RobotoB", sans-serif;
  font-size: 1em;
  color: #dee038;
  text-decoration: none;
  font-weight: 400;
  }
  .large-phone a[href^="tel:"]:active, .large-phone a[href^="tel:"]:hover {
  color: #f2c802;
  transition: all 0.75s;
  }


/* Responsive */
@media (max-width: 1100px) {
  .page-content {
  grid-template-columns: 1fr;
  }
  .emergency-banner .container {
  gap: 0;
  }
  .emergency-icon {
  font-size: 1.7em;
  }
  .contact-cards, .department-grid {
  grid-template-columns: 1fr;
  }
  .contact-card h3 {
  font-size: 1em;
  margin-bottom: 6px;
  }
  .contact-card p {
  font-size: 1em;
  color: #575757;
  }
    .phone {
    font-size: 1.1em;
    margin-bottom: 5px;
    }
  .department-card h3 {
  font-size: 1em;
  margin-bottom: 6px;
  }
  .department-card p {
  margin-bottom: 6px;
  font-size: 1em;
  text-align: center;
  }
  .department-card p.occupant {
  margin-bottom: 6px;
  font-size: 1em;
  }
  .sidebar-box h3 {
  margin-bottom: 10px;
  }
  .sidebar-box p {
  font-size: 1em;
  margin-bottom: 5px;
  }
  .emergency-contact p {
  text-align: center;
  }
}
@media (max-width: 768px) {
  .emergency-banner .container {
  flex-direction: column;
  text-align: center;
  }
  .page-content {
  padding: 20px 0;
  }
}