
body{
  font-family: 'Open Sans', sans-serif;
  background-color: #f0f0f0;
  /* #4c5b6b
  #f9f9f9

  */
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  background-color: #f8fafc;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  margin-top: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  overflow-x: hidden;
}
nav{
  display:flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8fafc;
  position:sticky;
  top:0;
  z-index: 999;
}
ul{
    list-style: none;
    display: flex;
    gap: 20px;
}
.right-side{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.icons{
    height: 70px;
    width:auto;
    object-fit:contain;
    margin:30px;
}
.icons:hover{
    transform: scale(1.1);
    transition: transform 0.3s ease;
    
}
.left-side{
    height:150px;
    width:auto;
    display: flex;
    flex-direction: row;
}
.left-side img{
  height:150px;
  width:auto;
  object-fit: contain;
}
.hero {
  height: 60vh;
  background: 
    linear-gradient(rgba(10, 10, 10, 0.5), rgba(31, 20, 20, 0.5)), 
    url('./images/pexels-vasilis-karkalas-155349971-14782445.jpg') top/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding:160px 20px;
} 
.hero h1 {
  font-size: 3.5rem;
  font-weight:700;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.hero-button {
  background-color: #FF6600;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.hero-button:hover {
  background-color: #cc5200;
}
.middle-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}
.middle-section h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 1.2px;
  color: #ff6600;
  text-transform: uppercase;
  margin-bottom: 40px;
}
/*quality landscape section home page */
.home-intro {
  
  padding: 4rem 1.5rem;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.intro-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
}

.intro-text {
  flex: 1;
  min-width: 280px;
}

.intro-text h2 {
  font-size: 3rem;
  color: black;
  margin-bottom: 1rem;
}

.intro-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

.intro-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.intro-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  height: auto;
}
/*about*/
.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
  padding: 40px;
  background-color: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}


/* Services Overview */
.container-service {
  padding: 60px 20px;
  background-color: #f9f9f9;
}
/* Wrapper */
.service-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
/* Heading */
.service-service h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 1.5px; /* Our services text */
  color: #ff6600; 
  text-transform: uppercase;
  margin: 0 auto 20px auto;
  position: relative;
  text-align: center;
  margin-bottom: 100px;
}
/* Service Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.card {
  border-radius: 16px;
  padding: 24px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.3s ease;
  overflow: hidden;
  background-color: #F9F9F9;
  /*peach-#FFF3e0
  light coral-#FFE9E0
  pale beige or cream-#FFF9F3
  warm gray-#F9F9F9
  */
}
.card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
  text-align: center;
  margin:0 auto;
  display:block;
}

.card h2 {
  font-size: 1.5rem;
  margin: 10px 0 4px;
  color: #556B2F;
  font-family: 'Poppins', sans-serif;
}

.card h3 {
  font-size: 1rem;
  font-weight: 500;
  color:#FFA500;
  /*more color
  #E94E1B
  */
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.card p {
  font-size: 0.95rem;
  color:#333333;
  font-family: 'Poppins', sans-serif;
}

.card:hover {
  background-color: #FFF3e0;
  /*#FFE9e0*/
  transform: translateY(-8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}
/*gallery*/
.container {
  padding: 2rem;
}
.slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 2rem auto;
}
.slider-wrapper h1{
  /*Our work text*/
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 1.5px;
  color: #ff6600;
  text-transform: uppercase;
  margin: 0 auto 20px auto;
  position: relative;
  text-align: center;
  margin-bottom: 100px;
}
.slider-wrapper h1::after{
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px; 
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background-color: #ff6600;
  border-radius: 2px;
}
.slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: 0.5rem;
  -ms-overflow-style: none;  
  scrollbar-width: none;     
}

.slider::-webkit-scrollbar {
  display: none; 
}

