/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
:root {
  --default-font: "Roboto", system-ui, -apple-system, sans-serif;
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
  --background-color_for_header: #21c9df42;
  --background-color: #ffffff;
  --default-color: #0095a9;
  --heading-color: #357b85;
  --accent-color: #0095a9;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  margin: 0;
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  text-align: center;
}

.description {
  font-size: 20px;
  font-weight: 350;
  color: #357b85;
  margin-top: 40px;
  max-width: 800px;
  display: block;
}

.main_text {
  font-weight: 400;
}
.main_image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin-top: 20px;
}

/*--------------------------------------------------------------
# Header & Navigation (Fixed for Mobile)
--------------------------------------------------------------*/
.header {
  background-color: var(--background-color_for_header);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 149, 169, 0.15);
  text-decoration: none;
}

.header .logo img {
  font-size: 20px;
  margin: 0;
  font-weight: 300;
  color: #357b85;
  text-decoration: none !important;
  border: none;          
  display: inline-block;

}

.header .logo:hover h1 {
  text-decoration: none !important;
  color: #357b85; 
}


/* Force Call Us to show on mobile without hamburger menu */
@media (max-width: 1199px) {
  .mobile-nav-toggle { display: none !important; }
  
  .navmenu ul {
    display: flex !important;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .header .logo h1 {
    font-size: 12px !important; /* Smaller text to fit on one line */
    max-width: 150px;
  }
  
  .navmenu a {
    font-size: 13px !important;
    white-space: nowrap;
  }
}

.navmenu ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navmenu a {
  color: var(--accent-color);
  font-family: var(--nav-font);
  text-decoration: none;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Footer (Restored)
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #f6fafd; /* light-background */
  font-size: 14px;
  padding: 0; /* Remove padding because copyright div handles it */
  position: relative;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-align: center;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 4px;
  font-size: 13px;
  color: var(--contrast-color);
}