/* General reset for consistent rendering across browsers */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body styling */
body {
    line-height: 1.6;
    padding-top: 200px; /* Space for sticky header */
}

/* Sticky header styling */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Promo bar styling */
.promo-bar {
    background-color: #fcb34d;
    color: 96c93d;
    text-align: center;
    padding: 5px;
    font-size: 1.1em;
    font-weight: bold;
}

/* Header content styling */
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #333;
    padding: 0.9px 0;
}

/* Logo styling */
.logo img {
    max-height: 175px;
    width: auto;
    margin-bottom: 1px;
}

/* Hamburger menu icon */
.hamburger-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

/* Navigation bar styling */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: -10px;
    margin-bottom: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1em;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.navbar a:hover {
    background-color: #555;
}

/* Quote button styling */
.quote-button {
    background-color: #fcb34d;
    color: #000000 !important;
    border-radius: 5px;
    padding: 10px 25px;
}

.quote-button:hover {
    background-color: #c0392b;
}

/* Hero Section with Background Image */
.hero-section {
    position: relative;
    background-image: url('dogwithball2.png'); /* Background image */
    background-size: cover;
    background-position: center;
    height: 900px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 0.8; /* Adjust opacity to ensure text visibility */
}

.hero-content {
    position: absolute;
    left: 10%;
    color: white;
    max-width: 600px;
	margin-top: -65px; /* Adjust this value to move it up or down as needed */
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
 line-height: 1.2; /* Tightens the line spacing */

}

.hero-content p {
    font-size: 1.2em;
}

/* Styling for the form's free quote button */
button:disabled {
    background-color: grey;
    color: white;
    cursor: not-allowed;
    opacity: 0.5;
}

/* When the button is enabled (after checkbox is selected) */
button:not(:disabled) {
    background-color: #e74c3c;
    color: white;
    cursor: pointer;
    opacity: 1;
}

/* Hover effect for the enabled button */
button:not(:disabled):hover {
    background-color: #c0392b;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .navbar {
        display: none; /* Hide the navbar by default on mobile */
        flex-direction: column;
        text-align: center;
        background-color: #333;
        width: 100%;
    }

    .navbar.active {
        display: block; /* Display the navbar when active on mobile */
    }

    .hamburger-menu {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .navbar a {
        padding: 10px;
        border-bottom: 1px solid #555;
    }

    .navbar a:hover {
        background-color: #555;
    }

    /* Adjustments for hero section */
    .hero-section {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    /* Adjust quote section */
    .quote-section {
        flex-direction: column;
		
		
		
    }

    .quote-btn {
        margin: 10px 0;
		
		
		
    }
}

/* Quote section styling */
.quote-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.quote-btn {
    font-size: 1em; /* Matches placeholder font size */
    height: auto; /* Allows button height to scale with padding */
    padding: 10px 15px; /* Match the padding of .postal-code-input */
    border-radius: 5px; /* Match the input field's corner radius */
    box-sizing: border-box;
    
    /* Remove border/shadow and set text color */
    box-shadow: none; /* Removes any shadow effect */
    border: none; /* Removes any border */
    color: black !important; /* Changes text color to black */
    background-color: #fcb34d; /* Set button background color */
}

.quote-btn:hover {
    background-color: #c0392b !important;
}

.postal-code-input {
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 150px;
	text-align: center; 
}

/* Footer styling */
footer {
    background-color: #333;
	position: relative; 
    color: white;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
	max-width: 1200px;
	margin: 0 auto;
    
    padding: 20px;
}

.footer-column {
    flex: 1;
    padding: 0 15px;
}

.footer-column h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

/* Footer quote button */
.footer-quote-button {
    display: inline-block;
    background-color: #fcb34d;
    color: black !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.footer-quote-button:hover {
    background-color: #c0392b;
}

/* Styling for disabled state of the button */
button:disabled {
    background-color: grey;
    color: white;
    cursor: not-allowed;
    opacity: 0.5;
    pointer-events: none; /* Prevent hover and clicks */
}

/* When the button is enabled (after checkbox is selected) */
button:not(:disabled) {
    background-color: #fcb03b;
    color: white;
    cursor: pointer;
    opacity: 1;
}

/* Hover effect only when the button is enabled */
button:not(:disabled):hover {
    background-color: #96c93d;
}
/* Modal Styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
	
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Background overlay */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    text-align: center;
	border: 5px solid #fcb03b; /* Adds a 5px border with the specified color */
}

.modal-content h2 {
    margin-bottom: 20px;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* Ensure form elements are left-aligned and on separate lines */
.freequote-form {
    display: block;
	margin-top: 10px;
	margin-left:100px; 
	margin-bottom: 0px; 
	width: 100%;
}

.freequote-form .form-group {
    margin-bottom: 5px; /* Add some space between fields */
}

.freequote-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: left;
}

.freequote-form input,
.freequote-form select,
.freequote-form textarea {
    width: 100%; /* Ensure fields take up the full width */
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.freequote-form output {
    display: inline-block;
    margin-left: 10px;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 135px; 
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 50px;
}

/* Accordion styling */
.accordion .accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Accordion button */
.accordion-title {
    background-color: #333 !important;
    color: #333;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    font-weight: bold;
    font-size: 1em;
    border-radius: 5px;
    outline: none;
    transition: background-color 0.3s ease;
	position: relative; /* Position for the icon */
    padding-left: 30px; /* Space for icon on the left */
}

/* Accordion content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    padding: 0 15px; /* Start with padding 0 to avoid extra space when closed */
    background-color: #fff;
    font-size: 0.9em;
    line-height: 1.6;
    border-bottom: 5px solid #e3a802;
    border-top: 1px solid #ffffff;   
}

.accordion_item.active .accordion-content {
		max-height: 500px; 
		padding-top: 20px !important;
		padding-bottom: 50px !important; 
}

/* Add a large plus icon */
.accordion .accordion-title::before {
    content: "+"; /* Plus icon */
    font-size: 1.5em;
    color: #ffffff; /* Adjust color of the plus icon */
    position: absolute;
    left: 10px; /* Position the icon to the left */
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
}

/* Optional: Change icon when active (opened) */
.accordion .accordion-title.active::before {
    content: "-"; /* Change plus to minus when open */
}

/* Main content area */
main {
    flex: 1; /* Allows main to take available space, pushing footer down */
    padding-bottom: 0px; /* Extra padding to ensure content doesn't touch footer */
}

/* Styling for smaller text */
.small-text {
    font-size: 0.70em !important; /* Adjust font size as desired */
    color: #ffffff; /* Optional: Change text color to make it subtler */
    line-height: 1.1; /* Optional: Adjust line spacing */
}

.freequotetitle {
    font-size: 0.70em !important; /* Adjust font size as desired */
    color: #ffffff; /* Optional: Change text color to make it subtler */
    line-height: 1.1; /* Optional: Adjust line spacing */
	padding-left: 100px; 
	padding-top: 50px; 
}

input[type="checkbox"] + label
{
    display: inline-block; 
	
}

/* Padding and margin for the main content on terms.html */
.terms-main {
    display: flex;
    justify-content: center;
    padding-top: 100px; 
    padding-bottom: 0px; 
	padding-left: 420px; 
	padding-right: 420px; 
    max-width: 90vw; /* Responsive width */
    margin: 0 auto; /* Center horizontally */

    box-sizing: border-box;
}

/* Optional additional padding for the terms section */
.terms-section {
    padding-left: 2px;
    line-height: 1.6;
}

/* Padding and margin for the main content on privacy.html */
.privacy-main {
    display: flex;
    justify-content: center;
    padding-top: 100px; 
    padding-bottom: 0px; 
	padding-left: 420px; 
	padding-right: 420px; 
    max-width: 90vw; /* Responsive width */
    margin: 0 auto; /* Center horizontally */

    box-sizing: border-box;
}

/* Contact Section Layout */
.contact-section {
    display: flex;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form Styling */
.contact-form-container {
    flex: 1;
}

.contact-form h2 {
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #fcb03b !important;
    color: #000 !important;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}

.submit-button:hover {
    background-color: #cbd0c3 !important;
}

/* Contact Information Styling */
.contact-info {
    flex: 0.5;
    font-size: 0.9em;
}

.contact-info h3 {
    margin-bottom: 10px;
	margin-left: 32px; 
	margin-top: 17px; 
}

.contact-detail {
    
margin-bottom: 15px;
padding-top: 20px; 
}

.contact-detail h4 {
    display: flex;
    align-items: center;
    font-size: 1em;
    margin-bottom: 5px;
}

.contact-detail p {
    margin-left: 30px; /* Space for the icon */
padding-left: 40px; 
}

/* Icon Styles */
.icon-location::before,
.icon-phone::before,
.icon-email::before {
    font-size: 1em;
    color: #e74c3c;
    margin-right: 5px;
}

/* Custom Icon Classes */
.icon-location::before {
    content: url('path_to_location_icon');
}

.icon-phone::before {
    content: url('path_to_phone_icon');
}

.icon-email::before {
    content: url('path_to_email_icon');
}


/* Padding only for the contact page */
.contact-main {
    padding-top: 120px; /* Adjust this value based on the header height */
}

/* Ensure the map container is full-width */
.map-container {
    width: 100%;
    margin-top: 20px;
}

/* Remove any margin or padding from the iframe */
.map-container iframe {
    width: 100%;
    border: 0;
	margin-bottom: -9px; 
	
}

.icon {
    width: 60px;  /* Adjust size as needed */
    height: auto;
    margin-right: 8px; /* Space between icon and text */
    vertical-align: middle; /* Align icon with text */
}

/* Elite Section Styling */
.elite-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #ffffff;
}

/* Title Styling */
.elite-title {
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

.elite-icon {
    width: 60px; /* Adjust icon size */
    height: auto;
    margin-bottom: 10px;
}

.elite-title h2 {
    font-size: 2em;
    color: #333;
}

/* Boxes Container */
.elite-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Box Styling */
.elite-box {
    position: relative;
    background-color: #ffffff;
    border: 2px solid #333; /* Set standard border color */
    border-bottom-width: 7px; /* Thicker bottom border */
    width: 100%; /* Allows grid to control box sizing */
    padding: 20px;
    text-align: center;
    transition: all 0.8s ease;
    border-radius: 5px;
    aspect-ratio: 1 / 1; /* Enforces a 1:1 aspect ratio to make it square */
    display: flex;
    flex-direction: column;
    justify-content:  flex-start; /* Align all children to the top */
    align-items: center;
}

.elite-box:hover {
    
	animation: hoverBorderColor 1.5s ease-out; 
    
}

.box-icon {
    width: 100px; /* Icon size in each box */
    height: auto;
    margin-bottom: 15px;
}

.elite-box h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.elite-box p {
    font-size: 0.9em;
    color: #666;
}

@keyframes hoverBorderColor {
    0% {
        border-color: #333; /* Default color */
    }
    10% {
        border-color: #fcb34d; /* Hover color */
    }
    100% {
        border-color: #333; /* Back to default */
    }
}

  .elite-icon-large {
      width: 150px;
      height: auto;
  }

.elite-info-section {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.elite-logo-container-two {
    flex: 0 0 auto;
    margin-right: 20px;
}

.elite-logo-two {
    width: 300px; /* Adjust size as needed */
    height: auto;
	margin-left: 200px; 
}

.elite-text-container-two {
    display: block;
    width: 100%; /* Allows full width within the parent */
    max-width: 100%; /* No additional width constraint */
    text-align: left;
    padding-right: 300px !important; 
    line-height: 1.5; /* Adjusts line spacing for readability */
}

.elite-text-container-two {
    flex: 1;
    text-align: left;
    padding: 20px;
}

.elite-text-container-two p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
}

.contact-icon-text-container {
    display: flex;
    align-items: center; /* Centers items vertically */
}

.location-icon {
    width: 60px; /* Adjust size as needed */
    height: auto;
    margin-right: 20px; /* Space between icon and text */
	margin-left: 30px; 
	
}

.location-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers text vertically */
}

.location-text-content h4, 
.location-text-content p {
    margin: 0; /* Remove extra vertical space */
	padding: 0; 
    font-size: 1em; /* Adjust font size as needed */
	text-align: left; 
}

.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 110px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 50px;
    text-align: center; /* Centers all content in faq-section */
}

.faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px; /* Space between header and accordion */
}

