/* Reset basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Light purple background */
body {
    background-color: lightblue; /* light purple */
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: purple; /* purple */
    color: #fff;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    margin-left: 20px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.hero {
    background: url('img/hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
}

.hero p {
    font-size: 1.2em;
}

.cta-button {
    background-color: #9370DB; /* medium purple */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #7B68EE; /* slightly darker purple */
}

.services {
    padding: 60px 0;
    background: #fff;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-item {
    background: #f4f4f4;
    border: 1px solid #ddd;
    padding: 20px;
    width: 30%;
    margin-bottom: 20px;
    text-align: center;
}

.service-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.about, .contact {
    padding: 60px 0;
}

.about p {
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.contact form {
    max-width: 600px;
    margin: auto;
}

.contact label {
    display: block;
    margin: 10px 0 5px;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact button {
    background-color: #9370DB; /* medium purple */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact button:hover {
    background-color: #7B68EE; /* slightly darker purple */
}

footer {
    background: orange;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
