/* Base resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #f9f9f9;
}

/* Header */
.hero {
    background: linear-gradient(135deg, #1e73be, #49a9e2);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About section */
.about {
    padding: 40px 20px;
    background: #fff;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
    color: #1e73be;
}

.about ul {
    max-width: 600px;
    margin: auto;
    list-style: none;
    padding-left: 20px;
}

.about ul li {
    margin-bottom: 12px;
    font-size: 1rem;
}

/* Steps section */
.steps {
    background: #eef6fb;
    padding: 40px 20px;
    text-align: center;
}

.steps h2 {
    font-size: 2rem;
    color: #1e73be;
    margin-bottom: 15px;
}

.steps ol {
    max-width: 600px;
    margin: auto;
    list-style: decimal inside;
}

.steps ol li {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Contact section */
.contacts {
    padding: 40px 20px;
    text-align: center;
    background: #fff;
}

.contacts h2 {
    font-size: 2rem;
    color: #1e73be;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background: #1e73be;
    color: #fff;
    padding: 12px 25px;
    margin: 8px 0;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: #155a8a;
}

/* Footer */
footer {
    background: #1e73be;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
}