/*
 * Globals
 */
 @font-face {
  font-family: 'Avenir LT Std';
  src: url('../fonts/AvenirLTStd-Roman.eot');
  src: url('../fonts/AvenirLTStd-Romand41d.eot?#iefix') format('embedded-opentype'),
      url('../fonts/AvenirLTStd-Roman.woff2') format('woff2'),
      url('../fonts/AvenirLTStd-Roman.woff') format('woff'),
      url('../fonts/AvenirLTStd-Roman.ttf') format('truetype'),
      url('../fonts/AvenirLTStd-Roman.svg#AvenirLTStd-Roman') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
}

body {
  font-family: 'Avenir LT Std';
  color: #231f20;
  /* text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5); */
}

.content-container {
  max-width: 37em;
}
main {
  position: relative;
}
main .logo {
  padding-bottom: 30px;
}
main .intro {
  font-size: 24px;
  padding-bottom: 55px;
}
p.accent {
  color: #008357;
}
main > .hr {
  height: 2px;
  background: #008357;
  margin: 55px auto;
}
.address {
  font-size: 15px;
}
.address > img {
  max-height: 55px;
  margin-bottom: 15px;
}
.address a {
  text-decoration: none;
  color: #231f20;
}
@media (max-width: 991.98px) {
  .content-container {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  main .logo {
    padding-bottom: 30px;
  }
  main .intro {
    font-size: 16px;
    padding-bottom: 35px;
  }
  main > .hr {
    margin: 35px auto;
  }
  .address {
    font-size: 14px;
  }
}
ul{
  list-style:inside
}
/* Logo Responsiveness */
.logo-responsive {
  display: block; / *Ensures the image behaves like a block element for better control */
  max-width: 100%; /* Prevents the logo from overflowing its container*/
  height: auto; /* Maintains the aspect ratio*/
  margin: 0 auto; /* Centers the logo horizontally if it's within a container*/
}

/* Optional: Add a container for better alignment and padding*/
.logo-container {
  text-align: center; /* Centers the logo inside the container*/
  padding: 10px; /* Adds some breathing space around the logo*/
}

@media (max-width: 768px) {
  .logo-responsive {
    max-width: 80%; /* Adjust the size for tablets and smaller screens*/
  }
}

@media (max-width: 576px) {
  .logo-responsive {
    max-width: 60%; /* Further adjust the size for mobile devices*/
  }
}

/* General Styling for the Coming Soon Content */
.coming-soon-content {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 20px;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.coming-soon-content .section h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

.coming-soon-content .content h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #444;
  margin-top: 20px;
}

.coming-soon-content .content p {
  margin: 10px 0;
  font-size: 1rem;
  text-align: justify;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .coming-soon-content {
    margin: 10px;
    padding: 15px;
  }

  .coming-soon-content .section h1 {
    font-size: 1.5rem;
  }

  .coming-soon-content .content h2 {
    font-size: 1.2rem;
  }

  .coming-soon-content .content p {
    font-size: 0.95rem;
  }
}
