/* General Styles */
body {
    font-family: Lato, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #353C40;
    color: #fff;
    padding: 20px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    width: 50px;
    height: auto;
    margin-right: 20px;
}

.logobig {
    width: 500px;
    height: auto;
    margin-right: 20px;
}

.header-text {
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    margin: 0;
    font-size: 1.2rem;
}

/* Services Section */
.services {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.services h2 {
    text-align: center;
    color: #4545a7;
    margin-bottom: 20px;
}

.services-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service {
    flex: 1 1 calc(25% - 20px);
    margin: 10px;
    background-color: #f9f9f9;
    padding: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service h3 {
    color: #4545a7;
    margin-bottom: 10px;
}

.service p {
    margin: 0;
}

/* Footer */
footer {
    background-color: #353C40;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

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

footer a:hover {
    text-decoration: underline;
}
