body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    text-align: center;
	
}

header {
    padding: 20px;
}

#logo {
    width: 250px;
}

#services {
   position: relative;
    top: 70px; /* Lowered the section */
    padding: 50px;
    background: linear-gradient(to bottom, #ff5500, #ff00aa); /* Warm Colors */
    color: white;
    border-radius: 10px;
    margin: 10px auto;
    max-width: 800px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

#contact {
position: relative;
    top: 60px;
    padding: 15px;
    background: linear-gradient(to bottom, #ff5500, #ff00aa); /* Warm Colors */
    color: white;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 500px;
    font-size: 14px;
}

form input, form textarea {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #ff5500;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #cc4400;
}

footer {
    position: relative;
    top: 70px;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: white;
    background: rgba(0, 0, 0, 0.6); /* Slight transparency */
    margin-top: 20px;
}

#headline {
    font-size: 42px; /* Increase font size */
    font-weight: bold;
    margin-top: -20px; /* Move it higher inside the box */
}

#description {
    font-size: 18px;
    margin-top: 10px;
}