body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #f0e6d6; /* Closer match to image background */
    color: #333; /* Updated to match the truck's text color */
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

header img {
    width: 250px; /* Further increase image size */
    display: inline-block;
    margin: 0 10px;
}

header {
    padding-bottom: 10px; /* Add padding to separate images from nav */
}

p {
    font-size: 1.1em; /* Increase font size by 1px */
    font-weight: bold; /* Make text bold */
}

h1, h2, h3, p, a {
    color: #a51d94; /* Apply the color to headings, paragraphs, and links */
}

h1, h2, p, ul {
    text-align: center;
    margin: 0 20px;
}

h1 {
    font-size: 3em; /* Larger font size */
    font-weight: bold;
    margin: 20px 0;
    padding: 10px 0;
    color: #d2691e; /* Use a color that matches the bull's brown */
}

h2 {
    font-size: 2.5em; /* Larger font size for section headers */
    color: #4a7c59; /* Match color scheme */
}

p, ul li {
    color: #666;
}

ul {
    list-style-type: none;
    padding: 0;
}

nav {
    width: 100%;
    background-color: #4a7c59;
    padding: 0;
}

nav .nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

nav a:visited {
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
    display: block;
    transition: background-color 0.3s ease;
}

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

nav ul li {
    margin-right: 20px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
    display: block;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #ff6f61; /* Updated to match the bull's color */
}

nav ul li:hover {
    background-color: #d2691e;
}

@media (min-width: 768px) {
    body {
    /*    padding: 20px;*/
    }

    h1, h2, p, ul {
        max-width: 600px;
    }
}

@media (min-width: 1024px) {
    body {
    /*    padding: 40px;*/
    }

    h1, h2, p, ul {
        max-width: 800px;
    }
}

p, ul {
    margin: 20px 0;
    line-height: 1.6;
}

section {
    width: 100%;
    padding: 60px 20px;
    margin: 0;
    box-sizing: border-box;
}

.section-background {
    width: 100%;
    margin: 0;
    padding: 0;
}

.section-foreground, .dafaq {
    max-width: 1512px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

#services .section-foreground {
    width: 80%;
}

#services {
    background-color: #d2691e; /* Match the welcome text color */
}

#faq {
    background-color: #ffe0b2; /* Light orange */
    min-width: 100%;
}

#locations {
    background-color: #bbdefb; /* Light blue */
}

#contact {
    background-color: #d7ccc8; /* Earthy wood tone */
}

#blog {
    background-color: #e0f7fa;
}

#blog h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

#blog article {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#blog h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

#blog p {
    font-size: 1em;
    line-height: 1.6;
}

.cta {
    background-color: #ff7043;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin: 20px 0;
}

.cta:hover {
    background-color: #d84315;
}

.cta-text {
    flex: 1;
    text-align: left;
}

.cta-text p {
    color: #006ba3; /* Font color matching Gwen's shirt */
    text-decoration: none;
}

.cta-text p:visited {
    color: #006ba3; /* Ensure color remains after click */
    text-decoration: none;
}

.qr-code {
    margin-left: 20px;
    width: 100px;
    height: 100px;
}

footer {
    position: relative;
    background-color: #4a7c59;
    padding: 20px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:visited {
    color: #fff;
}

footer p {
    text-align: center;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 60px; /* Increased margin for more spacing */
}

.service-block {
    display: inline-block;
    width: 20%;
    margin: 1.5%;
    vertical-align: top;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.service-block h3 {
    font-size: 1.2em; /* Smaller font size for service titles */
    margin-bottom: 10px;
    color: #006ba3;

}

.service-block p {
    font-size: 0.8em; /* Smaller text size for service descriptions */
    color: #666;
}

a {
    color: #006ba3;
    text-decoration: none;
}

a:visited {
    color: #006ba3; /* Ensure lavender color remains after click */
}

.faq-section {
    cursor: pointer;
    padding: 10px;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    margin-bottom: 5px;
    width: 100%; /* Full width for FAQ section */
    box-sizing: border-box;
}

.faq-content {
    display: none;
    padding: 10px;
    background-color: #f9f9f9;
    border-top: 1px solid #ccc;
}

.faq-section.active .faq-content {
    display: block;
} 

@media (max-width: 768px) {
    .service-block {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .service-block {
        width: 45%;
        margin-bottom: 20px;
    }
}

@media (min-width: 1025px) {
    .service-block {
        width: 30%;
        margin-bottom: 20px;
    }
} 

@media (min-width: 1025px) {
    .section-foreground {
        min-width: 80%;
    }
} 

.footer-text {
    font-size: 1.2em;
    color: #ffffff;
    background-color: #4a7c59;
    padding: 20px;
    text-align: center;
}

.footer-link {
    color: #d4a017;
} 

.cta-link {
    color: white;
    font-weight: bold;
    text-align: right;
}

.cta-link:hover {
    color: #7a2b2e;
} 

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form label {
    margin-bottom: 10px;
    font-weight: bold;
}

form input, form textarea {
    width: 100%;
    max-width: 400px;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #4a7c59;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #3b5f47;
} 

#scrollToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background-color: #4a7c59;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#scrollToTop:hover {
    background-color: #3b5f47;
} 