css
/* Global Styles */
body {
    font-family: Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #1c81ad;
}

/* Header */
header {
    background-color: #ffffff;
    color: #06185a;
    padding: 0px 10%;
    text-align: center;
}

header .logo-container {
    margin-bottom: 0px;
}

.company-logo {
    max-width: 200px;
    height: auto;
}

header .company-town {
    font-size: 12px;
    /* font-weight: bold; */
    color: #06185a;
}
header .contact-info .phone-number {
    font-size: 36px;
    font-weight: bold;
    color: #06185a;
}

/* Section intro */
.intro {
    font-family: Helvetica, sans-serif;
    text-align: center;
    padding: 50px 20px;
    background-color: #1c81ad;
    color: #ffffff;
}

.intro h2 {
    font-size: 36px;
    margin: 0;
}

.intro p {
    font-size: 18px;
    margin-top: 20px;
}

/* Section services */
.services {
    text-align: center;
    padding: 40px 20px;
    background-color: #f4f4f4;
}

.services h2 {
    font-size: 30px;
    color: #06185a;
    margin-bottom: 40px;
}

.service-item {
    background-color: #ffffff;
    margin: 20px 0;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    font-size: 24px;
    color: #1c81ad;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
    color: #333;
}

/* Section about */
.about {
    font-family: Helvetica, sans-serif;
    padding: 40px 20px;
    text-align: center;
}

.about h2 {
    font-size: 30px;
    color: #06185a;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    color: #333;
}

/* Section contact */
.contact {
    text-align: center;
    padding: 40px 20px;
    background-color: #1c81ad;
    color: #ffffff;
}

.contact h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    margin-bottom: 20px;
}

.contact ul {
    list-style: none;
    padding: 0;
}

.contact ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #06185a;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}
