body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    padding-top: 60px; /* Adjust for fixed nav bar */
    background-color: #f4f4f9;
    color: #a51d94; /* Font color matching Gwen's shirt */
    padding-bottom: 60px; /* Add padding to prevent content cutoff by footer */
}

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

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, h2 {
    color: #9c168e;
}

p, ul li {
    color: #666;
}

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

nav {
    background-color: #333;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

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

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

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: #555;
}

@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;
    }
}

h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin: 20px 0;
    padding: 10px 0;
}

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

.cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #bfbff5; /* Lavender background */
    color: #333; /* Darker text for better contrast */
    padding: 10px 20px;
    text-align: center;
    margin: 20px 0;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.8em; /* Increased font size for readability */
    text-decoration: none;
}

.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 {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
}

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

footer a:visited {
    color: #fff;
}

#services {
    font-size: 2.5em; /* Larger font size for h2 */
    margin-bottom: 30px;
}

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

.service-block {
    background-color: #f4f4f9;
    border: 1px solid #ddd;
    padding: 20px;
    width: 28%; /* Reduced width for better text wrapping */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px; /* Add margin for spacing between rows */
}

.service-block h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #006ba3;

}

.service-block p {
    font-size: 1em;
    color: #666;
}

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

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