/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: auto;
  padding: 2rem 0;
}

header {
  background-color: #002244;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header .date {
  font-size: 0.95rem;
  color: #ccc;
}

main section {
  margin-bottom: 2.5rem;
}

h2 {
  color: #002244;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

ul {
  margin: 1rem 0 1rem 1.5rem;
  list-style-type: disc;
}

p {
  margin-bottom: 1rem;
}

.contact {
  background-color: #e6f2ff;
  padding: 1.5rem;
  border-left: 4px solid #005baa;
}

footer {
  background-color: #002244;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}



/* ========================= */
/*       FOOTER SECTION      */
/* ========================= */

.footer-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0e0e10;
  padding: 40px 60px;
  color: white;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid #444;
}

.footer-column.footer-left {
  text-align: left;
}

.footer-column.footer-right {
  text-align: right;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

/* LEFT COLUMN */
.footer-left h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.4;
}

/* CENTER COLUMN */
.footer-center img {
  object-fit: contain;
  width: 25%;
}

/* RIGHT COLUMN */
.footer-right a {
  display: block;
  margin-bottom: 8px;
  color: #00ffff;
  text-decoration: none;
  font-size: 1rem;
}

.footer-right a:hover {
  text-decoration: underline;
}

.footer-right p {
  font-size: 0.9rem;
  color: #888;
  margin-top: 10px;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .footer-section {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-right a {
    display: inline-block;
    margin: 0 10px 10px;
  }
  .footer-column.footer-left {
    text-align: center;
}
.footer-column.footer-right {
    text-align: center;
}
}