.slider > div {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.slider img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0.5rem;
}
.slider-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.slider-nav a {
  width: 12px;
  height: 12px;
  background: orange;
  opacity: 0.9;
  border-radius: 50%;
  display: inline-block;
  transition: opacity 0.3s ease;
}
.slider-nav a:hover {
  opacity: 1;
}
/*gallgery */
.gall2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem; 
  padding: 2rem;
  background-color: #f5f5f5; 
}
.gall2 img {
  width: 100%;
  max-width: 400px; 
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  border: none;
  cursor: pointer;
}
.gall2 img:hover {
  filter: brightness(85%);
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}
#testimonials{
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin: 0px;
  padding: 0px;
  font-family: poppins;
  box-sizing: border-box;
  text-decoration: none;
}
.testimonial-heading{
  letter-spacing: 1px;
  margin:30px 0px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.testimonial-heading h1{
  font-family: poppins;
  font-size: 3.2rem;
  font-weight: 500;
  background-color: #202020;
  color:#ffffff;
  padding: 10px 20px;
}
.tesimonial-heading span{
  font-size: 2.3rem;
  color:#252525;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: poppins;
}
.testimonial-box-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width:100%;
}
.testimonial-box{
    width: 800px;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.1);
    background-color: #f9f9f9;
    padding: 20px;
    margin: 10px;
    cursor: pointer;
}
.name-user{
    display: flex;
    flex-direction: column;
}
.name-user strong{
    color: #3d3d3d;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
.name-user span{
    color: #979797;
    font-size: 0.8rem;
}
.review-img{
    width: 200px;
    height: auto;
    padding: 0px;
    margin-right: 160px;
}
.box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.client-comment p{
    font-size: 0.9rem;
    color: #4b4b4b;
}

.testimonial-box:hover {
    transform: translateY(-10px);
    transition: all ease 0.3s;
}

/* contact form */
.star-contact {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.contact {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9f9f9;
}

/* Form Container */
.contact form {
  width: 700px;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Form Heading */
.contact form h1 {
  width: 100%;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 25px;
  border-bottom: 2px solid #f57c00;
  padding-bottom: 10px;
}

/* Input Fields */
.contact form input[type="text"],
.contact form input[type="email"] {
  width: 48%;
  height: 50px;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #ccc;
  margin-bottom: 20px;
  background: transparent;
  color: #333;
}

.contact form input::placeholder {
  color: #999;
}

/* Full-width input for email or message if needed */
.contact form #email,
.contact form #mobile {
  width: 48%;
}

/* Textarea */
.contact form label {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #555;
}

.contact form textarea {
  width: 100%;
  min-height: 120px;
  padding: 12px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
  margin-bottom: 20px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  background: #f9f9f9;
  color: #333;
}

.contact form textarea:focus {
  border-color: #f57c00;
  box-shadow: 0 0 5px rgba(245, 124, 0, 0.3);
  background: #fff;
}
/* Submit Button Centered */
.submit-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

#button {
  background: #f57c00;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  margin-top: 30px;
}

#button:hover {
  background: #e65100;
}

