body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: #314b57;
    color: white;
    padding: 20px;
}

h1, h2, h3, h4, h5, h6{
 font-family: "Roboto Slab", serif;   
}

p{
    font-family: Arial, Helvetica, sans-serif;
}

.header-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.header-content .services {
    flex: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}

.header-content .services div {
    margin: 10px;
    text-align: center;
}

.header-content .services img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}

.header-content .map {
    flex: 2;
    text-align: center;
}

.header-content .map img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 0px;
}

.service-area {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    align-items: center;
}

.service-area img {
    flex: 1 1 50%;
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 10px;
}

.service-area .content {
    flex: 1 1 50%;
    padding: 20px;
}

.articles {
    padding: 20px;
    background-color: #fff;
}

.articles h2 {
    text-align: center;
}

.article-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.article {
    background-color: white;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    flex: 1 1 calc(33% - 20px);
    box-sizing: border-box;
}

.article img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.article h3 {
    font-size: 1.2em;
    margin: 10px 0;
}

.article p {
    font-size: 0.9em;
}

.article a {
    display: inline-block;
    margin-top: 10px;
    color: #ab3c3c;
    text-decoration: none;
}

.article a:hover {
    text-decoration: underline;
}

footer {
    background-color: #2a3f4e;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }

    .header-content .services, .header-content .map {
        flex: 1 1 100%;
    }

    .service-area {
        flex-direction: column;
    }

    .service-area img, .service-area .content {
        flex: 1 1 100%;
    }

    .article {
        flex: 1 1 100%;
    }
}