.faq-icon {
    width: 80px; /* Adjust icon size as needed */
    height: auto;
    margin-bottom: 5px; /* Space between icon and header text */
}

.faq-header h1 {
    font-size: 2em; /* Adjust font size as needed */
    margin: 0; /* Remove extra spacing around header */
}

.about-section {
    display: flex;
    align-items: flex-start; /* Aligns content to the top */
    justify-content: flex-start;
    gap: 20px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}


.about-content {
    flex: 1 1 60%;
    max-width: 600px;
}
.about-image-container {
    flex: 1 1 35%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 40px; /* Adjust this value as needed */
}
@media (min-width: 1024px) {
    .about-image-container {
        margin-top: 192px; /* Increase this value to move the image further down */
margin-left: 24px;



    }
}

.about-image-container img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 5px;
}

.about-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px; /* Space between the icon and the heading */
}

.about-icon img {
    width: 100px; /* Adjust the size as needed */
    height: auto;
}

/* Specific styling for freequote.html only */
.freequote-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 250px); /* Adjust to fit between header and footer */
    padding: 20px;
    box-sizing: border-box;
}







#f4894fb2-9387-4f9e-879c-63b57e7ac442 {
    display: flex; /* Flex display for centering */
    justify-content: center;
    width: 100%; /* Full container width */
    max-width: 800px; /* Optional max width for readability */
    margin: 0 auto; /* Center horizontally */
}

#f4894fb2-9387-4f9e-879c-63b57e7ac442 iframe {
    width: 100%; /* Ensure iframe fills container */
    max-width: 100%; /* Remove max-width limits */
	padding-top: 10px;
	
	
}

/* Force display of Congratulations text */
.congratulations-text {
    display: block; /* Ensure the element is visible */
    text-align: center;
    font-size: 3em; /* Adjust as needed */
    padding-bottom: 1px; /* Space below the text */
    color: black; /* Optional color */
    margin-top: 100px; /* Space above the text */
}

/* Force display of Congratulations text */
.congratulations-text-2 {
    display: block; /* Ensure the element is visible */
    text-align: center;
    font-size: 2em; /* Adjust as needed */
    padding-bottom: 1px; /* Space below the text */
    color: black; /* Optional color */
    margin-top: 1px; /* Space above the text */
}

.elite-info-section-two {
    display: block;
    width: 100%; /* Ensures full width */
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.accordion-content.active {
    max-height: none !important; 
	padding: 15px; /* Add padding on all sides when open */
	
}

.service-main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 125px 0 50px; /* 200px top padding to clear the header */
}

