.advantages-section {
            position: relative;
            /* min-height: 100vh; */
            padding:30px 20px;
            /* background: url('../../assets/images/about-us/bg.png'); */
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .container-advantages {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            width: 65%;
            margin: auto;
            margin-bottom: 30px;
            color: white;
            background-color: white;
        }

        .section-header h1 {
            font-size: 3.5em;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .section-header p {
            font-size: 1.1em;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
            opacity: 0.95;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .advantage-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #00a8ff, #0088cc);
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .icon-wrapper {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #00a8ff, #0088cc);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 168, 255, 0.3);
        }

        .icon-wrapper svg {
            width: 38px;
            height: 38px;
            fill: white;
        }

        .advantage-card h3 {
            font-size: 1.5em;
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .advantage-list {
            list-style: none;
        }

        .advantage-list li {
            color: #555;
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
            font-size: 0.95em;
            line-height: 1.6;
        }

        .advantage-list li::before {
            content: '➤';
            position: absolute;
            left: 0;
            color: #00a8ff;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .section-header h1 {
                font-size: 2.5em;
            }
            .section-header{
                width: 100%;
            }

            .advantages-grid {
                grid-template-columns: 1fr;
            }

            .advantage-card {
                padding: 30px 25px;
            }
        }