body {
    background: linear-gradient(to bottom, rgba(102, 97, 97, 0.03), #fff 60%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #333;
    color: white;
}

.section-title {
    font-size: 2em;
    color: #1a1a2e;
}

.service-block {
    margin-bottom: 20px;
}

.service {
    text-align: center;
}

.service-title {
    font-size: 1.5em;
    color: #1a1a2e;
}

.process-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: white;
}

.process-step {
    width: 45%;
    max-width: 600px;
    margin: 10px;
}

.step-title {
    font-size: 1.5em;
    color: white;
}

#hero h2 {
    font-size: 3em;
    animation: fadeIn 2s ease-in-out;
}

#hero p {
    font-size: 1.5em;
    animation: fadeIn 2s ease-in-out 1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