.footer {
  background-color: #1a242f;
  color: #d6d6d6;
  padding: 40px 10%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-section {
  min-width: 180px;
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.1rem;
}

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

.footer-section li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-bottom {
  font-size: 0.85rem;
  color: #888;
  margin-top: 10px;
}
.footer-content img{
  width: 100px;
}

/* SERVICE PAGE */
#service-page-hero {
  background-image:linear-gradient(rgba(141, 141, 141, 0.4), rgba(3, 2, 2, 0.945)), url('./images/weedwhacker.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Contact Page */
.contact-wrapper-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 40px;
  max-width: 1100px;
  margin: 0 auto;

}
#hero-contact{
  height: 60vh;
   background-image: 
    linear-gradient(rgba(10, 10, 10, 0.5), rgba(31, 20, 20, 0.5)),
    url("./images/IMG_8760.jpeg");
  background-position: center center; 
}
/* Office Hours box */
.office-hours-horizontal {
  flex: 1 1 300px;
  background: #f8f8f8;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Contact form container */
.contact-page {
  width:600px;
  padding: 90px 25px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.contact-page form {
  display: flex;
  flex-direction: column;
}

.contact-page h1 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  color: #1a242f;
}

.contact-page input[type="text"],
.contact-page input[type="email"],
.contact-page input[type="file"],
.contact-page textarea {
  padding: 12px 15px;
  margin-bottom: 18px;
  border: 1.8px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-page input[type="text"]:focus,
.contact-page input[type="email"]:focus,
.contact-page textarea:focus {
  outline: none;
  border-color: #333; 
  box-shadow: 0 0 5px #FF5722;
}

.contact-page textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.contact-page fieldset {
  border: 1.5px solid #bbb;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 25px;
}

.contact-page fieldset legend {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  padding: 0 8px;
}

.contact-page label {
  font-weight: 500;
  font-size: 0.95rem;
  color: #444;
  cursor: pointer;
}

.contact-page label input[type="checkbox"] {
  margin-right: 8px;
  cursor: pointer;
  transform: scale(1.1);
  vertical-align: middle;
}

.contact-page h4 {
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
}


/* Office Hours box */
.office-hours-horizontal { 
  background: #f8f8f8;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.icon-box i {
  font-size: 2rem;
  color: #FF5722;
  margin-bottom: 10px;
}

.office-info h2 {
  margin-top: 0;
}

.closed {
  color: #888;
}

#button:hover {
  background-color: #e64a19;
}

/*About Page */

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
#about-orange-img{
  height:auto;
  max-width: 150px;
}
.about-section{
  padding:4rem 1.5rem;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
  color:#333;
}
.about-content{
  display:flex;
  flex-direction: column;
  gap:1.2rem;
  font-size:1.1rem;
  line-height: 1.6;
}
.about-content p{
  margin:0;
}


/* Owner section */
#owner-profile .owner-container {
  display: flex;
  align-items: center;
  max-width: 900px;
  margin: 3rem auto;
  gap: 2rem;
  padding: 1rem;
}

#owner-profile .owner-text {
  flex: 1;
}

#owner-profile .owner-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ff6600;
}

#owner-profile .owner-text p {
  margin-bottom: 0.75rem;
  color: #444;
  font-size: 1rem;
}

#owner-profile .owner-image {
  width: 400px;
  flex-shrink: 0;
  text-align: right;
}

#owner-profile .owner-image img {
  max-width: 100%;
  border-radius: 5px;
  object-fit: cover;
}

/* Values section */
#values {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
  overflow-x:hidden;
}
.values-container {
  max-width: 800px;
  margin: 0 auto;
  padding:0 1rem;
  box-sizing:border-box;
}
#values h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}
#values ul {
  list-style: none;
  padding: 0;
  margin:0;
}
#values li {
  margin-bottom: 20px;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  word-wrap:break-word;
}
#values li strong {
  display: block;
  font-size: 1.2rem;
  color: #ff6600;
  margin-bottom: 5px;
}
.about-why-choose {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
  color: black; 
  background-color: #ffffff; 
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-why-choose h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  border-bottom: 3px solid black;
  padding-bottom: 8px;
}

.about-why-choose p {
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 1.2em;
  color: black; 
}
/*About Gallery */
#gallery{
  padding:40px 20px;
  text-align: center;
}
.gallery-container{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  margin-top:20px;
}
.gallery-item{
  border-radius: 8px;
  overflow: hidden;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}
.gallery-item img{
  width:100%;
  height:auto;
  display:block;
}
.gallery-item p{
  padding:10px;
  color:#333;
  font-size:0.95ren;
}
#about-hero{
  background-image:linear-gradient(rgba(0, 0, 0, 0.4), rgba(39, 35, 34, 0.4)), url('./images/IMG_5685.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}
/* Mobile Menu */
#hamburger-icon {
  display: none;
  cursor: pointer;
}
#hamburger-icon div {
  width: 30px;
  height: 3px;
  background-color: #333;
  margin: 8px 10px;
  transition: all 0.3s ease;
}

