/* ==== RESET & BASE ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: #f7f9fc;
  color: #222;
  line-height: 1.6;
}

/* ==== HEADER ==== */
header {
  background: #1f3bb3;
  color: #fff;
  padding: 20px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header img {
  max-width: 250px;
  height: auto;
}

header .contact-numbers {
  text-align: right;
}

header .contact-numbers h1 {
  font-size: 18px;
  margin-bottom: 6px;
}

header .contact-numbers p {
  font-size: 22px;
  font-weight: 700;
}

/* ==== NAVIGATION ==== */
nav.top-bar {
  background: #2036b2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.top-bar-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}

.top-bar-menu li {
  margin: 0;
}

.top-bar-menu a {
  display: block;
  padding: 14px 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.top-bar-menu a:hover,
.top-bar-menu .active > a {
  background: #0f236f;
}

/* ==== MAIN CONTENT ==== */
.content-wrapper {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
}

@media (max-width: 900px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }
}

#content {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

#content h1 {
  color: #2036b2;
  margin-bottom: 10px;
}

#content p {
  margin-bottom: 15px;
}

#content table {
  width: 100%;
  border-collapse: collapse;
}

#content td {
  vertical-align: top;
  padding: 8px;
}

/* ==== SIDEBAR ==== */
#asides {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

#asides h1 {
  font-size: 18px;
  color: #2036b2;
  margin-bottom: 10px;
}

#asides p {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.call-us-today {
  background: #2036b2;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 15px;
}

.call-us-today-line-1 {
  font-size: 14px;
  opacity: 0.8;
}

.call-us-today-line-2 {
  font-size: 20px;
  font-weight: 700;
}

/* ==== BUTTONS ==== */
a.button,
button {
  display: inline-block;
  background: #2036b2;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

a.button:hover,
button:hover {
  background: #1a2b8e;
}

/* ==== FOOTER ==== */
footer {
  background: #2036b2;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  margin-top: 40px;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

footer a:hover {
  color: #e2e2e2;
}

/* ==== UTILITIES ==== */
.row::after,
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

iframe {
  border: none;
  border-radius: 8px;
  width: 100%;
  height: 250px;
}