body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #DDD5CB;
    color: #40556A;
}

h1, h2, h3, p {
    margin: 0 0 15px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

#hero {
    background-color: #178DAD;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.cta-button {
    background-color: #182B44;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px; /* Add margin to lower the button */
}

.cta-button:hover {
    background-color: #40556A;
}

#process {
    background-color: #182B44;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

#services {
    background-color: #FFF;
    color: #182B44;
    padding: 60px 20px;
    text-align: center; /* Center the text */
}

.service-list {
    display: flex;
    flex-wrap: wrap; /* Added for better responsiveness */
    justify-content: space-around;
}

.service-item {
    max-width: 30%;
    text-align: center;
    margin-bottom: 20px; /* Added margin for spacing on smaller screens */
}

#contact {
    background-color: #DDD5CB;
    padding: 60px 20px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form input, form textarea {
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    max-width: 500px;
}

form button {
    background-color: #40556A;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #182B44;
}

/* Styling for placeholder images */
.placeholder-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
}

/* How It Works Section */
.image-grid {
    display: flex;
    flex-wrap: wrap; /* Added for responsiveness */
    justify-content: space-between;
    margin-top: 20px;
}

.image-column {
    flex-basis: 30%; /* Each column takes up 30% of the width */
    text-align: center;
    margin-bottom: 20px; /* Added margin for spacing on smaller screens */
}

.image-column img {
    max-width: 100%; /* Ensure images fit within the column */
    height: auto;
    border-radius: 10px;
}

.image-column p {
    margin-top: 10px;
    font-size: 1em;
    color: #40556A; /* Adjust text color */
}

/* Global styling for section headings */
h2 {
    font-size: 2.5em; /* Same size for all section headings */
    text-align: center;
    margin-bottom: 30px;
    color: #182B44;
}

/* Header styling for logo and company name */
header {
    display: flex;
    justify-content: space-between; /* Ensures space between the logo and company name */
    align-items: center;
    padding: 20px;
    background-color: #FFF;
    width: 100%; /* Make the header take the full width of the page */
    box-sizing: border-box;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px; /* Adjust the size of the logo as needed */
    height: auto;
}

.company-name-container {
    margin-left: auto; /* Ensures the company name is pushed to the right */
}

.company-name {
    font-size: 1.5em;
    color: #182B44;
    font-weight: bold;
}

/* Media query for screens smaller than 600px */
@media screen and (max-width: 600px) {
    header {
        justify-content: center; /* Center the company name */
    }

    .logo-container {
        display: none; /* Hide the logo container */
    }

    .company-name-container {
        margin-left: 0; /* Reset margin */
        text-align: center; /* Center the company name */
        width: 100%; /* Ensure it takes the full width */
    }

    .company-name {
        font-size: 1.5em; /* Adjust as desired */
    }

    /* Adjustments for service items */
    .service-list {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        max-width: 80%; /* Make service items take up more width on mobile */
        margin-bottom: 20px;
    }

    /* Adjustments for image grid */
    .image-grid {
        flex-direction: column;
        align-items: center;
    }

    .image-column {
        flex-basis: 80%;
        margin-bottom: 20px;
    }

    /* Adjust form inputs for mobile */
    form input, form textarea {
        max-width: 100%;
    }
}

