html {
  font-size: 14px;
  height: 100%; /* Ensure html takes full height */
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  min-height: 100%; /* Ensure body takes full height */
  display: flex;
  flex-direction: column; /* Stack header, main, footer vertically */
  background-color: #f8f9fa; /* Moved from inline style */
  font-family: 'Montserrat', 'Roboto', sans-serif; /* Apply Montserrat font with Roboto fallback */
}

main {
  flex: 1; /* Make main content area take up available space */
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-details{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-details p{
    margin: 0;
    padding: 0;
    line-height: 1;
}

@media (min-width: 768px) {
    .contact-details {
        flex-direction: row;
        gap: 10px; /* Add some space between items */
    }
}

.landing-container {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.landing-container h1 {
    margin-bottom: 30px;
    color: #343a40;
}
.landing-container .btn {
    margin: 10px;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
}