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

header {
    align-items: center;
    background-color: #34495e;
    color: white;
    padding: 20px;
    position: relative;
    text-align: center;
}

.header-content {
    display: flex;
    align-items: center;
}

.menu-button {
    justify-self: start; /* Align the button to the left */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative; /* Ensure positioning works with the menu */
    z-index: 1100; /* Ensure button stays above the menu */
}

.menu-button .bar1, .menu-button .bar2, .menu-button .bar3 {
    width: 100%;
    height: 4px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    position: absolute;
    top: 40px; /* Position menu slightly below the button */
    right: 10px; /* Align menu to the right of the screen or button */
    width: 200px; /* Set a fixed width for the menu */
    padding: 10px; /* Add padding inside the menu */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 8px; /* Add rounded corners for a cleaner look */
}

.menu-item {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #000;
    width: 100%;
    text-align: center;
}

.menu-item:hover {
    background-color: #f0f0f0;
}

.service-section {
    padding: 40px 20px;
    margin: 20px auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px; /* Center and limit width */
}
h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}
h3 {
    color: #2980b9;
    margin-top: 20px;
}
p {
    margin: 10px 0;
}
ul {
    list-style-type: disc;
    padding-left: 20px;
}
/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #2c3e50;
    color: white;
}

footer p a {
    color: #4fbb74; /* Change default link color */
    text-decoration: none; /* Optional: Remove underline */
}

footer p a:hover {
    color: #3498db; /* Change default link color */
}