/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* ========================================
   LAYOUT
   ======================================== */
.content {
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
}

/* ========================================
   HEADER
   ======================================== */
.header-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
}

.header-bottom img {
  height: 50px;
  width: auto;
}

/* Contact Info */
.contact-info {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 30px;
  row-gap: 15px;
}

.contact-info li {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #000;
  font-size: 16px;
}

.contact-info a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.contact-info a:hover {
  color: #007cc3;
}

.contact-info span {
  color: #007cc3;
  font-size: 16px;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.main-content {
  position: relative;
  display: flex;
  flex: 1;
  min-height: 0;
  background-image: url('assets/el.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: flex-end;
  align-items: center;
}

.main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #070c15;
  opacity: 0.4;
  z-index: 1;
}

.main-content ul {
  font-family: Poppins, sans-serif;
  position: relative;
  z-index: 2;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.main-content li {
  display: block;
  text-align: right;
  margin-left: auto;
  width: max-content;
  font-size: 24px;
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 3px;
  background-color: #007cc3;
  padding: 8px 14px;
}

/* ========================================
   MEDIA QUERIES
   ======================================== */
@media (max-width: 768px) {
  .header-bottom {
    justify-content: center;
  }

  .contact-info {
    justify-content: center;
    width: 100%;
  }

  .main-content ul {
    gap: 20px;
  }

  .main-content li {
    font-size: 18px;
    letter-spacing: 2px;
    margin-left: auto;
    margin-right: auto;
  }
}
