body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.logo {
    width: 80px;
    height: 80px;
}

h1 {
    font-size: 24px;
    margin: 0;
}

#services {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.service {
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service p {
    font-size: 16px;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #0056b3;
}

.button.disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}

@media (max-width: 768px) {
    h1 {
        font-size: 20px;
    }

    .service h2 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 18px;
    }

    .service h2 {
        font-size: 16px;
    }
}
