/* styles.css */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

#services-section {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.service {
    margin-bottom: 40px;
}

.content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.text {
    flex: 1;
}

.text h2 {
    font-size: 1rem;
    color: #0077b6;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.text h1 {
    font-size: 2rem;
    margin: 0;
}

.text h3 {
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
}

.text p {
    font-size: 1rem;
    margin: 10px 0 20px;
}

.image {
    width: 40%; /* Increased by 30% */
    max-width: 400px;
}

.color-palette {
    margin-top: 40px;
}

.color-palette h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.palette {
    display: flex;
    gap: 10px;
}

.color {
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
}
