 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1.6;
            color: #333;
        }

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

        /* Header */
        .header {
            background: #000197;
            color: white;
            text-align: center;
            padding: 60px 20px;
        }

        .header-badge {
            background: #1a4fff;
            display: inline-block;
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .header h1 {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.1;
        }

        .highlight {
            color: #FFD700;
        }

        .subheader {
            font-size: 1.3rem;
            margin-top: 20px;
            opacity: 0.9;
            font-weight: 400;
        }

        /* Main Content */
        .main-content {
            background: #f8f9fa;
            padding: 60px 20px;
        }

        .intro-text {
            text-align: center;
            font-size: 1.2rem;
            color: #4a4a4a;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .webinar-cta {
            text-align: center;
            margin-bottom: 50px;
        }

        .webinar-box {
            background: white;
            border: 2px dashed #000197;
            padding: 25px;
            border-radius: 12px;
            display: inline-block;
            margin: 0 auto;
            max-width: 900px;
        }

        .webinar-link {
            color: #000197;
            text-decoration: underline;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .without-wasting {
            color: #dc2626;
            font-weight: 700;
        }

        /* TESTIMONIALS SECTION */
        .testimonials-section {
            background: white;
            padding: 80px 20px;
        }

        .testimonials-section .container {
            max-width: 1200px;
        }

        .testimonials-section h2 {
            font-size: 2.8rem;
            margin-bottom: 60px;
            color: #333;
            font-weight: 700;
            text-align: center;
            line-height: 1.2;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 30px;
            width: 100%;
            align-items: start;
        }

        .testimonial-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            line-height: 0;
        }

        .testimonial-image:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }

        .testimonial-image img {
            width: 100%;
            height: auto;
            display: block;
            vertical-align: bottom;
        }

        /* Problem Section */
        .problem-section {
            background: #f8f9fa;
            padding: 80px 20px;
        }

        .problem-section h2 {
            font-size: 2.8rem;
            margin-bottom: 50px;
            color: #333;
            font-weight: 700;
            text-align: center;
            line-height: 1.2;
        }

        .problem-list {
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
        }

        .problem-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #4a4a4a;
        }

        .problem-item::before {
            content: "❌";
            margin-right: 15px;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .problem-conclusion {
            text-align: center;
            font-size: 1.1rem;
            color: #4a4a4a;
            margin-top: 40px;
            font-style: italic;
        }

        /* Solution Section */
        .solution-section {
            background: white;
            padding: 60px 20px;
        }

        .solution-box {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            overflow: hidden;
            max-width: 900px;
            margin: 0 auto;
        }

        .solution-header {
            background: #333;
            color: white;
            padding: 20px;
            text-align: center;
        }

        .solution-header h2 {
            font-size: 1.8rem;
            font-weight: 600;
        }

        .solution-content {
            padding: 40px;
        }

        .solution-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #4a4a4a;
        }

        .solution-item::before {
            content: "✅";
            margin-right: 15px;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .solution-conclusion {
            margin-top: 40px;
            font-size: 1.1rem;
            color: #4a4a4a;
            line-height: 1.7;
        }

        /* Form Section */
        .form-section {
            background: #f8f9fa;
            padding: 60px 20px;
            text-align: center;
        }

        .form-intro {
            font-size: 1.2rem;
            color: #4a4a4a;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .form-urgency {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
        }

        .urgency-icon {
            font-size: 1.3rem;
        }

        .form-container {
            max-width: 500px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 25px;
            text-align: left;
        }

        .form-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            transition: border-color 0.3s ease;
            background: white;
        }

        .form-input:focus {
            outline: none;
            border-color: #000197;
            box-shadow: 0 0 0 3px rgba(0, 1, 151, 0.1);
        }

        .phone-input-container {
            display: flex;
            align-items: center;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            background: white;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }

        .phone-input-container:focus-within {
            border-color: #000197;
            box-shadow: 0 0 0 3px rgba(0, 1, 151, 0.1);
        }

        .country-code {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 15px 15px 15px 20px;
            background: #f8f9fa;
            border-right: 1px solid #e0e0e0;
            font-weight: 600;
        }

        .flag {
            width: 20px;
            height: 15px;
            background: linear-gradient(to bottom, #009639 33%, white 33%, white 66%, #009639 66%);
            border-radius: 2px;
        }

        .phone-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            font-size: 1rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: white;
        }

        .phone-input:focus {
            outline: none;
        }

        .submit-btn {
            width: 100%;
            background: #000197;
            color: white;
            padding: 18px;
            border: none;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: 600;
            font-family: 'Plus Jakarta Sans', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #000174;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 1, 151, 0.3);
        }

        /* Mobile Responsiveness */
        @media (max-width: 968px) {
            .testimonials-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.2rem;
            }

            .testimonials-section h2 {
                font-size: 2rem;
            }

            .problem-section h2 {
                font-size: 2rem;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .form-container {
                padding: 30px 20px;
                margin: 0 10px;
            }

            .country-code {
                padding: 15px 10px;
            }
        }

        @media (max-width: 480px) {
            .header h1 {
                font-size: 1.8rem;
            }

            .header-badge {
                font-size: 1rem;
                padding: 10px 20px;
            }

            .testimonials-section h2 {
                font-size: 1.8rem;
            }

            .problem-section h2 {
                font-size: 1.8rem;
            }

            .phone-input-container {
                flex-direction: column;
            }

            .country-code {
                width: 100%;
                justify-content: center;
                border-right: none;
                border-bottom: 1px solid #e0e0e0;
            }
        }