/* Basic Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Mulish", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header - Background Image Support */
.main-header {
  background: url("images/header-bg.jpg") no-repeat center center/cover;
  background-color: #f4f4f4; /* Fallback */
  padding: 48px 0;

  color: #fff;
  border-bottom: 3px solid #dc0046;
}
.main-header h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
.logo {
  max-height: 80px;
  margin-bottom: 48px;
}
.logo svg {
  display: inline-block;
  width: 96px;
  height: 96px;
}
.title {
  max-width: 300px;
}
.title img {
  max-width: 100%;
}

/* Main Body */
.content-body {
  padding: 102px 0;

  background: #113144;
  color: #fff;
}
.content-body h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 400;
}
.announcement-text {
  font-size: 1.5rem;
  color: #fff;
  max-width: 800px;
}
.content-body a {
  color: #fff;
  text-decoration: underline;
}
.content-body a:hover {
  text-decoration: none;
}

/* Footer - Background Image Support */
.main-footer {
  background: url("images/footer-bg.jpg") no-repeat center center/cover;
  background-color: #222; /* Fallback */
  color: #fff;
  padding: 60px 0;
  border-top: 3px solid #4753a0;
}
.main-footer a {
  color: #fff;
  text-decoration: underline;
}
.main-footer a:hover {
  text-decoration: none;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.footer-logo {
  max-height: 50px;
  margin-bottom: 15px;
}
.footer-locations {
  display: flex;
  gap: 30px;
  flex: 2;
  padding-top: 20px;
}
.office strong {
  display: block;
  margin-bottom: 5px;
}
.footer-socials {
  padding-top: 20px;
}
.footer-socials a {
  display: block;
  color: #fff;
  text-decoration: underline;
  margin-bottom: 8px;
}
.footer-socials .fa-brands {
  margin-right: 12px;
}
.main-footer a:hover {
  text-decoration: none;
}

/* Sub-footer */
.sub-footer {
  background: #4753a0;
  color: #fff;
  padding: 48px 0;
  text-align: center;
  font-size: 0.9rem;
}
.sub-links {
  margin-top: 10px;
}
.sub-links a {
  color: #fff;
  margin: 0 10px;
  text-decoration: underline;
}
.sub-links a:hover {
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
  .footer-locations {
    flex-direction: column;
  }
  .content-body h2 {
    font-size: 2rem;
  }
}