/* Hamburger animation when open */
#hamburger-icon.open .bar1 {
  transform: rotate(-45deg) translate(-6px, 6px);
}
#hamburger-icon.open .bar2 {
  opacity: 0;
}
#hamburger-icon.open .bar3 {
  transform: rotate(45deg) translate(-6px, -6px);
}

.mobile-menu {
  display: none;
  max-height: 0;
  overflow: hidden;
  background-color: #1a242f;
  flex-direction: column;
  align-items: center;
  transition: max-height 0.3s ease-out;
  width: 100%;
}

.mobile-menu.show {
  max-height: 600px;
  display:flex;
}
.mobile-logo{

  width: 150px;
  height: auto;
  margin: 20px;
}

/* Media Query */
@media only screen and (max-width: 600px) {
  .nav-links {
    display: none;
  }

  #hamburger-icon {
    display: block;
  }
  .left-side img{
    height:150px;
  }
  #testimonials{
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin: 0px;
  padding: 0px;
  font-family: poppins;
  box-sizing: border-box;
  text-decoration: none;
}
.testimonial-heading{
  letter-spacing: 1px;
  margin:30px 0px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.testimonial-heading h1{
  font-family: poppins;
  font-size: 2rem;
  font-weight: 500;
  background-color: #202020;
  color:#ffffff;
  padding: 10px 20px;
  text-align: center;
}
.testimonial-heading span{
  font-size: 2.3rem;
  color:#252525;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: poppins;
}
.testimonial-box-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width:100%;
}
.testimonial-box{
    width: 100%;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.1);
    background-color: #ffffff;
    padding: 10px;
    margin: 10px;
    cursor: pointer;
}
.name-user{
    display: flex;
    flex-direction: column;
}
.name-user strong{
    color: #3d3d3d;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
.name-user span{
    color: #979797;
    font-size: 0.8rem;
}
.review-img{
    width: 200px;
    height: auto;
    padding: 0px;
    margin-right: 160px;
}
.box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.client-comment p{
    font-size: 0.9rem;
    color: #4b4b4b;
}
.service-page-hero {
  background-image:linear-gradient(rgba(0, 0, 0, 0.4), rgba(39, 35, 34, 0.4)), url('./images/weedwhacker.jpg');
  height: 60vh;
}
.footer-section li {
  margin-bottom: 10px;
  font-size: 13px;
}

.footer-content img{
  width: 100%;
}
#owner-profile .owner-container {
    flex-direction: column;
    text-align: center;
  }

  #owner-profile .owner-image {
    width: 100%;
    text-align: center;
  }

  #owner-profile .owner-text h2 {
    font-size: 1.5rem;
  }

  #owner-profile .owner-text p {
    font-size: 0.95rem;
  }
  .about-section {
    padding: 3rem 1rem;
  }

  .about-container {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .about-content {
    font-size: 1rem;
    line-height: 1.5;
  }

  #about-orange-img {
    max-width: 120px;
  }
  #values {
    padding: 30px 15px;
  }

  #values h2 {
    font-size: 1.6rem;
  }
  .values-container {
    padding: 0 0.75rem;
  }
  #values li {
    font-size: 15px;
    line-height: 1.5;
  }

  #values li strong {
    font-size: 12px;
  }
  .contact-page {
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
    border-radius: 0;
    box-shadow: none;
  }

  .contact-page h1 {
    font-size: 1.5rem;
  }

  .contact-page input[type="text"],
  .contact-page input[type="email"],
  .contact-page input[type="file"],
  .contact-page textarea {
    font-size: 1rem;
  }

  .contact-page fieldset {
    padding: 12px 15px;
  }

  .contact-page label {
    font-size: 0.9rem;
  }

  .contact-page h4 {
    font-size: 1rem;
  }
}