<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Resets and Defaults */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* Typography Enhancements */
h1,
h2,
h3 {
    color: #102a43;
    /* Darker shade for better readability and emphasis */
    margin-bottom: 0.75em;
}

p {
    color: #334e68;
    /* Darker for readability */
    line-height: 1.8;
    /* Increased for better readability */
}

/* Containers and Flexbox */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    /* Increased padding for better spacing */
}

.header-flex,
.contact-flex,
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header Enhancements */
header {
    background: whitesmoke;
    /* Darker shade for more professional look */
    color: #ffffff;
    padding: 2em 0;
    /* Increased padding for a larger header */
}

#logo-container img {
    width: 200px;
    transition: transform 0.3s ease;
    /* Smooth scaling on hover */
}

#logo-container img:hover {
    transform: scale(1.05);
    /* Slightly increase size on hover for interaction */
}

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

nav ul li {
    margin-left: 2em;
    /* Increased spacing between nav items */
}

nav ul li a {
    color: black;
    text-decoration: none;
    padding: 0.5em 1em;
    border-radius: 5px;
    background-color: transparent;
    /* Set background transparent for a cleaner look */
}

nav ul li a:hover,
nav ul li a:focus {
    background-color: #ff6b6b;
    /* Subtle change on hover and focus for interaction */
}

/* Hero Section Enhancements */
#hero {
    background-image: linear-gradient(to right bottom, #7ccd4f, #9bcaeb);
    /* Gradient for visual interest */
    color: white;
    padding: 5em 0;
    /* More padding for a larger hero section */
    text-align: center;
    position: relative;
}

.cta-button {
    display: inline-block;
    padding: 1em 3em;
    background: #ff6b6b;
    /* Brighter color for primary action */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
    /* Subtle shadow for depth */
    transform: translateY(0);
    /* Set initial state for animation */
    margin-top: 5px;
}

.cta-button:hover,
.cta-button:focus {
    background-color: #f53d3d;
    /* Darker shade on hover for feedback */
    box-shadow: 0 15px 30px rgba(255, 61, 61, 0.5);
    transform: translateY(-3px);
    /* Lift button to indicate action */
}

/* Info Sections Enhancements */
.info-section {
    padding: 4em 0;
    /* More vertical padding for spacious sectioning */
    text-align: left;
    /* Align text to the left for natural reading */
    background-color: #f7f7ff;
    /* Light background for a clean look */
}

.bg-light {
    background-color: #ffffff;
    /* Pure white background for contrast */
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
    /* More gap for better separation */
}

.service-item {
    padding: 2em;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-item:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    /* Lift items to indicate interactivity */
}

/* Newsletter Section Enhancements */
#newsletter {
    background: #4f91cd;
    /* Calm, trust-inducing green */
    color: white;
    padding: 4em 0;
    text-align: center;
}

#newsletter-form {
    margin-top: 1em;
    display: inline-block;
}

#newsletter-form input[type=email] {
    padding: 1em;
    border: none;
    border-radius: 5px;
    margin-right: 0.5em;
    width: 240px;
    /* Set a fixed width for email input */
}

#newsletter-form button {
    padding: 1em 2em;
    border: none;
    border-radius: 5px;
    background-color: #ff6b6b;
    /* Darker green for button */
    color: white;
    cursor: pointer;
}

#newsletter-form button:hover {
    background-color: #f53d3d;
    /* Even darker on hover */
}

/* Contact and Address Section Enhancements */
.contact-form,
.address {
    max-width: 600px;
    width: 100%;
}

.contact-form form {
    margin-top: 2em;
}

.contact-form label {
    display: block;
    margin-bottom: 0.75em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 1em;
    margin-bottom: 1em;
    border: 2px solid #e1e1e1;
    /* Slightly thicker border for form fields */
    border-radius: 5px;
}

.contact-form textarea {
    height: 200px;
    /* Increase height for more writing space */
}

.address {
    margin-top: 2em;
    text-align: right;
}

/* Footer Enhancements */
footer {
    background: #d7dbdf;
    /* Matching header for consistency */
    color: #d0d9ff;
    /* Lighter text for contrast */
    text-align: center;
    padding: 2em 0;
    /* Increase padding for better visual space */
}

.footer-address {
    text-align: right;
    color: white;
    /* Ensure address is readable */
}

/* Testimonials Section Enhancements */
.testimonial-item {
    padding: 3em;
    /* More padding for a spacious feel */
    margin: 3em 0;
    background-color: #e8e9eb;
    /* Slight grey for differentiation */
    border-left: 5px solid #3498db;
    /* Add a colored border for visual interest */
}

.testimonial-item blockquote {
    font-style: italic;
    color: #4a4a4a;
    /* Darker for contrast */
    margin-bottom: 1.5em;
}

.testimonial-author {
    font-weight: bold;
    color: #2c3e50;
    /* Use a color that stands out */
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .header-flex,
    .contact-flex,
    .footer-flex {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 0.5em 0;
        /* Reduce margin for stacked layout */
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .footer-address {
        text-align: center;
        margin-top: 1em;
    }

    .contact-form,
    .address {
        width: 100%;
        margin-bottom: 2em;
    }
}</pre></body></html>