/* General Styles */
body {
    background: url("assets/image/information_1280.jpg") center/cover no-repeat;
    font-family: Times New Roman, Times, serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header */
header {
    background-color: rgba(153, 153, 153, 0.5);
    color: white;
    padding: 20px 20px;
}

.btn {
    background: #999999;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

/* Services Section */
#services {
    padding: 40px 20px;
    height: 700px; /* Adjust height as needed */
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.service {
    background-color: rgba(153, 153, 153, 0.5);
    padding: 20px;
    color: white;
    width: 30%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
#contact {
    background-color: rgba(153, 153, 153, 0.5);
    color: white;
    padding: 40px 20px;
}

#contact-form input, #contact-form textarea {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

.btn:hover {
    background: #ffa500;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 10px;
}

a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: grey;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}
