.elementor-2871 .elementor-element.elementor-element-85fdcf4{--display:flex;}.elementor-2871 .elementor-element.elementor-element-1f551e5{--display:flex;}/* Start custom CSS for container, class: .elementor-element-85fdcf4 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #FFFFFF;
        }

        .hero-section {
            background: linear-gradient(135deg, #A160A4 0%, #CFABD4 100%);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .hero-content .subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            color: #FFFFFF;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .hero-badges {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .badge {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: #FFFFFF;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 500;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .cta-primary {
            display: inline-block;
            background: #FFFFFF;
            color: #A160A4;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateY(0);
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            color: #A160A4;
        }

        .features-section {
            padding: 80px 0;
            background: #EFEFEF;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            color: #A160A4;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .feature-card {
            background: #FFFFFF;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(161, 96, 164, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(161, 96, 164, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(161, 96, 164, 0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #A160A4, #CFABD4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
            color: #FFFFFF;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            color: #A160A4;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature-card p {
            color: #666;
            line-height: 1.7;
        }

        .methods-section {
            padding: 80px 0;
            background: #FFFFFF;
        }

        .methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .method-card {
            background: linear-gradient(135deg, #A160A4, #CFABD4);
            padding: 30px 25px;
            border-radius: 15px;
            text-align: center;
            color: #FFFFFF;
            transition: transform 0.3s ease;
        }

        .method-card:hover {
            transform: scale(1.05);
        }

        .method-card .icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .method-card h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .method-card p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .benefits-section {
            padding: 80px 0;
            background: #EFEFEF;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: #FFFFFF;
            border-radius: 10px;
            border-left: 4px solid #A160A4;
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            background: #A160A4;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .benefit-content h4 {
            color: #A160A4;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .benefit-content p {
            color: #666;
            font-size: 0.95rem;
        }

        .advantages-section {
            padding: 80px 0;
            background: #FFFFFF;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .advantage-card {
            background: #FFFFFF;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid #CFABD4;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(161, 96, 164, 0.1);
        }

        .advantage-card:hover {
            border-color: #A160A4;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(161, 96, 164, 0.15);
        }

        .advantage-card .icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #A160A4;
        }

        .advantage-card h4 {
            color: #A160A4;
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .advantage-card p {
            color: #666;
            line-height: 1.7;
        }

        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #A160A4 0%, #CFABD4 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,25 50,50 T100,50 V100 H0 Z" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: wave 15s ease-in-out infinite;
        }

        @keyframes wave {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-20px); }
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: #FFFFFF;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .cta-content p {
            font-size: 1.2rem;
            color: #FFFFFF;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-secondary {
            display: inline-block;
            background: transparent;
            color: #FFFFFF;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid #FFFFFF;
        }

        .cta-secondary:hover {
            background: #FFFFFF;
            color: #A160A4;
            transform: translateY(-2px);
        }

        .trust-indicators {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #FFFFFF;
            font-size: 0.9rem;
        }

        .trust-item .icon {
            width: 25px;
            height: 25px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            .hero-section,
            .features-section,
            .methods-section,
            .benefits-section,
            .advantages-section,
            .cta-section {
                padding: 50px 0;
            }
            
            .features-grid,
            .methods-grid,
            .benefits-grid,
            .advantages-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .trust-indicators {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
        }

        /* Structured Data JSON-LD */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }/* End custom CSS */