.service-options {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.service-link {
    text-align: center;
    text-decoration: none;
    color: black;
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.service-link:hover {
    transform: scale(1.05);
}

.service-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.service-link h2 {
    margin-top: 10px;
    font-size: 1.2em;
    color: inherit;
}

/* Wrapper for Circular Image Outline Effect */
.circular-wrapper {
    display: inline-block;
    border-radius: 50%;
    padding: 0;
    transition: box-shadow 0.3s ease-in;
}

.circular-wrapper:hover {
    box-shadow: 0 0 0 5px #fcb03b; /* Creates a 5px outline effect on hover */
}

.circular-image {
    display: block;
    width: 100%;
    max-width: 300px; /* Adjust size as needed */
    height: auto;
    border-radius: 50%;
}

/* Service Header Styling */
.service-header {
    
    margin-bottom: 10px; /* Space between header and images */
	
}

.icon-placeholder .small-icon {
    width: 90px; /* Adjust icon size as needed */
    height: auto;
   
    margin-bottom: -10px; /* Space between icon and heading */
}

.our-services-heading {
    font-size: 2.5em;
    color: #333; /* Use the preferred text color */
    margin: 0;
    padding-bottom: 20px; /* Space between heading and service images */
	
}

.service-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.modal-content button {
    background-color: #fcb34d; /* Customize the background color if needed */
    color: #000; /* Button text color */
    border: none; /* Removes the border */
    border-radius: 10px; /* Slightly curved corners */
    padding: 15px 30px; /* Increases button size */
    font-size: 1.1em; /* Slightly larger font */
	transition: background-color 0.3s ease-in; /* Smooth ease-in effect on hover */
    cursor: pointer;
}

/* Hover effect for button */
.modal-content button:hover {
    background-color: #96c93d; /* Optional: change color on hover */
}

.dog-poop-removal-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 140px; 
	padding-left: 300px; 
    background-color: #ffffff;
}

.content-left {
    flex: 1;
    padding-right: 20px;
	margin-top: -125px; 
}

.content-left h1 {
    font-size: 1.5em; /* Adjust size if needed */
    color: #333;
	margin-left: 10px; 
}

.content-left h2 {
    font-size: 6em; /* 4 times h1 size */
    color: #333;
    margin-top: -15px; 
}

.content-left p {
    font-size: 2em;
    color: #666;
    margin-left: 10px;
margin-top: -20px;	
}

.button-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.large-button, .large-button-outline {
    display: flex; 
	align-items: center; 
	justify-content: center; 
	background-color: #fcb34d;
    color: black;
    text-decoration: none;
	margin-left: 8px; 
    padding: 15px 30px;
    font-size: 1.8em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.large-button:hover {
    background-color: #c0392b;
}

.content-right {
    flex: 1;
    text-align: center;
}

.large-image {
    width: 100%;
    max-width: 500px; /* Adjust size as needed */
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    
	
	
	
	
	
	
	
	
	
	.dog-poop-removal-section {
        flex-direction: column;
        text-align: center;
    }

    .content-left,
    .content-right {
        padding: 0;
    }

    .content-left h2 {
        font-size: 2em; /* Reduce h2 size on smaller screens */
    }

    .button-container {
        flex-direction: column;
        gap: 10px;
    }

    .large-image {
        max-width: 100%; /* Full width on smaller screens */
    }
}

.large-button-outline {
    background-color: transparent; /* No fill */
    color: black; /* Text color */
    border: 5px solid #fcb03b;

    padding: 15px 30px;
    font-size: 1.7em;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.large-button-outline:hover {
    background-color: #fcb03b; /* Optional: background on hover */
    color: black; /* Text color on hover */
}



/* FAQ Container Layout */
.faq-container {
    display: flex;
	flex-direction: row; 
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

/* Left Image Styling */
.faq-image {
    flex: 1;
	max-width: 500px;
}

.faq-image img.large-image {
    width: 300px;
      height: auto;
	  padding-top: 120px;
	  margin-left: 400px; 
	  
}

/* Right Accordion Styling */
.faq-section {
    flex: 1;
    max-width: 600px;
	margin-r: 50px; 
}

/* Responsive adjustments for mobile view */
@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
        align-items: center;
    }
    .faq-image, .faq-section {
        max-width: 100%;
    }
	
	/* Responsive Footer Styles for Mobile */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    gap: 20px; /* Optional: Adds space between footer items */
}

.footer-column {
    width: 100%;
    max-width: 300px; /* Optional: Limit the width for readability */
    text-align: center;
}

.footer-social,
.footer-copyright {
    font-size: 0.9em; /* Maintain the existing smaller size for social and copyright */
    text-align: center;
    margin-top: 10px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between social icons */
}

.footer-social img {
    width: 40px;
    height: auto;
}
	
	.footer-phone {
        font-size: 1.2em !important; /* Smaller size for tablet view */
		margin-bottom: 50px !important; 
    }
	
	.relax-heading {
        font-size: 2.5em !important; /* Smaller size for tablets */
		 line-height: 1.1; /* Tighten line spacing */
		 margin-top: -18px !important; 
		 margin-bottom: 25px !important; 
margin-left: 10px; 
margin-right: 10px; 
    }



    .relax-heading .line-two {
        margin-top: -40px !important; /* Adjust line spacing for tablets */
    }
	
	    .elite-info-section-two {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

      .elite-logo-container-two {
        flex: none;
        display: flex;
        justify-content: center;
        margin: 0;
        padding-left: 0;
    }

       .elite-logo-two {
        width: auto;
        height: 250px;
        margin: 0;
		transform: translateX(20px); /* Moves the image 20px to the right */
    }

      .elite-text-container-two {
        padding: 10px;
        padding-right: 0 !important; /* Remove fixed right padding */
        max-width: 100%; /* Allow full width */
        width: 100%; /* Ensure full width */
        text-align: center; /* Center-align text */
    }
	
	 .why-choose-section h1 {
        font-size: 2.5em !important; /* Match the mobile size of .relax-heading */
		line-height: 1.1; /* Tighten line spacing */
    }
	
	 .subtitle-text {
        font-size: 2.5em !important; /* Matches the mobile size of other headings */
		line-height: 1.1; /* Tighten line spacing */
		margin-bottom: -10px; 
    }
	
	.steps-cards {
        flex-direction: column;
        align-items: center; /* Centers the boxes horizontally */
        gap: 20px; /* Space between the boxes */
    }

    .card {
        width: 100%; /* Makes each card take full width */
        max-width: 350px; /* Optional: Limits the maximum width for better readability */
    }
	
	   .elite-boxes {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
		margin-bottom: -55px; 
    }

        .elite-box {
        position: relative;
        background-color: #ffffff;
        border: 2px solid #333;
        border-bottom-width: 2px;
        width: 100%;
        padding: 20px;
        text-align: center;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: auto !important /* Allow box to expand vertically */
        min-height: 200px; /* Optional: Set a minimum height */
        overflow: visible; /* Ensure content is not cut off */
    }
	
	.elite-title h2 {
        font-size: 2.5em !important; /* Matches the mobile size of other main headings */
		line-height: 1.1; /* Tighten line spacing */
		margin-bottom: -10px; 
    }
	
	 /* Adjust the logo size */
      .logo img {
        max-height: 100px; /* Adjust logo size for mobile */
        width: auto;
    }

    /* Center and adjust the header content */
   
    .header-content {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }

    /* Adjust the navbar */
     .navbar {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

    /* Show the navbar when active */
    .navbar.active {
        display: flex;
    }

    /* Reduce padding for mobile links */
       .navbar a {
        font-size: 0.9em;
        padding: 10px 5px;
        width: 100%;
        text-align: center;
    }

    /* Adjust the hamburger menu icon */
     .hamburger-menu {
        display: block;
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 30px;
        cursor: pointer;
        color: white;
    }

    /* Prevent overflow of the promo bar */
        .promo-bar {
        font-size: 0.8em;
        padding: 5px;
        word-wrap: break-word;
    }
	
	 .header {
        width: 100%;
        overflow-x: hidden; /* Prevent horizontal scrolling */
		margin: 0 !important;
        padding: 0;
    }
	
	 .hero-section {
        height: auto; /* Allow the height to adjust based on content */
        padding: 20px; /* Add padding for spacing */
		margin-top: -42px; 
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }

    .hero-content {
        position: static; /* Reset positioning for responsive layout */
        width: 100%;
        max-width: 90%; /* Ensure content fits within the screen */
        margin: 0 auto;
        text-align: center; /* Center-align text for better readability */
		z-index: 1; 
    }

    .input-button-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px; /* Limit the width of the input group */
        margin: 0 auto;
    }

    .postal-code-input,
    .quote-btn {
        width: 100%; /* Ensure input and button fit within the viewport */
        box-sizing: border-box;
    }
	
	  .logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }
	
	   .hero-content h1 {
        font-size: 2.5em; /* Optional: Reduce the font size for mobile */
        line-height: 1.1; /* Reduce line spacing for tighter appearance */
        white-space: normal; /* Ensure the text wraps properly */
        margin-bottom: 10px; /* Reduce bottom margin for less space */
		
    }
	
	 .hero-content h2 {
        font-size: 1.3em; /* Optional: Reduce the font size for better fit */
        line-height: 1.1; /* Adjust line spacing for tighter appearance */
        margin-bottom: -3px; /* Reduce bottom margin for less space */
		margin-top: 25px; 
    }
	
	  .box-icon {
        width: 60px; /* Reduce icon size for better fit */
        height: auto;
        margin-bottom: 10px;
    }
	
	.elite-box h3 {
        margin-bottom: 10px;
        font-size: 1.2em;
        text-align: center;
    }

       .elite-box p {
        font-size: 0.9em;
        line-height: 1.4;
        margin-bottom: 10px;
        word-wrap: break-word;
    }
	
	.elite-icon-large {
        width: 100px; /* Shrink the image size for mobile */
        height: auto; /* Maintain the aspect ratio */
        margin-bottom: 5px; /* Optional: Add space below the image */
		margin-top: -30px; 
    }
	
	 .card-icon {
        width: 60px !important;
    }
	
	 .why-choose-section h1 {
        margin-top: 30px !important; /* Increase space above the heading */
    }
	
	.dog-image-container img {
        margin-top:25px; /* Increase space above the image */
    }
	
	.hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3); /* Adjust the opacity for darkness */
        z-index: 1;
    }
	
	 .steps-cards .card:last-child {
        margin-bottom: -20px !important; /* Remove extra margin below the last card */
    }

 .small-icon {
        width: 65px !important; /* Shrink the icon size */
        height: auto !important; /* Maintain aspect ratio */
        display: block;
        margin: 0 auto 15px auto; /* Center the icon and add space below */
		
		
    }
	
	 .icon-placeholder {
        margin-top: -140px; 
    }

 
  .service-options {
        gap: 10px; /* Reduce the space between the service links */
    }

	.service-link h3 {
    margin-top: 7px; /* Apply a uniform margin for both headings */

}

 .service-link h3 {
        line-height: 1.1;
    }

