/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Text */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2, h3 {
    margin-bottom: 10px;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
#hero {
    background-color: rgb(250, 250, 246);
    padding: 5% 0;
    text-align: center;
}

.cta-button {
    padding: 10px 20px;
    background-color: #ff9900;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #cc7a00;
}

/* About Section */
#about {
    padding: 50px;
    text-align: center;
}

#about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 20px auto;
}

/* Services Section */
#services {
    background-color: #f9f9f9;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service {
    width: 33%;
    font-size: 20px;
    height:200px;
    display: flex;
    flex-direction: row;
    text-align: center;
}
.service p{
    margin:auto;
    word-break: break-all;
}

/* Contact Section */
#contact {
    padding: 50px;
    background-color: #fff;
    text-align: center;
}

#contact form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

form input, form textarea, form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

form button {
    background-color: #333;
    color: white;
    border: none;
}

form button:hover {
    background-color: #555;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}
#divdown{
    display:flex;
    flex-direction: column;
}
