/* 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: 1200px; /* Adjust height as needed */
    color: white;
    text-align: left;
    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: 80%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background: #ffa500;
}

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