.dog-poop-removal-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 0; /* Remove left padding */
margin-top: -30px; 
}

.content-left h1 {
    margin-left: 0; /* Remove left margin */
    padding-left: 0; /* Remove left padding */
    text-align: center;
}
	
.content-right {
    text-align: center;
    margin: 0 auto;
}

.large-image {
    width: 80%; /* Adjust the size as needed (e.g., 70% or 90%) */
    max-width: 250px; /* Optional: Limit maximum size */
    height: auto; /* Maintain aspect ratio */
    margin-top: 20px; /* Space above the image */
margin-left: 20px; 
margin-bottom: -20px;
}

.button-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%; /* Ensure full-width container */
        margin: 0 auto; /* Center the container */
        padding: 0; /* Reset any padding */
    }

    .large-button,
    .large-button-outline {
        width: 90%; /* Adjust width for better centering */
        max-width: 300px; /* Limit maximum size */
        margin: 0 auto; /* Center the buttons explicitly */
        text-align: center;
    }
 .content-left h1 {
        line-height: 1.1; /* Decrease this value to reduce spacing */
        margin-bottom: 10px; /* Remove extra space below the text */
        padding-bottom: 0; /* Ensure no additional padding */
margin-left: 10px; 
margin-right: 10px; 
    }
	
.content-left h2 {
        font-size: 3em; /* Increase this value as needed */
        line-height: 1.2; /* Adjust line spacing for better readability */
        margin-top: 10px; /* Optional: Add space above if needed */
margin-bottom: 20px; 
    }

	.content-left p {
        line-height: 1.1; /* Reduce this value to tighten the line spacing */
        margin-top: 0; /* Remove any extra space above */
        margin-bottom: 20px; /* Remove any extra space below */
    }
.why-choose-section h1 {
        text-align: center; /* Center the heading text */
        margin-left: -12px; /* Remove any left margin */
        margin-right: 0; /* Remove any right margin */
        width: 100%; /* Ensure the heading takes full width */
margin-top: 27px !important;

}

 .commercial-subheading {
        font-size: 1.5em; /* Adjust font size for mobile */
        line-height: 1.2; /* Tighten line spacing */
        margin-top: 25px !important; /* Override the negative margin for mobile */
        margin-bottom: 5px;
        padding: 0;
        text-align: center;
    }

.faq-image {
        display: block;
        text-align: center;
        margin: 0 auto;
        padding: 0;
    }

    .faq-image img.large-image {
        display: block;
        margin: 0 auto;
        width: 80%; /* Adjust the width to fit better on mobile */
        max-width: 250px; /* Set a maximum width */
        height: auto;
margin-bottom: -115px; 
margin-top: -155px; 

    }

.about-section h1 {
        text-align: center;
        font-size: 2em; /* Adjust font size for mobile */
        margin: 0 auto;
        padding: 0;
    }

        .about-content {
        margin-left: 0 !important;
        margin-right: 20px!important;
        padding: 0 0px; /* Add padding for spacing */
        width: 100%;
        max-width: 100%; /* Prevent content from stretching too wide */
        text-align: center;
    }

     .about-image-container {
        display: none; /* Hide the original image on mobile */

    }

    .about-image-container img {
        width: 80%; /* Adjust image size for mobile */
        max-width: 300px;
        height: auto;
    }

 .about-mobile-image-container {
        display: block;
        text-align: center;
        margin: 20px auto;
    }

  .about-mobile-image {
        width: 80%;
        max-width: 300px;
        height: auto;
border-radius: 10px; /* Add rounded corners */
margin-top: -50px; 
    }

 .about-icon {
        margin-top: -130px; /* Remove any existing margin */
       
    }

 .about-icon img {
        width: 75px; /* Adjust the size as needed */
        height: auto; /* Maintain aspect ratio */
        max-width: 100%; /* Prevent the icon from exceeding its container */
    }

  .about-section {
        display: block; /* Reset flex layout */
        padding-left: 10px; /* Remove any padding */
padding-right: 10px; 
        text-align: center; /* Center-align text */
margin-top: 7px;
margin-bottom: -50px; 
    }

