.service-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 15px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f7f9;
    color: #333;
}

.service-header {
    background-color: #0ea5e9;
    color: white;
    padding: 30px 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-header h1 {
    margin: 0;
    font-size: 2em;
}

.subtitle {
    font-size: 1.1em;
    opacity: 0.9;
    margin-top: 5px;
}

.step-section {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.step-section h2 {
    color: #0ea5e9;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-top: 0;
    font-size: 1.5em;
}

.step-content ol {
    padding-left: 20px;
    list-style-type: decimal;
}

.step-content ol li {
    margin-bottom: 10px;
}

.step-content a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: bold;
}

.step-content a:hover {
    text-decoration: underline;
}

hr {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin: 30px 0;
}

.highlight {
    background-color: #fffbe6;
    border-left: 5px solid #facc15;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    color: #78350f;
}

.service-footer {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

.main-page-button {
    display: inline-block;
    background-color: #64748b;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.main-page-button:hover {
    background-color: #475569;
}

.price-spoiler {
    background-color: #e0f2fe;
    border: 1px solid #90cdf4;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.price-spoiler summary {
    list-style: none;
    cursor: pointer;
    outline: none;
    font-weight: bold;
    color: #0ea5e9;
    padding: 5px 0;
    transition: color 0.3s;
}

.price-spoiler summary h2 {
    display: inline;
    color: inherit;
    border-bottom: none;
    padding-bottom: 0;
    margin: 0;
    font-size: 1.5em;
}

.price-content {
    padding-top: 15px;
    border-top: 1px dashed #c0d9e8;
    margin-top: 10px;
}

.price-content h3 {
    color: #1e40af;
    margin-top: 0;
    font-size: 1.3em;
}

.main-price {
    font-size: 1.8em;
    color: #22c55e;
    font-weight: bold;
    margin: 10px 0;
}

.small-text {
    font-size: 0.6em;
    font-weight: normal;
    color: #666;
}

.warning-text {
    color: #b91c1c;
    font-style: italic;
    margin-top: 15px;
}

.contact-buttons {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.viber-button,
.telegram-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    transition: background-color 0.3s ease;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    font-size: 1em;
}

.viber-button {
    background-color: #7360F2;
}

.viber-button:hover {
    background-color: #5d4dcb;
}

.telegram-button {
    background-color: #0088cc;
}

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

@media (max-width: 420px) {
    .contact-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .viber-button,
    .telegram-button {
        width: 40%;
        justify-content: center;
        box-sizing: border-box;
    }

    .price-spoiler summary h2 {
        font-size: 1.2em;
    }

    .main-price {
        font-size: 1.5em;
    }

    .service-header h1 {
        font-size: 1.5em;
    }

    .subtitle {
        font-size: 1em;
    }

    .step-section {
        padding: 15px;
    }

    .step-section h2 {
        font-size: 1.3em;
    }

    .download-button {
        width: 100%;
        box-sizing: border-box;
        padding: 15px 10px;
        font-size: 0.9em;
    }

    .main-page-button {
        width: 90%;
        box-sizing: border-box;
    }
}