    .howto-container {
        min-height: calc(100vh - 200px);
        margin: -1.5rem -1rem;
        padding: 2rem;
    }

    .howto-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
        padding: 2.5rem;
        animation: slideUp 0.5s ease;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .page-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .page-header h1 {
        color: #333 !important;
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        position: relative;
        display: inline-block;
    }

    .page-header h1::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 3px;
    }

    .page-header .subtitle {
        color: #666;
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    .breadcrumbs {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
        padding: 1rem;
        background: #f9fafb;
        border-radius: 12px;
        color: #6b7280;
        font-size: 0.95rem;
    }

    .breadcrumbs a {
        color: #667eea;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .breadcrumbs a:hover {
        color: #764ba2;
        text-decoration: underline;
    }

    .breadcrumbs i {
        font-size: 0.8rem;
        color: #9ca3af;
    }

    .breadcrumbs .current {
        color: #374151;
        font-weight: 500;
    }

    .section-title {
        color: #374151;
        font-size: 2rem;
        font-weight: 600;
        margin: 2rem 0 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .section-title i {
        color: #667eea;
        font-size: 2rem;
    }

    .section-title:first-of-type {
        margin-top: 0;
    }

    .steps-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .step-card {
        background: #f9fafb;
        border-radius: 20px;
        padding: 2rem 1.5rem;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        border: 2px solid transparent;
    }

    .step-card:hover {
        border-color: #667eea;
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    }

    .step-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0 auto 1.5rem;
        box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    }

    .step-icon {
        font-size: 2.5rem;
        color: #667eea;
        margin-bottom: 1rem;
    }

    .step-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 1rem;
    }

    .step-description {
        color: #6b7280;
        font-size: 1rem;
        line-height: 1.6;
    }

    .highlight-box {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 16px;
        padding: 2rem;
        margin: 2rem 0;
        color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .highlight-box-content {
        flex: 1;
        min-width: 250px;
    }

    .highlight-box-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .highlight-box-title i {
        font-size: 1.8rem;
    }

    .highlight-box-text {
        font-size: 1.1rem;
        opacity: 0.95;
        line-height: 1.6;
    }

    .highlight-box-time {
        background: rgba(255,255,255,0.2);
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
    }

    .highlight-box-time i {
        font-size: 1.3rem;
    }

    .info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .info-card {
        background: #f9fafb;
        border-radius: 16px;
        padding: 1.5rem;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .info-card:hover {
        border-color: #667eea;
        transform: translateY(-3px);
    }

    .info-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .info-content {
        flex: 1;
    }

    .info-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 0.5rem;
    }

    .info-text {
        color: #6b7280;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .payment-methods-showcase {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        margin: 2rem 0;
    }

    .payment-method-item {
        background: #f9fafb;
        border-radius: 12px;
        padding: 0.75rem 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 1rem;
        font-weight: 500;
        color: #1f2937;
        border: 2px solid #e5e7eb;
        transition: all 0.3s ease;
    }

    .payment-method-item:hover {
        border-color: #667eea;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(102, 126, 234, 0.1);
    }

    .payment-method-item i {
        color: #667eea;
        font-size: 1.2rem;
    }

    .custom-order-section {
        background: #f9fafb;
        border-radius: 16px;
        padding: 2rem;
        margin: 2rem 0;
        text-align: center;
        border: 2px dashed #e5e7eb;
    }

    .custom-order-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .custom-order-title i {
        color: #667eea;
    }

    .custom-order-text {
        color: #6b7280;
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .custom-order-button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 2.5rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .custom-order-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        color: white;
        text-decoration: none;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin: 2rem 0;
        flex-wrap: wrap;
    }

    .social-link {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1.5rem;
        background: #f3f4f6;
        border-radius: 12px;
        color: #4b5563;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        transform: translateY(-2px);
    }

    .social-link.telegram:hover {
        background: #229ED9;
        color: white;
    }

    .social-link.whatsapp:hover {
        background: #25D366;
        color: white;
    }

    .social-link i {
        font-size: 1.3rem;
    }

    .faq-section {
        margin: 3rem 0;
    }

    .faq-item {
        background: #f9fafb;
        border-radius: 12px;
        padding: 1.25rem;
        margin-bottom: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .faq-item:hover {
        border-color: #667eea;
    }

    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #1f2937;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .faq-question i {
        color: #667eea;
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    .faq-answer {
        display: none;
        padding-top: 1rem;
        margin-top: 1rem;
        border-top: 2px solid #e5e7eb;
        color: #6b7280;
        line-height: 1.6;
    }

    .faq-item.active .faq-answer {
        display: block;
    }

    .quick-actions {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .action-button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        background: #f3f4f6;
        border-radius: 12px;
        color: #4b5563;
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .action-button:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        transform: translateY(-2px);
    }

    .action-button i {
        font-size: 1rem;
    }

    @media (max-width: 768px) {
        .howto-card {
            padding: 1.5rem;
        }

        .page-header h1 {
            font-size: 2rem;
        }

        .section-title {
            font-size: 1.5rem;
        }

        .highlight-box {
            flex-direction: column;
            text-align: center;
        }

        .step-card {
            padding: 1.5rem;
        }

        .info-card {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .payment-methods-showcase {
            flex-direction: column;
            align-items: stretch;
        }

        .payment-method-item {
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .social-links {
            flex-direction: column;
        }

        .social-link {
            justify-content: center;
        }

        .custom-order-button {
            width: 100%;
            justify-content: center;
        }
    }