.contact-section {
        display: flex;
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center-align the content */
        padding: 0 10px; /* Add some padding for spacing */
    }

    .contact-form-container {
        width: 100%; /* Full width on mobile */
        max-width: 400px; /* Limit the width for better fit */
        margin: 0 auto; /* Center the form container */
        text-align: center; /* Center-align text within the form */
    }

    .contact-form {
        width: 100%;
        padding: 0;
        box-sizing: border-box; /* Include padding in width calculation */
    }

    .contact-info {
        width: 100%;
        max-width: 400px;
        margin-top: 20px;
    }

.privacy-check-group {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap; /* Prevent text wrapping */
    flex-wrap: nowrap; /* Ensure content does not wrap */
    overflow: hidden; /* Prevent overflowing text */
    max-width: 100%; /* Ensure it stays within container bounds */
}

   .privacy-check-group label {
    font-size: 0.75em; /* Smaller text for mobile */
    margin: 0;
    line-height: 1.2; /* Tighter line spacing */
}

 .contact-form-container h2 {
        margin-top: -145px; /* Move the heading up on mobile */
        padding-top: 0;
 font-size: 2em !important; /* Slightly smaller size for mobile */
text-align: center !important; /* Center the heading text */

    }

.contact-info {
        
        margin-top: -10px !important; /* Adds some spacing if needed */


    }

 .contact-info h3 {
        text-align: center;
        margin: 0 auto;
margin-top: 20px; 
margin-bottom: -15px; 
    }


 .terms-main {
        padding-left: 10px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

.terms-main * {
        text-align: left !important;
    }

    .terms-section {
        padding-left: 0 !important;
        text-align: left !important;
        margin: 0 auto;
        width: 100%;
        max-width: 90%;
    }

 .terms-section * {
        text-align: left !important;
margin-left: 10px; 
    }

    
    .terms-section h2,
    .terms-section p {
        text-align: center;
        margin: 0 auto;
    }

.terms-section h1 {
 text-align: center;
        margin: 0 auto;
margin-top: -120px !important; 
 font-size: 2.5em !important; /* Adjust the value as needed */
}

.privacy-section h1 {
        font-size: 2.5em; /* Adjust this value as needed */
        margin-top: -120px; /* Adjust the margin above the heading */
    }

 .privacy-main,
    .privacy-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: center;
        margin: 0 auto;

max-width: 93%; 
    }

.privacy-main,
    .privacy-section,
    .privacy-section * {
        text-align: left !important;
        padding-left: 0px;
        padding-right: 0px;
    }



    .privacy-section h1,
    .privacy-section h2,
    .privacy-section p,
    .privacy-section ul {
        text-align: left;
    }

.privacy-section ul {
    padding-left: 15px; /* Adjust padding for alignment */
    margin-left: 0;
}



/* Ensure flex layout is vertical on mobile */
    .flex-container7 {
        display: flex;
        flex-direction: column !important; /* Stack elements vertically */
        align-items: center !important; /* Center-align all elements */
        justify-content: flex-start;
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
    }

    /* Center and move the image above the heading */
    #outofarea-image {
        display: block;
        max-width: 90%;
        width: auto;
        height: auto;
        margin: 0 auto 10px auto;
        order: -1; /* Move the image to the top on mobile */
    }

    /* Center the heading and text */
    .outofarea-heading,
    .outofarea-content-wrapper p {
        text-align: center;
        margin: 10px auto;
        width: 90%;
    }

    /* Center the form and clear left padding */
    .outofarea-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
        padding: 0 !important;
    }

    .outofarea-form input,
    .outofarea-form textarea,
    .outofarea-form button {
        width: 100%;
        margin: 10px 0;
        box-sizing: border-box;
    }

    /* Reset the main container alignment */
    .outofarea-page {
        padding-top: 20px;
        align-items: center;
        text-align: center;
    }

 /* Control the size of the top image on mobile */
    #outofarea-image {
        max-width: 60% !important;  /* Adjust the percentage to make the image smaller or larger */
        height: auto;    /* Maintain the aspect ratio */
        margin: 0 auto;  /* Center the image horizontally */
margin-top: -115px !important; 
margin-bottom: -90px; 
    }

.outofarea-heading {
        line-height: 0.9; /* Adjust this value for mobile view */
    }


 /* Reduce font size for the congratulations text on mobile */
    .congratulations-text {
        font-size: 2.3em; /* Adjust this value as needed */
        margin: 10px auto;
        padding: 0;
        text-align: center;
        width: 90%; /* Ensure it fits within the screen */
margin-top: -15px; 
    }

    .congratulations-text-2 {
        font-size: 1.5em; /* Adjust this value as needed */
        margin: 5px auto;
        padding: 0;
        text-align: center;
        width: 90%; /* Ensure it fits within the screen */
    }

    /* Center and resize the checkmark icon */
    .form-container img {
        width: 80px; /* Adjust size for mobile */
        height: auto;
        margin: 10px auto;
        display: block;
margin-top: -5px !important; 
    }

 /* Center the text content on mobile */
    .refer-a-friend-section {
        margin: 0 auto !important;
      padding: 10px !important; 
width: 100% !important; 
max-width: 100% !important; 
        text-align: center;
    }

    .refer-a-friend-text {
        margin: 0 auto !important;
        padding-left: 0 !important;
        text-align: center;
        max-width: 100%;
    }

    
    .refer-a-friend-text p {
        margin-left: 0 !important;
        text-align: center;
    }

.refer-a-friend-text h1{

 margin-left: 0 !important;
        text-align: center;
 font-size: 2.7em !important; /* Adjust this value as needed */
margin-top: -145px !important; 
}

    /* Stack the form below the text on mobile */
    .refer-a-friend-flex-container {
        flex-direction: column !important;
        align-items: center;
        
    }

    .refer-a-friend-form-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 !important;
        text-align: center;
    }

    .refer-a-friend-section,
    .refer-a-friend-flex-container,
    .refer-a-friend-text,
    .refer-a-friend-form-container {
        margin: 0 !important;
        padding: 0 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }


#addFriendButton,
    .submit-button {
        width: 100% !important;
        max-width: 300px;
        height: 50px !important; /* Set a fixed height for consistency */
        padding: 10px 15px;
        font-size: 1rem;
        line-height: 1.2; /* Ensure consistent line height */
        border-radius: 5px;
        box-sizing: border-box; /* Include padding in the height calculation */
    }

    #addFriendButton:hover {
        background-color: white !important;
        color: black !important;
    }

.privacy-text {
        margin-bottom: 10px !important; /* Adjust this value as needed */
text-align: center !important; 
    }

 .refer-a-friend-form h3 {
        font-size: 1rem !important; /* Adjust this size as needed */
        line-height: 1.3; /* Optional: Adjust line spacing for better readability */
    }

 .refer-a-friend-text b:nth-of-type(1) {
        display: block;
        margin-top: -12px !important; /* Adjust the top margin as needed */
        margin-bottom: -10px !important; /* Adjust the bottom margin as needed */
    }

#successModal {
    display: flex;
    position: fixed;
    z-index: 2000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
}

/* Modal content */
.success-modal-content {
    background-color: white !important; /* White background for the modal content */
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow for better visibility */
}

.content-left h2, 
    .content-left p {
        text-align: center !important;
        width: 90%;
        margin: 0 auto;
margin-bottom: 10px; 
    }

 .circular-image {
        max-width: 175px; /* Decrease size for mobile */
        height: auto;
    }


 .service-link h3 {
        font-size: 0.8em; /* Adjust this value as needed */
    }


