/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    margin: 0;
}

p {
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #2C3E50;
    color: #ffffff;
    padding: 20px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 20px;
}

header h1 {
    font-size: 2em;
}

/* Main Content Styles */
main {
    /* padding: 40px 20px; */
    background-color: #f4f4f4;
}

.services {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;

}

.services h2 {
    margin-bottom: 40px;
    font-size: 2em;
    color: #333333;
}

.service-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-item {
    background-color: #ffffff;
    width: 30%;
    margin-bottom: 20px;
    margin-left:1px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    margin-bottom: 10px;
    color: #2C3E50;
}

.service-item p {
    color: #666666;
}

/* Footer Styles */
footer {
    background-color: #2C3E50;
    color: #ffffff;
    text-align: center;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-item {
        width: 45%;
    }
}

@media (max-width: 480px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-item {
        width: 100%;
    }
}