            :root {
            --primary-blue: #2563eb;
            --primary-purple: #7c3aed;
            --gradient: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
            --text-primary: #1f2937;
            --text-secondary: #4b5563;
            --bg-light: #f9fafb;
            --bg-white: #ffffff;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

.cursor, .click-effect {
    position: fixed;   /* фиксируем относительно окна, а не body */
    top: 0;
    left: 0;
    will-change: transform;
    pointer-events: none; /* чтобы не мешал кликам */
    z-index: 9999;    /* поверх всего */
}
        body {
            background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
            color: var(--text-primary);
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: var(--bg-white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            /*background: var(--gradient);*/
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }
        .logo-image {
            width: 45px;
        }

        .logo-text {
            font-size: 24px;
            font-weight: bold;
            color: var(--text-primary);
        }
        .logo-icon a {
            color: white;
            text-decoration: none;
        }
       .logo-text a {
            color: var(--text-primary);
            text-decoration: none;
        }
/*
        nav {
            display: none;
        }
*/
        nav a {
            margin-left: 32px;
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            transition: all 0.3s ease;
        }

        nav a:hover {
            color: var(--primary-blue);
        }

        .btn {
            background: var(--gradient);
            color: white;
            padding: 8px 24px;
            border-radius: 8px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn:hover {
            box-shadow: var(--shadow-hover);
            transform: scale(1.05);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
        }

        .btn-outline:hover {
            background-color: rgba(37, 99, 235, 0.1);
        }

        /* Hero Section */
        .hero {
            padding: 80px 0 64px;
            text-align: center;
            background: linear-gradient(135deg, #f0f9ff, #f5f3ff);
        }

        .hero h1 {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .hero h1 span {
            display: block;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-top: 8px;
        }

        .hero p {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 768px;
            margin: 0 auto 32px;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 400px;
            margin: 0 auto 48px;
        }

        .hero-buttons .btn {
            padding: 16px 32px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
        }

        .steps-container {
            background-color: var(--bg-white);
            border-radius: 16px;
            box-shadow: var(--shadow);
            padding: 32px;
            max-width: 800px;
            margin: 0 auto;
        }

        .steps-container h3 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 24px;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .step {
            text-align: center;
        }

        .step-number {
            width: 64px;
            height: 64px;
            background-color: rgba(37, 99, 235, 0.1);
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            color: var(--primary-blue);
            font-weight: bold;
            font-size: 20px;
        }

        .step h4 {
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 18px;
        }

        .step p {
            color: var(--text-secondary);
            font-size: 16px;
        }

        /* Technologies Section */
        .technologies {
            padding: 80px 0;
            background-color: var(--bg-light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-title h2 {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 16px;
        }

        .section-title p {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 768px;
            margin: 0 auto;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .tech-card {
            background-color: var(--bg-white);
            border-radius: 12px;
            padding: 32px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
        }

        .tech-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-5px);
        }

        .tech-icon {
            width: 64px;
            height: 64px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: white;
        }

        .tech-blue { background: linear-gradient(90deg, #3b82f6, #2563eb); }
        .tech-purple { background: linear-gradient(90deg, #a855f7, #7c3aed); }
        .tech-green { background: linear-gradient(90deg, #10b981, #059669); }
        .tech-orange { background: linear-gradient(90deg, #f97316, #ea580c); }

        .tech-card h3 {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 12px;
        }

        .tech-card p {
            color: var(--text-secondary);
            font-size: 16px;
        }

        /* Industries Section */
        .industries {
            padding: 80px 0;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 48px;
        }

        .industry-card {
            background-color: var(--bg-white);
            border-radius: 12px;
            padding: 24px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
        }

        .industry-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-5px);
        }

        .industry-item {
            display: flex;
            align-items: center;
        }

        .industry-dot {
            width: 12px;
            height: 12px;
            background: var(--gradient);
            border-radius: 9999px;
            margin-right: 16px;
        }

        .industry-card span {
            font-weight: 500;
            font-size: 16px;
        }

        /* Webvisor Simulation Section */
        .webvisor-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f0f9ff, #f5f3ff);
            position: relative;
            overflow: hidden;
        }

        .webvisor-container {
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow);
            padding: 30px;
            position: relative;
            overflow: hidden;
            border: 1px solid #e5e7eb;
        }

        .webvisor-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f3f4f6;
        }

        .webvisor-logo {
            width: 40px;
            height: 40px;
            background: #ff0000;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
            font-weight: bold;
        }

        .webvisor-title {
            font-size: 20px;
            font-weight: 600;
            color: #1f2937;
        }

        .webvisor-subtitle {
            font-size: 14px;
            color: var(--text-secondary);
            margin-left: 10px;
        }

        /* Browser Frame */
        .browser-frame {
            background: white;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            position: relative;
            overflow: hidden;
            height: 500px;
            margin-bottom: 30px;
        }

        .browser-nav {
            background: #f3f4f6;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #e5e7eb;
        }

        .browser-controls {
            display: flex;
            gap: 8px;
            margin-right: 15px;
        }

        .control {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .control-red { background: #ef4444; }
        .control-yellow { background: #f59e0b; }
        .control-green { background: #10b981; }

        .address-bar {
            flex: 1;
            background: white;
            border: 1px solid #d1d5db;
            border-radius: 20px;
            padding: 8px 15px;
            font-size: 14px;
            color: #4b5563;
        }

        /* Website Simulation */
        .website-simulation {
            height: calc(100% - 60px);
            padding: 25px;
            position: relative;
            overflow: hidden;
            background: white;
        }

        .search-results {
            margin-bottom: 30px;
        }

        .search-result {
            padding: 15px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-result:hover {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-blue);
        }

        .search-result.active {
            background: #eff6ff;
            border-color: var(--primary-blue);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
        }

        .result-title {
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 8px;
            font-size: 18px;
        }

        .result-url {
            color: #4b5563;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .result-description {
            color: #6b7280;
            font-size: 14px;
            line-height: 1.5;
        }

        /* Cursor Animation */
        .cursor {
            position: absolute;
            width: 20px;
            height: 20px;
            /*background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="white" stroke="%233b82f6" stroke-width="1.5" d="M5,3 L5,17 L13,13 L17,17 L17,3 Z"/></svg>') no-repeat;*/
            pointer-events: none;
            z-index: 10;
            transition: transform 0.1s ease;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }

        /* Click Effect */
        .click-effect {
            position: absolute;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.3);
            transform: translate(-50%, -50%) scale(0);
            pointer-events: none;
            z-index: 9;
            animation: clickAnimation 0.6s ease-out;
        }

        @keyframes clickAnimation {
            0% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 0.7;
            }
            100% {
                transform: translate(-50%, -50%) scale(3);
                opacity: 0;
            }
        }

        /* Action Log */
        .action-log {
            background: #f9fafb;
            border-radius: 12px;
            padding: 20px;
            height: 150px;
            overflow-y: auto;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            border: 1px solid #e5e7eb;
        }

        .log-entry {
            margin-bottom: 8px;
            padding: 6px 0;
            border-bottom: 1px dashed #e5e7eb;
            animation: fadeIn 0.5s ease;
        }

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

        .timestamp {
            color: #6b7280;
            font-weight: bold;
            margin-right: 8px;
        }

        .action {
            color: #1f2937;
        }

        .highlight {
            color: var(--primary-blue);
            font-weight: 600;
        }

        .success {
            color: #10b981;
            font-weight: 600;
        }

        /* Steps Description */
        .steps-description {
            margin-top: 40px;
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow);
            border: 1px solid #e5e7eb;
        }

        .steps-grid-secondary {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 30px;
        }

        .step-card-secondary {
            text-align: center;
            padding: 25px;
            border-radius: 12px;
            background: #f9fafb;
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
        }

        .step-card-secondary:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            background: white;
        }

        .step-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 24px;
            font-weight: bold;
        }

        .step-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        .step-text {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* 5 Steps Section */
        .steps-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f0f9ff, #f5f3ff);
            position: relative;
            overflow: hidden;
        }

        .steps-container-main {
            display: flex;
            flex-direction: column;
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .step-card-main {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: flex-start;
            gap: 40px;
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            position: relative;
            overflow: hidden;
        }

        .step-card-main:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .step-card-main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient);
        }

        .step-number-main {
            min-width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            font-weight: bold;
            flex-shrink: 0;
        }

        .step-content-main {
            flex: 1;
        }

        .step-title-main {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        .step-description-main {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .step-highlight {
            background: linear-gradient(120deg, #dbeafe, #ede9fe);
            border-left: 4px solid var(--primary-blue);
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
            font-size: 15px;
            font-style: italic;
        }

        /* Final Step - Celebration */
        .step-card-main.final {
            background: linear-gradient(135deg, #dbeafe, #ede9fe);
            border: 2px solid var(--primary-blue);
        }

        .step-card-main.final::before {
            background: var(--gradient);
        }

        .trophy-icon {
            font-size: 40px;
            margin-right: 15px;
            color: #f59e0b;
        }

        /* CTA Button */
        .cta-container {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow);
            border: 1px solid #e5e7eb;
        }

        .cta-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .cta-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Pricing Section */
        .pricing {
            padding: 80px 0;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 48px;
        }

        .pricing-card {
            background-color: var(--bg-white);
            border-radius: 12px;
            padding: 32px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .pricing-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: rgba(37, 99, 235, 0.2);
        }

        .popular-tag {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient);
            color: white;
            padding: 4px 16px;
            border-radius: 9999px;
            font-size: 14px;
            font-weight: 600;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 24px;
        }

        .pricing-header h3 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .price {
            font-size: 36px;
            font-weight: bold;
            color: var(--primary-blue);
            margin-bottom: 8px;
        }

        .price-period {
            color: var(--text-secondary);
            font-size: 16px;
        }

        .features-list {
            margin-bottom: 32px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
        }

        .feature-icon {
            color: #10b981;
            margin-right: 12px;
            width: 20px;
            height: 20px;
        }

        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background-color: var(--bg-light);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: var(--bg-white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-bottom: 24px;
        }

        .faq-question {
            padding: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
        }

        .faq-answer {
            padding: 0 24px 24px;
            display: none;
        }

        .faq-answer.show {
            display: block;
        }

        .faq-answer p {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.7;
        }

        .arrow {
            transition: transform 0.3s ease;
        }

        .arrow.rotate {
            transform: rotate(180deg);
        }

        /* CTA Final */
        .cta-final {
            padding: 80px 0;
            background:linear-gradient(135deg, #f0f9ff, #f5f3ff);
            text-align: center;
        }

        .cta-final h2 {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 24px;
        }

        .cta-final p {
            font-size: 20px;
            margin-bottom: 32px;
            opacity: 0.9;
        }

        .cta-buttons-final {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 400px;
            margin: 0 auto 24px;
        }

        .cta-final .btn {
            padding: 16px 32px;
            font-size: 18px;
            font-weight: 600;
        }

        .cta-final .btn-outline {
            background: transparent;
        }

        .cta-final .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .telegram {
            margin-top: 24px;
            font-size: 16px;
            opacity: 0.8;
        }

        /* Footer */
        footer {
            background-color: #1f2937;
            color: white;
            padding: 48px 0;
            text-align: center;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        .footer-logo a {
            color: white;
            text-decoration: none;
        }
        .footer-logo-text {
            color: white;
            text-decoration: none;
        }
        .footer-logo-text a {
            font-size: 24px;
            font-weight: bold;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin: 24px 0;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: smaller;
        }

        .footer-links a:hover {
            color: white;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.5);
            margin-top: 24px;
            font-size: 14px;
        }

        /* Decorative Elements */
        .decoration {
            position: absolute;
            z-index: 1;
            opacity: 0.05;
        }

        .circle-1 {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: var(--primary-blue);
            top: -150px;
            right: -100px;
        }

        .circle-2 {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: var(--primary-purple);
            bottom: -50px;
            left: -50px;
        }

        .form-check {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin: 6px 0;
        font-size: 14px;
        line-height: 1.4;
        }

        .form-check input[type="checkbox"] {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
        margin-top: 2px;
        cursor: pointer;
        }

        .form-check label {
        cursor: pointer;
        color: #333;
        font-size: smaller;
        }

        .cookie-banner {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 600px;
        background: #fff;
        color: #000;
        padding: 15px 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: sans-serif;
        z-index: 9999;
        }

        .cookie-banner p {
        margin: 0;
        font-size: 14px;
        }

        .cookie-banner a {
        color: #000;
        text-decoration: underline;
        }

        .cookie-banner button {
        background: linear-gradient(90deg, #2563eb, #7c3aed);
        border: none;
        padding: 8px 16px;
        border-radius: 6px;
        cursor: pointer;
        font-weight: bold;
        }



         /* Стили для модалок */
        .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0; top: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.5);
        justify-content: center;
        align-items: center;
        }
        .modal-content {
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        max-width: 400px;
        width: 100%;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        .modal-content h2 { margin-top: 0; font-size: 20px; }
        .modal-content input, .modal-content textarea {
        width: 100%;
        padding: 10px;
        margin: 8px 0;
        border: 1px solid #ccc;
        border-radius: 8px;
        }
        .modal-content button {
        width: 100%;
        padding: 12px;
        background: linear-gradient(90deg, #2563eb, #7c3aed);
        color: #fff;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 16px;
        }
        .close {
        float: right;
        font-size: 22px;
        cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .tech-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }

            .section-title h2 {
                font-size: 30px;
            }

            .tech-grid {
                grid-template-columns: 1fr;
            }

            .industries-grid {
                grid-template-columns: 1fr;
            }

            .steps-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .steps-grid-secondary {
                grid-template-columns: 1fr;
            }

            .hero-buttons, .cta-buttons-final {
                flex-direction: column;
            }

            nav {
                display: none;
            }

            .webvisor-section {
                padding: 60px 0;
            }

            .steps-section {
                padding: 60px 0;
            }

            .step-card-main {
                flex-direction: column;
                text-align: center;
                gap: 20px;
                padding: 30px;
            }

            .step-card-main::before {
                width: 100%;
                height: 5px;
                top: 0;
                left: 0;
            }

            .cta-container {
                padding: 30px 20px;
            }

            .btn {
                display: block;
                width: 100%;
                max-width: 180px;
                margin: 10px auto;
            }
            /*
            .btn-outline {
                margin-left: 0;
            }*/
        }

        @media (max-width: 480px) {
            .section-header {
                margin-bottom: 40px;
            }

            .step-card-main {
                padding: 25px;
            }

            .step-number-main {
                width: 70px;
                height: 70px;
                font-size: 28px;
            }
        }