.decorative-image {
        margin-bottom: -1px; /* Adjust this value as needed */
    }

#breeze-text {
        margin-left: 10px;
        margin-right: 10px;
        text-align: center;
    }

.contest-page-top-container {
    padding: 0 !important;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
width: 100%
    align-items: center; /* Center-align all child elements */
}

    .contest-page-image-placeholder {
        order: 2; /* Moves the image to the top */
        display: block;
        text-align: center;
        margin-bottom: -1px !important
    }

    .large-placeholder-image {
        width: 100%; /* Adjust the size for mobile */
        max-width: 300px;
        height: auto;
        margin: 0 auto;
        border-radius: 10px; /* Optional: Add rounded corners */
    }

.contest-page-text {
    padding: 0 !important; /* Remove extra padding */
    margin: 0 auto !important; /* Center the text container */
    width: 100%; /* Ensure it takes the full width */
    max-width: 95% !important; /* Limit width for better fit */
    text-align: center; /* Ensure text is centered */
order: 1; 
}

    .contest-page-text h1 {
        font-size: 3em !important;
        line-height: 1 !important;
        margin-bottom: 10px;
        margin-top: 0;
        padding-top: 0;

margin-right: 0 !important; 
width: 100% !important; 
max-width: 100% !important;  
text-align: center !important; 

    }

    .contest-page-text p {
        font-size: 1em;
        line-height: 1.4;
        margin: 0 auto;
        padding: 0;
    }

    .small-text {
        font-size: 0.85em;
        word-wrap: break-word;
        margin-top: 10px;
        margin-bottom: 0;
        text-align: center;
    }


    /* Adjust the form wrapper */
  .contest-page-form-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
 

    .form-group {
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .contest-page-form input {
        width: 100% !important;
        padding: 10px;
        margin: 2px 0;
        box-sizing: border-box;
    }
    

  .medium-image-placeholder {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: -20px;
    }

 .medium-placeholder-image {
        display: none !important;
    }

.contest-page-text h1 {
margin-top: -135px; 


}




.contest-page-text p {
    margin: 0 auto !important;
margin-bottom: -10px !important; 
}


.contest-page-form h3 {
        font-size: 1.1em !important;
        text-align: center !important;
        margin-top: -30px; 
margin-bottom: -10px !important; 
        padding: 10px 0;
    }

   .contest-page-bottom-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
     .contest-page-form {
        width: 96% !important;
        max-width: 300x !important;
        margin-right: -500px !important;
        padding: 0 !important;
    }

.contest-page-form .submit-button {
        align-items: center;
    }
    
   .contest-page-original-image {
        order: -1; /* Move image above the form */
       margin-top: -20px; 
margin-bottom: 9px; 
        width: 100%;
        display: flex;
        justify-content: center;
    }

 .contest-image {
        max-width: 80%; /* Ensure the image scales well on mobile */
        height: auto;
        display: block;
        margin: 0 auto;
    }

 .contest-page-form .submit-button {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box; /* Ensures padding is included in the width calculation */
        margin: 0 auto;
    }

 /* Ensure the entire section is visible and styled correctly */
    .free-cleanup .free-cleanup-wrapper {
        display: block !important;
        border: 4px solid #fcb03b;
        background-color: #fcb03b;
        padding: 20px;
        border-radius: 10px;
        margin: 20px auto;
        box-sizing: border-box;
        max-width: 90%; /* Ensure it fits well on mobile screens */
    }

    /* Center content vertically and stack image and text */
       .free-cleanup .elite-info-section-two {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }

    /* Center the image container */
    .free-cleanup .elite-logo-container-two {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 auto;
        transform: none; /* Remove any transform shifting the image */
    }

    /* Style and center the image */
        .free-cleanup .elite-logo-two {
        width: 150px;
        height: auto;
        margin: 0 auto;
        padding: 0;
margin-top: -15px !important; 
        transform: none; /* Ensure no translation is applied */
    }

    /* Center-align text content */
    .free-cleanup .elite-text-container-two {
        text-align: center;
        padding: 0 !important;
margin: 0 !important; 
        color: white; /* Ensure text color is visible on orange background */
    }

    /* Style the heading and prevent wrapping */
    .free-cleanup .elite-text-container-two h1 {
        font-size: 2em; /* Adjust font size for mobile */
        color: white;
        margin-top: -20px !important;
        margin-bottom: 10px;
       text-align: center; 
    }

    /* Style the paragraph text */
    .free-cleanup .elite-text-container-two p {
        font-size: 1em; /* Adjust paragraph text size */
        line-height: 1.5;
        margin: 10px 0; /* Add spacing around the text */
text-align: center !important; 
    }

.support-canadian-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center; /* Ensure the text is centered */
        width: 100%;
        padding: 0 20px; /* Add some horizontal padding for better spacing */
    }

    .support-canadian-section h2 {
        font-size: 2em; /* Adjust font size for mobile */
        margin-top: 20px;
        margin-bottom: 20px;
        text-align: center !important; /* Override any other text alignment */
    }

   .support-heading {
        display: block;
        text-align: center !important; /* Force center alignment */
        margin: 20px auto; /* Add vertical spacing and center horizontally */
        width: auto !important; /* Override the inline width */
        font-size: 2em; /* Adjust font size for mobile */
    }

.why-choose-section h1 {
        width: auto !important; /* Override inline width */
        text-align: center !important; /* Force center alignment */
        margin: 0 auto; /* Center horizontally */
        font-size: 2em; /* Adjust size for mobile */
    }

.free-cleanup .free-cleanup-heading {
    margin-top: -30px !important; /* Adjust space above the heading */
    margin-bottom: 2px; /* Adjust space below the heading */
    font-size: 3em; /* Optional: Adjust font size */

}

/* Adjust the margin for the text below the heading */
.free-cleanup .elite-text-container-two p {
    margin-top: 10px; /* Space above the paragraph */
    margin-bottom: -19px; /* Space below the paragraph */
    line-height: 1.5; /* Adjust line height for better readability */
}

 /* Control the margin above the orange rectangle */
    .free-cleanup {
        margin-top: -10px !important; /* Adjust this value as needed */
margin-bottom: 50px !important; 
    }

    .free-cleanup .free-cleanup-wrapper {
        margin-top: 0 !important; /* Reset any inherited margin */
    }

 
 .specific-text {
    font-size: 3.1em !important; /* Adjust size as needed */
    font-weight: bold; /* Optional: Add bold styling */
    color: #fff; /* Optional: Adjust text color */
}

.specific-text-2 {
    font-size: 1.7em !important; /* Adjust size as needed */
    font-weight: bold; /* Optional: Add bold styling */
    color: #fff; /* Optional: Adjust text color */
	margin-bottom: -10px !important; 
}
 

}











@media (max-width: 480px) {
    .footer-phone,
    .phone-link {
        font-size: 1em; /* Smaller size for mobile view */
    }
	
	.footer-phone,
    .phone-link {
        font-size: 1em; /* Smaller size for mobile view */
    }
}
	
	
	
}
	
	
}

.faq-header h2 {
    font-size: 2.5em; /* Adjust the size as needed */
    font-weight: bold; /* Optional: Make it bolder if desired */
    text-align: center;
    margin-bottom: 10px; /* Adjust spacing below if needed */
}

