/* Extracted from app/Views/frontend/services/view.php (stvorennya-saytiv) during CSS refactor. */

.development-process {
            background-color: #ffffff;
            padding: 40px 20px;
        }



        .section-title {
            font-size: 28px;
            font-weight: bold;
            color: #16ad44;
            margin-bottom: 30px;
        }

        .steps {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .step {
            flex: 1 1 calc(20% - 20px);
            background-color: #eaf4fc;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .step:hover {
            transform: translateY(-5px);
        }

        .icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 15px;
            background-size: contain;
            background-repeat: no-repeat;
        }

        .research {
            background-image: url('icon-research.png');

        }

        .design {
            background-image: url('icon-design.png');
        }

        .development {
            background-image: url('icon-development.png');
        }

        .testing {
            background-image: url('icon-testing.png');
        }

        .launch {
            background-image: url('icon-launch.png');
        }

        .step h3 {
            font-size: 18px;
            color: #16ad44;
            margin-bottom: 10px;
        }

        .step p {
            font-size: 14px;
            color: #333;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .steps {
                flex-direction: column;
            }

            .step {
                flex: 1 1 100%;
                margin-bottom: 20px;
            }
        }
