/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f2f2f2;
  padding: 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #0F75BC;
}

.contact {
  font-size: 16px;
  color: #555;
}

/* Container Styles */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90vh;
}

.heading {
  font-size: 48px;
  font-weight: bold;
  color: #0F75BC;
  margin-top: 30px;
  margin-bottom: 10px;
  padding: 10px;
      text-align: center;

}

.description {
  font-size: 18px;
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: #0F75BC;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 10px;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #01568c;
}

/* Footer Styles */
footer {
  background-color: #0F75BC;
  color: #fff;
  padding: 30px;
  margin-top: 50px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.column {
  flex: 1 1 30%;
  margin: 20px;
}

.column h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.column p {
  font-size: 16px;
  line-height: 1.5;
  color: #ccc;
}

.column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.column li {
  margin-bottom: 10px;
}

.social-icons li {
  display: inline-block;
  margin-right: 10px;
}

.social-icons li:last-child {
  margin-right: 0;
}

.social-icons a {
  color: #fff;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #DCDFD1;
}

.column a {
  color: #ffffff;
  text-decoration: none;
}

.column a:hover {
  color: #dcdfd1;
}

#countdown-timer {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #0F75BC;
  padding: 1rem;
  border-radius: 0.5rem;
}

#countdown-timer span {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  font-size: 1.5rem;
  margin: 0.5rem;
  border-radius: 50%;
  background-color: #fff;
  color: #0F75BC;
  text-align: center;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