.centered-quote-button {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.subtitle-text {
    text-align: center;
    font-size: 4em; /* Adjust based on the "Our Services" heading size */
    color: #333;
    margin-top: 10px;
}

.steps-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
	margin-bottom: 60px; 
}

.card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 360px; /* Adjust width as needed */
    text-align: center;
}

.card-icon {
    width: 75px; /* Icon size */
    height: auto;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

.card p {
    font-size: 1em;
    color: #666;
}

.elite-text-container-two h1 {
    font-size: 2em; /* Match the size of "Residential Pooper Scooper Services" */
    color: #333; /* Optional: Match the color if needed */
}

.dog-image-container {
    width: 100vw; /* Makes the container span the full viewport width */
    overflow: hidden; /* Prevents any extra spacing or scrollbars */
    margin: 0 !important; /* Removes any margin */
	padding: 0 !important; 
}

.dog-image-container img {
    width: 100%; /* Ensures the image fills the container width */
    height: auto; /* Maintains the aspect ratio */
    display: block; /* Removes any extra spacing below the image */
}

.relax-heading {
    text-align: center;
    font-size: 4em; /* Same size as .subtitle-text */
    color: #333; /* Adjust color as needed */
    margin-top: 20px; /* Space above the heading */
    margin-bottom: 20px; /* Space below the heading, before the image */
}

.relax-heading .line-one {
    display: block; /* Ensures each line is on its own line */
}

.relax-heading .line-two {
    display: block;
    margin-top: -135px; /* Adjust this value for desired spacing between lines */
}

.about-section h1 {
    font-size: 2.5em; /* Match the FAQ heading size */
    font-weight: bold; /* Optional: to match font weight */
    text-align: center; /* Center align if needed */
    margin-bottom: -38px; /* Adjust spacing below if desired */
	margin-top: -20px !important; 
}

.contact-form-container h2 {
    font-size: 2.5em; /* Match the FAQ heading size */
    font-weight: bold; /* Optional: to match font weight */
    text-align: left; /* Center align if needed */
    margin-bottom: 10px; /* Adjust spacing below if needed */
}

.about-content h2, .about-content h1 {
    margin-top: 20px; /* Adds space above each heading */
}

#modalPostalCodeInput {
    padding: 10px 25px; /* Matches the button padding */
    border-radius: 5px; /* Matches the button’s rounded corners */
    font-size: 1em;
    height: 50px;	/* Set to the same height as the button */
    width: 147px; 
	box-sizing: border-box;
}

.input-button-group {
    display: flex;
    align-items: center; /* Keeps the input and button aligned */
    gap: 10px; /* Space between input and button */
}

#postalCodeError {
    color: white;
    display: none; /* Hidden by default */
    margin-top: 5px;
}

.flex-container7 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
   padding: 0 200px; /* Adds padding to both sides for the left and right spacing */
    gap: 100px;
	margin-left: 245px; 
	
}

.outofarea-content-wrapper {
    flex: 1;
	
}

#outofarea-image {
    max-width: 500px; /* Increase this value to make the image larger */
    width: 100%; /* Ensures it scales responsively within the max width */
    height: auto; /* Maintains the aspect ratio */
}

.outofarea-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns form items to the start of the container */
    max-width: 400px; /* Adjust width if needed */
    padding-left: 20px; /* Ensures a consistent left padding */
	
}

.outofarea-form label {
    display: block;
    margin-bottom: 5px; /* Reduces space between label and input field */
    font-weight: bold; /* Optional: Keep the label bold for clarity */
}
	
	
	
.outofarea-form input,
.outofarea-form textarea,
.outofarea-form select {
    width: 100%; /* Makes each element take the full width */
    box-sizing: border-box; /* Ensures padding doesn't affect width */
    margin-bottom: 10px; /* Adds space between fields */
    text-align: left; /* Aligns the labels and fields */
	margin-top: -10px; 
}

.outofarea-form button {
    width: 50%; /* Makes each element take the full width */
    box-sizing: border-box; /* Ensures padding doesn't affect width */
    margin-bottom: 20px; /* Adds space between fields */
    text-align:  center; /* Aligns the labels and fields */
	font-weight: bold; 
	margin-top: 10px; 

	
	
	
}

.outofarea-input {
    height: 40px; /* Double the default height */
}

.outofarea-form textarea {
    height: auto; /* Keeps the comment field at its default height */
    padding: 10px; /* Adjust padding as needed */
}

.outofarea-page {
    padding-top: 150px; /* Adjust this value as needed */
	
}

.outofarea-content-wrapper {
    flex: 1;
    max-width: 400px; /* Keeps the wrapping consistent with form width */
}

.outofarea-content-wrapper p {
    margin-bottom: 20px; /* Optional: Adds space between the paragraph and form */
    line-height: 1.5; /* Optional: Improves readability */
	 margin-left: 20px; /* This will shift the heading and paragraph to align with the form */
}

.outofarea-content-wrapper h1 {
    margin-left: 20px; /* This will shift the heading and paragraph to align with the form */
}

.outofarea-heading {
    font-size: 2.5em !important; /* Match this to the "About Us" heading size */
      font-weight: bold; /* Optional: Match the boldness */
    margin-bottom: 1px; /* Add space below the heading */
}

/* Scoped styles for the Refer a Friend section */
.refer-a-friend-section {
    padding: 20px;
    margin: 0 200px;
}

.refer-a-friend-section .refer-a-friend-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.refer-a-friend-section .refer-a-friend-text {
    flex: 1;
    max-width: 50%;
}

.refer-a-friend-section .refer-a-friend-form-container {
    flex: 1;
    max-width: 50%;
}

.refer-a-friend-section .refer-a-friend-form .form-group {
    margin-bottom: 15px;
}

.refer-a-friend-section .refer-a-friend-form input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
}

.refer-a-friend-section #addFriendButton {
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 1rem;
}

.refer-a-friend-section .submit-button {
    padding: 10px 15px;
    font-size: 1rem;
}


.refer-friend-container {
    text-align: center; /* Center-align the text and image */
	
}

.refer-image {
    max-width: 50%;
    height: auto;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.refer-a-friend-text h1 {
    font-size: 4em; /* Base size, adjust as needed */
    line-height: 1.2;
    margin-bottom: .1em;
}

.privacy-check-group {
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Space between checkbox and label */
    white-space: nowrap; /* Prevent text from wrapping */
	margin-bottom: 21px; 
}

.privacy-check-group label {
    margin: 0; /* Remove extra margin */
}

.privacy-check-group label {
    font-weight: normal; /* Remove bold styling */
}

.outofarea-page .privacy-check-group {
    display: inline-flex;
    align-items: baseline; /* Align checkbox with the text */
    gap: 10px;
    white-space: nowrap;
    margin-bottom: 20px;
	margin-top: 10px; 
}

.outofarea-page .privacy-check-group input[type="checkbox"] {
    margin: 0;
    
}

.outofarea-page .quote-btn {
    height: 50px; /* Match the height of the header buttons */
    width: 100%; /* Extend the width to fill the form */
    padding: 10px 25px; /* Match the padding of header buttons */
    font-weight: normal; /* Remove bold styling */
    box-sizing: border-box; /* Ensure padding does not exceed width */
    border-radius: 5px; /* Match the style of header buttons */
}

/* Main Flex Container for the Contest Page */
.contest-page {
    padding: 0;
    margin: 0;
}

/* Top Container: Text and New Large Image Side by Side */
.contest-page-top-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
	padding-left: 100px;
padding-right: 100px; 	
	   margin-bottom: 0; /* Ensure no margin below */
}

