* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url("../images/hero.jpg") center / cover no-repeat;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #ff5a8a;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.btn:hover {
    background: #e04a76;
}

.section {
    padding: 70px 0;
}

.section.gray {
    background: #f6f6f6;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.steps {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.step {
    background: white;
    padding: 25px;
    border-radius: 6px;
    flex: 1;
}

.step h3 {
    margin-bottom: 10px;
}

.image {
    margin-top: 30px;
    max-width: 100%;
    border-radius: 6px;
}

.footer {
    background: #222;
    color: #aaa;
    text-align: center;
    padding: 25px 0;
    font-size: 14px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .steps {
        flex-direction: column;
    }
}
