
        * {
            box-sizing: border-box;
            padding: 0;
            margin: 0;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: #f4f6fc;
            color: #1e1e2f;
        }

        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .badge {
            display: inline-block;
            padding: 6px 14px;
            font-size: 13px;
            background: #e1e8ff;
            color: #ff4f28;
            font-weight: 600;
            border-radius: 20px;
            margin-bottom: 12px;
            margin-top: 30px;
        }

        h1 {
            font-size: 32px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 8px;
        }

        .subtitle {
            font-size: 16px;
            color: #6b7280;
            margin-bottom: 40px;
        }

        .card-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
        }

        .card {
            width: 250px;
            /* Fixed card width */
            background: #fff;
            padding: 24px;
            border-radius: 16px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
        }

        .card-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 22px;
        }

        .blue {
            background: #e0f2ff;
            color: #0284c7;
        }

        .pink {
            background: #fde2e4;
            color: #d6336c;
        }

        .green {
            background: #d1fae5;
            color: #059669;
        }

        .yellow {
            background: #fef9c3;
            color: #ca8a04;
        }

        .purple {
            background: #ede9fe;
            color: #7c3aed;
        }

        .card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #1f2937;
            min-height: 48px;
            /* Adjust as needed */
            line-height: 1.4;
            text-align: center;
            word-wrap: break-word;
            white-space: normal;
        }

        .card ul {
            list-style: none;
            text-align: left;
            font-size: 15px;
            color: #4b5563;
            margin-bottom: 20px;
            padding: 0;
            width: 100%;
        }

        .card ul li {
            margin-bottom: 6px;
            position: relative;
            padding-left: 20px;
        }

        .card ul li::before {
            content: '✔';
            position: absolute;
            left: 0;
            top: 0;
            color: #10b981;
            font-size: 13px;
        }

        .btn {
            background: #eff6ff;
            border: none;
            border-radius: 9999px;
            padding: 10px 22px;
            color: #ff4f28;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: auto;
            width: 100%;
            text-align: center;
            display: block;
            text-decoration: none;
        }

        .btn:hover {
            background: #dbeafe;
        }

        /* Responsive Layout */
        @media (max-width: 1300px) {
            .card-container {
                justify-content: center;
                margin: 0 12px;
            }
        }

        @media (max-width: 1000px) {
            .card {
                width: 30%;
                min-width: 220px;
            }
        }

        @media (max-width: 768px) {
            .card {
                width: 45%;
            }
        }

        @media (max-width: 500px) {
            .card {
                width: 100%;
            }
        }



        /* === HERO SECTION === */
        .hero-ai {
            background: linear-gradient(135deg, #45df787e, #127a99ad);
            padding: 4rem 2rem;
            text-align: center;
            color:rgb(20, 28, 39);
            font-family: 'DM Sans', sans-serif;
        }

        .hero-content h1 {
            font-size: 2.6rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #0f172a;
        }

        .hero-content p {
            font-size: 1.1rem;
            color:rgba(255, 255, 255, 1);
            max-width: 700px;
            margin: 0 auto 2rem;
        }

        .cta-btn {
            display: inline-block;
            padding: 12px 26px;
            background-color: #ff4f28;
            color: white;
            border-radius: 999px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.3s ease;
        }

        .cta-btn:hover {
            background-color: #2563eb;
        }

        .hero-badge {
            margin-top: 1.5rem;
            font-size: 1rem;
            color: #0f172a;
            font-weight: 500;
            opacity: 0.8;
        }

        .hero-grid {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .ai-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            padding: 1.5rem;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            max-width: 280px;
            flex: 1;
            min-width: 250px;
            transition: transform 0.3s ease;
        }

        .ai-card:hover {
            transform: translateY(-6px);
        }

        .ai-card .icon {
            font-size: 32px;
            margin-bottom: 0.8rem;
        }

        .ai-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #1e293b;
        }

        .ai-card p {
            font-size: 16px;
            color: #64748b;
            line-height: 1.5;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-grid {
                flex-direction: column;
                align-items: center;
            }
        }


        /* content */


        .ged-info-section {
            background: #f8fbff;
            padding: 4rem 2rem;
            margin-top: 30px;
            margin-bottom: -30px;
            color: #1e293b;

        }

        .ged-container {
            display: flex;
            gap: 3rem;
            max-width: 1300px;
            margin: 0 auto;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .ged-left,
        .ged-right {
            flex: 1 1 45%;
            min-width: 300px;
        }

        .ged-left h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: #0f172a;
        }

        .ged-left p,
        .ged-right p {
            font-size: 1rem;
            line-height: 1.7;
            color: #475569;
            margin-bottom: 1.2rem;
        }

        .test-parts h4 {
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            color: #1e293b;
            font-weight: 700;
        }

        .test-parts ul {
            padding-left: 1rem;
            margin-bottom: 1.5rem;
            list-style-type: disc;
            color: #334155;
        }

        .test-parts ul li {
            margin-bottom: 0.5rem;
        }

        @media (max-width: 768px) {
            .ged-container {
                flex-direction: column;
            }
        }

        /* faq */
        .faq-section {
            max-width: 900px;

            margin: auto;
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
        }

        .faq-section h2 {
            text-align: center;

            font-size: 20px;
            margin-bottom: 1.5rem;
            color: #0f172a;
        }

        .more-btn {
            display: inline-block;
            margin: 0 auto 2rem auto;
            padding: 0.6rem 1.5rem;
            background: #ff4f28;
            color: white;
            font-weight: 600;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: background 0.3s ease;
            text-align: center;
        }

        .more-btn:hover {
            background:rgb(35, 137, 192);
        }

        .faq-item {
            border-bottom: 1px solid #ccc;
            padding: 1rem 0;
        }

        .faq-question {
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #1e293b;
        }

        .faq-answer {
            display: none;
            margin-top: 0.5rem;
            color: #475569;
            font-size: 1rem;
            line-height: 1.6;
        }

        .faq-question .icon {
            transition: transform 0.3s ease;
            font-size: 1.3rem;
            color: #ff4f28;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-question .icon {
            transform: rotate(45deg);
            /* + turns to x */
        }

        .share-section {
            text-align: center;
            margin: 2rem 0;

        }

        .share-section h3 {
            margin-bottom: 1rem;

            color: #000;
        }

        .share-icons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .share-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 15px;
            font-weight: 600;
            padding: 10px 16px;
            border-radius: 6px;
            color: #fff;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .share-btn i {
            font-size: 16px;
        }

        /* Platform-specific colors */
        .whatsapp {
            background-color: #25d366;
        }

        .facebook {
            background-color: #1877f2;
        }

        .twitter {
            background-color: #1da1f2;
        }

        .copy-link {
            background-color: #6c757d;
        }

        .share-btn:hover {
            opacity: 0.9;
        }


        .feedback-container {
            background: #fff;
            padding: 20px 25px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            max-width: 800px;
            border: 1px solid #ff4f28;
            margin-left: auto;
            margin-right: auto;
        }

        .feedback-container input.datatext {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            font-size: 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            max-height: 50px;
        }

        .datatext {
            width: 100%;
            height: 120px;
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 6px;
            resize: vertical;
            font-family: 'DM Sans  ', sans-serif;
            box-sizing: border-box;
        }

        .thank-you {
            margin-top: 15px;
            color: green;
            font-weight: 600;
            display: none;
        }

        .newbutton {
            margin-top: 12px;
            background: #ff4f28;
            border: none;
            color: white;
            font-size: 16px;
            padding: 10px 15px;
            border-radius: 6px;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s ease;
        }

        /* Center label text */
        .form-label {
            display: block;
            text-align: center;
            font-weight: 600;
        }

        @media (max-width: 500px) {
            .input-wrapper {
                flex-direction: column;
                align-items: stretch;
            }

            .unit {
                margin: 6px 0 0;
                text-align: right;
            }

            .btn-group {
                flex-direction: column;
            }

            .input {
                flex: 1;
                padding: 12px;
                font-size: 16px;
                border: 1.5px solid #ccc;
                border-radius: 8px;
                transition: border-color 0.2s;
            }

        }
