body {
  font-family: 'Karla', sans-serif;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #ffffff;
  margin: 0;
  position: relative;
  display: flex;
  justify-content: center; 
  align-items: center; 
  height: 100vh; 
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3); 
  z-index: -1;
}

/* Header */
.header-container {
  width: 100%;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  padding: 0 20px;
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar-brand img {
  height: auto;
  max-height: 120px;
  max-width: 100%;
  justify-content: center;
}
.content-container {
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 700px; 
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1; 
}

.page-title {
  font-size: 70px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.page-description {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: left;
}
.page-description-2 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.footer-social-links {
  display: flex; 
  justify-content: center; 
  align-items: center;
  font-size: 45px;
}

.footer-social-links .social-link {
  display: flex;
  justify-content: center;
  align-items: center; 
  line-height: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%; 
  background-color: #ffffff;
  color: #000000; 
  margin-right: 15px; 
  padding: 10px; 
  transition: all 0.3s ease-in-out;
}

.footer-social-links .social-link:last-child {
  margin-right: 0;
}

.footer-social-links .social-link:hover {
  text-decoration: none;
  background-color: #000000;
  color: #ffffff; 
}
@media (max-width: 767px) {
  .footer-social-links {
    flex-direction: column; 
  }

  .footer-social-links .social-link {
    width: 60px; 
    height: 60px;
    margin-bottom: 10px;
    margin-right: 0; 
  }
  
  .page-title {
    font-size: 35px;
  }

  .page-description {
    font-size: 16px;
  }
  .page-description-2 {
    font-size: 24px;
  }
  .navbar-brand img {
  height: auto;
  max-height: 160px;
  max-width: 100%;
  justify-content: center;
  }
}
