body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
}
header {
    background-color: #008080;
    color: white;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
    margin: 0;
    font-size: 2.5em;
}

p {
    font-size: 1.2em;
}

.button-container {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    margin-right:400px ;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.button-containerio {
    display: flex;
    gap: 20px;
    margin-top: -98px;
    margin-left: 400px;
    flex-wrap: wrap;
    justify-content: flex-start; /* Align buttons to the left */
    align-items: flex-start; /* Align buttons to the top */
    padding: 20px; /* Adjust padding as needed */
}


.service-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-btn:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    
}


footer {
    background-color: #333;
    color: white;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: auto;
}
