body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #6694ff;;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #77aaff 3px solid;
}

header h1 {
    float: left;
}

header nav {
    float: right;
    margin-top: 10px;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 20px 0;
}

#home {
    background: #77aaff;
    color: #fff;
    padding-bottom: 50px;
}

#home h2 {
    text-align: center;
    margin: 20px 0;
}

#home p {
    text-align: center;
}

#home button {
    display: block;
    width: 200px;
    margin: 20px auto;
    padding: 10px;
    background: #fff;
    color: #77aaff;
    border: none;
    cursor: pointer;
}

#home button:hover {
    background: #333;
    color: #fff;
}

#about, #services, #contact {
    background: #f4f4f4;
}

#services .service {
    margin: 20px 0;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
}

#contact form {
    display: flex;
    flex-direction: column;
}

#contact form label {
    margin: 10px 0 5px;
}

#contact form input, #contact form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}


footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
.success-message {
    text-align: center;
    color: red;
    font-weight: bold;
}



/* Header styles */
.headertop {
    background-color: #2c3e50;
    color: #fff;
    padding: 1rem 0;
}

.containertop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* unvisited link */
a:link {
  color: white;
}

/* visited link */
a:visited {
  color: white;
}

/* mouse over link */
a:hover {
  color: white;
}

/* selected link */
a:active {
  color: white;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

nav ul li a {
    font-family: 'Arial', sans-serif;
    font-size: 20px; /* Adjust the font size as needed */
    /* Additional styles */
}

