* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-variation-settings:  "wdth" 100;
}


main {
    width: 95%;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
}

.companyname{
    color: #41794D;
    text-align: center;
    font-size: 32px;
    margin: 0 auto;
    padding-bottom: 4rem;
    width: 100%    
}

.slogan {
    color: #41794D;
    text-align: center;
    font-size: 32px;
    margin: 0 auto;
    padding-bottom: 4rem;
    width: 100%
}

.description {
    padding-bottom: 4rem;
    color: #265A32;
    text-align: center;
    font-size: 20px;
    margin: 0 auto;
    width: 85%;
    max-width: 800px
}


.about-btn {
    background-color: #41794D;
    color: white; 
    padding: 1rem 3rem;
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    width: 100%; 
    max-width: 300px;
    margin: 0 auto;
}

.about-btn:hover {
    background-color: #265A32; 
}

body.background{
    background-color: #ffffff;
}

body {
    margin: 0 auto;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;  
}


.site-footer {
  background-color: #154821;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
}

.footer-content {
  font-size: 16px;
  flex: 1;
  text-align: center;
}

.footer-logo {
  margin-left: 0.1rem;
}

.footer-logo img {
  width: 20vw;
  max-width: 6rem;
  height: auto;
}

.footer-spacer {
  width: 6rem; 
  height: 1px; 
}



.footer-company {
  display: block;
  color: #fff;
  margin-bottom: 0.25rem;
  letter-spacing: 5px;
  font-size: 16px;
}

/* Header container */
header {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
  margin: 0 auto;
}

header > img[alt="Company Logo"] {
    display: block;
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
    height: auto;
    
}

.logo-link {
    position: absolute;
    z-index: 9; 

}

.logo-img {
    width: 8rem;
    height: auto;
    border-radius: 0.25rem; 

}
/* Hide the checkbox */
.menu-toggle {
  display: none;
}

/* Hamburger label */
.hamburger {
    position: absolute;
    top: .3rem; 
    right: .5rem;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.0);
    color: white;
    padding: 0.625rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 0.25rem;
    }
  
 /* Navigation menu container */
.nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    position: fixed;
    top: 0;
    right: -150%;
    width: 35%;
    min-width: 150px;
    max-width: 180px;
    background-color: #083111;
    transition: right 0.5s ease;
    z-index: 30;
}

.nav a:hover {
    background-color: #666
}

.dropbtn:hover {
    background-color: #666
}
/* Close button styles */
.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 11; 
    text-decoration: none;
}

/* Show menu when checkbox is checked */
.menu-toggle:checked ~ .nav {
    right: 0; /* Slide in from the right */
}

/* Links styling */
.nav a {
    color: white;
    text-decoration: none;
    padding: 1rem;
    font-size: 20px;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #444;
}

.nav a:last-child {
    border-bottom: none;
}

/* Dropdown structure */
.dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.services-toggle {
    display: none;
}


.dropbtn {
    background: none;
    color: white;
    border: none;
    padding: 1rem;
    font-size: 20px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    display: block;
}

/* Dropdown content transition */
.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease;
    background-color: #083111;
    width: 100%;
    flex-direction: column;
}


.services-toggle:checked + .dropbtn + .dropdown-content {
    max-height: 100%;
}

/* Dropdown links */
.dropdown-content a {
    padding: 1rem;
    color: white;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #444;
}

.dropdown-content a:last-child {
    border-bottom: none;
}




.nav-contact-btn {
    background-color: #6fdc8c;
    color: #154821;
    border: none;
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    margin-top: auto;
    margin-bottom: 50vh;
    margin-left: 5px;
    margin-right: 5px;
    text-align: center;
    font-weight: bold;
    max-width: 150px;
    align-self: center;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
}
.nav-contact-btn:hover {
    background-color: #41794D;
    color: #fff;
    text-align: center;
}

#form {
  background: #f8fff9;
  margin: 0 auto;
  width: 90%;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
    
  justify-content: center;
}
#form h2 {
  color: #1d4627;
  font-size: 22px;
  margin-bottom: 16px;
}
#form h3 {
  color: #265A32;
  font-size: 20px;
  margin-bottom: 8px;
}
#form p {
  color: #265A32;
  font-size: 16px;
  margin-bottom: 12px;
}

#form fieldset {
  border: 1px solid #b2d8b2;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 8px;
  background: #fff;
}

#form legend {
  font-weight: bold;
  color: #265A32;
  margin-bottom: 8px;
  font-size: 20px;
}

#form label {
  display: block;
  margin-bottom: 4px;
  color: #265A32;
  font-size: 16px;
}

#form input,
#form textarea,
#form select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 8px;
  margin-bottom: 12px;
  border: 1px solid #b2d8b2;
  border-radius: 5px;
  font-size: 16px;
}

#form textarea {
  min-height: 90px;
  resize: vertical;
}

#form input[type="submit"],
#form input[type="reset"] {
  width: auto;
  background: #6fdc8c;
  color: #154821;
  border: none;
  border-radius: 5px;
  padding: 8px 20px;
  font-weight: bold;
  margin-right: 8px;
  cursor: pointer;
  font-size: 16px;
}

#form input[type="submit"]:hover,
#form input[type="reset"]:hover {
  background: #41794D;
  color: #fff;
}

fieldset {
  max-width: 300px;
  text-align: center;
}

.container{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    gap:10px 10px;
}

.container1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center; 
    
}

.box{
    margin: 0 auto;
    max-width: 350px;
    
}
.box1{
    margin: 0 auto;
    max-width: 350px;
}
.box2{
    margin: auto auto;
    max-width: 300px; 
    
}
.city-row {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.city-row label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: normal;
    cursor: pointer;
}
.service {
    font-size: 20px;
    color: #001B06;
}
.servicedes{
    font-size: 16px;
}
.containerser{
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    border: solid 4px;
    border-radius: 25px;
    max-width: 1000px;
    margin: 0 auto;
    
}

.boxser{
    color: #001B06;
    margin: 18px auto;
    max-width: 300px;
    padding: 0.25rem;
}


/* medium screen */
@media screen and (min-width: 768px) {
    .logo-img {
    width: 15rem; 

}
    
    
    .nav {
      max-width: 180px;
        width: 35%;
    }
    .container{
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .box{
        width: 40%;
    }
    
    .container1{
    flex-direction: row;
    flex-flow: wrap;
    
}
    .containerser{
        flex-direction: row;
        flex-flow: wrap;
        
    }
}
/* large screen */
@media screen and (min-width: 992px) {
    .logo-img {
        width: 20rem; 
    }
    .nav {
        width: 15%;
    }
    .description{
        max-width: 950px;
    }
    .box{
        width: 30%;
    }
    box1{
        width: 30%;
    }
    .form{
        width: 950px;
    }
    .container{
        max-width: 992px;
        margin: 0 auto;
    }
}