.contest-page-text {
    flex: 1;
    max-width: 50%;
	margin-left: 150px; 
	
}

.contest-page-image-placeholder {
    flex: 1;
    text-align: center;
}

.large-placeholder-image {
    max-width: 100%; /* Twice the size */
    width: 50%;
    height: auto;
    
}

/* Bottom Container: Original Image and Form Side by Side */
.contest-page-bottom-container {
    display: flex;
    justify-content: flex-start;
    
    gap: 10px;
    background-color: #fcb03b; /* Set background color */
    padding: 20px;
	margin-top: -7px; /* Ensure no margin above */
    border-radius: 10px; /* Optional: Adds rounded corners */
}

.contest-page-original-image {
    flex: 1;
    text-align: center;
}

.contest-image {
    max-width: 50%; /* Half the size */
    height: auto;
}

/* Form Section Styling */
.contest-page-form {
    flex: 2;
    width: 100%;
	max-width: 700px; 
	margin-left: 200px; 
	
	

}

.contest-page-form .form-group {
    margin-bottom: 15px;
}

.contest-page-form input,
.contest-page-form button {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
}



/* Privacy Text */
.privacy-text {
    margin-top: 20px;
    font-size: 0.9rem;
    text-align: left;
}

/* Styling for the "Win a Free Month" Header */
.contest-page-text h1 {
    font-size: 4em; /* Adjust this value as needed */
    font-weight: bold;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 20px;
}

/* Scoped Submit Button Styling for Contest Page */
.contest-page .submit-button {
    background-color: #ffffff !important; /* Button background color */
    color: #ffffff; /* Text color set to white */
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover Effect for Submit Button on Contest Page */
.contest-page .submit-button:hover {
    background-color: #c0392b !important;
    color: #ffffff; /* Ensure text remains white on hover */
}

/* Medium Image Placeholder Styling */
.medium-image-placeholder {
    text-align: center;
    margin-top: 20px;
	margin-left: 50px;
}

.medium-placeholder-image {
    max-width: 30%;
    height: auto;

    display: block;
    margin: 0 auto;
	padding-left: 50px; 
	position: relative; 
	left: 137px; 
}

.contest-page-form-wrapper {
    position: relative;
    left: -350px; /* Move the form closer to the image */
}

.contest-page-form h3 {
    font-size: 1.5rem;
    margin-bottom: 15px; /* Increase this value for more space */
}

.phone-link,
.footer-phone {
    text-align: center;
    font-size: 2.5em; /* Keep the large size if it's intentional */
    font-weight: bold;
    color: #808080; /* Dark grey color */
    text-decoration: none;
    transition: color 0.3s ease-in;
    opacity: 0.8; /* Keep existing opacity */
	margin-top: 0px; 
}

.phone-link:hover {
    color: #fcb34d; /* Orange color on hover */
}

/* Centered copyright text styling */
.footer-copyright {
    text-align: center;
    font-size: 0.8em; /* Adjust size if needed */
    color: #ffffff; /* Dark grey color for a subtle look */
    margin-top: 10px;
    opacity: 0.8; /* Optional: Slight transparency */
}

/* Styling for the phone number under Contact Information */
.contact-phone {
    color: white;
    font-size: 1em;
    text-decoration: none;
}

/* Styling for the email link under Contact Information */
.contact-email {
    color: white;
    text-decoration: none;
    font-size: 1em;
}

/* Centered social icon styling */
.footer-social {
    text-align: center;
    margin-top: 20px;
}

.facebook-icon {
    width: 60px; /* Adjust the size as needed */
    height: 60px;
    filter: grayscale(100%); /* Makes the icon grey */
    transition: filter 0.3s ease, transform 0.3s ease;
	margin-top: -20px;
	margin-bottom: 20px;
}

.facebook-icon:hover {
    filter: grayscale(0%); /* Changes to full color on hover */
    transform: scale(1.1); /* Slight zoom effect on hover */
}

.footer-column p {
    margin-bottom: 8px;
}

.decorative-border {
    width: 100%;
    margin: 0;
    padding: 0;
}

.decorative-image {
    width: 100%;
    height: auto;
    display: block;
}

.inline-email {
    display: inline-block;
    white-space: nowrap;
}

@media screen and (min-width: 768px) {
    .about-mobile-image-container {
        display: none;
    }

/* Unique Fade-in Animation for Success Modal */
@keyframes fadeInSuccessModal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Success Modal Styling */
#successModal {
    display: flex;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    animation: fadeInSuccessModal 0.3s ease-in-out;
}

.success-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    border: 2px solid #fcb34d;
}

.success-modal-content .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.free-cleanup .free-cleanup-wrapper {
    display: flex;
    align-items: center; /* Vertically center the content */
    justify-content: space-between; /* Horizontally center image and text */
    padding: 20px;
    border: 4px solid #fcb03b; /* Keep the orange border */
    background-color: #fcb03b; /* Orange background */
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1200px;
    box-sizing: border-box;
}

.free-cleanup .elite-info-section-two {
    display: flex;
    align-items: center; /* Vertically center the image and text */
    justify-content: space-between; /* Horizontally distribute the image and text */
    gap: 20px;
    height: 100%; /* Ensure the container takes the full height of the rectangle */
	padding: 0 40px; /* Add equal padding on both sides */
}

.free-cleanup .elite-text-container-two h1,
.free-cleanup .elite-text-container-two p {
    color: white;
    margin: 0;
text-align: center; 
}

.free-cleanup .elite-text-container-two h1 {
    margin-bottom: 10px;
text-align: center;
}



.free-cleanup .elite-text-container-two h1 {
    white-space: nowrap; /* Prevents text wrapping */
    overflow: hidden; /* Hides any overflowing text */
    text-overflow: ellipsis; /* Adds "..." if the text is too long (optional) */
    margin-bottom: 10px;
    color: white;
}

.free-cleanup .elite-logo-two {
    width: 100px; /* Control the size of the image */
    height: auto;
    margin: 0 !important; /* Remove existing margins */
    padding: 0 !important; /* Remove existing padding */
}

.free-cleanup .elite-logo-container-two {
    flex: 0 0 auto; /* Prevent the image from shrinking */
}

/* Ensure the text container does not have extra padding */
.free-cleanup .elite-text-container-two {
    padding: 0 !important; /* Remove any existing padding */
margin: 0 !important; 
    flex: 1;
}

.specific-text {
    font-size: 3.1em; /* Adjust size as needed */
    font-weight: bold; /* Optional: Add bold styling */
    color: #fff; /* Optional: Adjust text color */
}

.specific-text-2 {
    font-size: 1.7em !important; /* Adjust size as needed */
    font-weight: bold; /* Optional: Add bold styling */
    color: #fff; /* Optional: Adjust text color */
}

.promo-bar:hover .underline-animation {
    width: 100%;
    transition: width 0.3s ease-out;
}

.underline-animation {
    width: 0;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-out;
}

.elite-box img[src="visibility2.png"] {
    width: 115px; /* Adjust size as needed */
    height: auto; /* Maintains aspect ratio */
}

.elite-box img[src="poopststation3.png"] {
    width: 75px; /* Adjust size as needed */
    height: auto; /* Maintains aspect ratio */
}

.elite-box img[src="sunandflowersicon2.png"] {
    width: 110px; /* Adjust size as needed */
    height: auto; /* Maintains aspect ratio */
}

.elite-box img[src="poopststation5.png"] {
    width: 75px; /* Adjust size as needed */
    height: auto; /* Maintains aspect ratio */
}