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

        body {
            font-family: "Poppins", "Segoe UI Emoji", "Apple Color Emoji", sans-serif;
            overflow-x: hidden;
            color: #333;
        }
		

        :root {
            --primary-blue: #2563eb;
            --light-green: #10b981;
            --dark-blue: #1e40af;
            --light-blue: #dbeafe;
            --text-dark: #1f2937;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo i {
            color: var(--light-green);
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-menu > li {
            position: relative;
        }

        .nav-menu > li > a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .nav-menu > li > a:hover {
            color: var(--light-green);
        }

        /* Mega Menu */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: -100px;
            background: white;
            min-width: 900px;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            display: none;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 1rem;
            z-index: 1001;
        }

        .mega-menu.active {
            display: grid;
        }

        .mega-menu-item {
            text-align: left;
        }

        .mega-menu-item h3 {
            color: var(--primary-blue);
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 5px;
            transition: background 0.3s;
        }

        .mega-menu-item h3:hover {
            background: var(--light-blue);
        }

        .mega-menu-item h3 i {
            color: var(--light-green);
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-login {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-login:hover {
            background: white;
            color: var(--primary-blue);
        }

        .btn-register {
            background: var(--light-green);
            color: white;
        }

        .btn-register:hover {
            background: #059669;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-green));
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s;
        }

        .hero-text p {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 2rem;
            animation: fadeInUp 1s 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            animation: fadeInUp 1s 0.4s both;
        }

        .btn-primary {
            background: white;
            color: var(--primary-blue);
            font-size: 1.1rem;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            font-size: 1.1rem;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary-blue);
        }

        .hero-images {
            position: relative;
            height: 500px;
            animation: fadeIn 1s 0.5s both;
        }

        .floating-image {
            position: absolute;
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            animation: float 3s ease-in-out infinite;
        }

        .floating-image i {
            font-size: 3rem;
        }

        .floating-image:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-image:nth-child(2) {
            top: 30%;
            right: 15%;
            animation-delay: 0.5s;
        }

        .floating-image:nth-child(3) {
            bottom: 20%;
            left: 20%;
            animation-delay: 1s;
        }

        .floating-image:nth-child(4) {
            bottom: 10%;
            right: 10%;
            animation-delay: 1.5s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* About Section */
        .about {
            padding: 6rem 2rem;
            background: #f9fafb;
        }

        .about-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            height: 500px;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-green));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .about-image i {
            font-size: 15rem;
            color: rgba(255,255,255,0.2);
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .about-text h2 span {
            color: var(--light-green);
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #6b7280;
            margin-bottom: 1rem;
        }

        /* Tools Section */
        .tools {
            padding: 6rem 2rem;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 3rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #6b7280;
        }

        .tools-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .category {
            margin-bottom: 5rem;
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--light-green);
        }

        .category-header i {
            font-size: 2rem;
            color: var(--primary-blue);
        }

        .category-header h3 {
            font-size: 2rem;
            color: var(--text-dark);
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
        }

        .tool-card {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .tool-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2);
            border-color: var(--primary-blue);
            text-decoration: none;
            color: inherit;
        }

        .tool-card i {
            font-size: 3rem;
            color: var(--light-green);
            margin-bottom: 1rem;
        }

        .tool-card h4 {
            font-size: 1.2rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .tool-card p {
            color: #6b7280;
            font-size: 0.9rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--light-blue), #ecfdf5);
        }

        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-green));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .testimonial-info h4 {
            color: var(--text-dark);
            margin-bottom: 0.3rem;
        }

        .testimonial-info p {
            color: #6b7280;
            font-size: 0.9rem;
        }

        .stars {
            color: #fbbf24;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            color: #6b7280;
            line-height: 1.6;
        }

        /* Video Section */
        .video-section {
            padding: 6rem 2rem;
            background: white;
        }

        .video-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            height: 600px;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-green));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 3rem;
            overflow: hidden;
        }

        .play-button {
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .play-button:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .play-button i {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-left: 0.3rem;
        }

        /* FAQ Section */
        .faq {
            padding: 6rem 2rem;
            background: #f9fafb;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text-dark);
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: var(--light-blue);
        }

        .faq-question i {
            color: var(--primary-blue);
            transition: transform 0.3s;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s;
            padding: 0 1.5rem;
            color: #6b7280;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 1.5rem 1.5rem 1.5rem;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* Blog Section */
        .blog {
            padding: 6rem 2rem;
            background: white;
        }

        .blog-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .blog-image {
            height: 250px;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-green));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog-image i {
            font-size: 5rem;
            color: white;
        }

        .blog-content {
            padding: 2rem;
        }

        .blog-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: #6b7280;
        }

        .blog-content h3 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .blog-content p {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .read-more {
            color: var(--primary-blue);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .read-more:hover {
            color: var(--light-green);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-section p {
            line-height: 1.8;
            opacity: 0.9;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.9;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--light-green);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--light-green);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            text-align: center;
            opacity: 0.8;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 350px;
            height: 100vh;
            background: white;
            z-index: 1002;
            overflow-y: auto;
            transition: left 0.3s ease;
            box-shadow: 2px 0 20px rgba(0,0,0,0.1);
        }

        .mobile-nav.active {
            left: 0;
        }

        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            z-index: 1001;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
        }

        .mobile-nav-header {
            padding: 1.5rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-nav-header .logo {
            font-size: 1.5rem;
        }

        .mobile-close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .mobile-nav-menu {
            list-style: none;
            padding: 1rem 0;
        }

        .mobile-nav-menu > li {
            border-bottom: 1px solid #e5e7eb;
        }

        .mobile-nav-menu > li > a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s;
        }

        .mobile-nav-menu > li > a:hover {
            background: var(--light-blue);
        }

        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            background: #f9fafb;
            transition: max-height 0.3s ease;
        }

        .mobile-submenu.active {
            max-height: 800px;
        }

        .mobile-submenu-item {
            padding: 0.8rem 2rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: #6b7280;
            border-bottom: 1px solid #e5e7eb;
        }

        .mobile-submenu-item i {
            color: var(--light-green);
            font-size: 1.1rem;
        }

        .mobile-submenu-item:hover {
            background: white;
            color: var(--primary-blue);
        }

        .mobile-auth-buttons {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-auth-buttons .btn {
            width: 100%;
            text-align: center;
        }

        @media (max-width: 1024px) {
            .nav-menu,
            .auth-buttons {
                display: none;
            }

            .mobile-menu-btn,
            .mobile-nav,
            .mobile-overlay {
                display: block;
            }

            .hero-content, .about-content {
                grid-template-columns: 1fr;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }

            .tools-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }

        @media (max-width: 640px) {
            .hero-text h1 {
                font-size: 2rem;
            }

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

            .footer-content {
                grid-template-columns: 1fr;
            }

            .blog-grid, .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }"

        :root {
            --primary-blue: #2563eb;
            --light-green: #10b981;
            --dark-blue: #1e40af;
            --light-blue: #dbeafe;
            --text-dark: #1f2937;
        }

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

        section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.2rem;
            margin-bottom: 40px;
            text-align: center;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: #64748b;
        }

        /* Website Builder Section */
        .website-builder {
            background: linear-gradient(135deg, #e0f2fe 0%, #f0fdfa 100%);
            position: relative;
            overflow: hidden;
        }

        .website-builder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%230ea5e9" opacity="0.05"><polygon points="0,0 1000,50 1000,100 0,100"/></svg>') no-repeat bottom;
            background-size: cover;
        }

        .website-content {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 60px;
        }

        .website-text {
            flex: 1;
        }

        .website-image {
            flex: 1;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
            transition: transform 0.3s ease;
        }

        .website-image:hover {
            transform: translateY(-10px);
        }

        .website-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .website-description {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #475569;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            border: none;
            cursor: pointer;
        }

        .btn-blue {
            background-color: var(--primary-blue);
            color: white;
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
        }

        .btn-blue:hover {
            background-color: var(--dark-blue);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
        }

        .websites-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .website-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background-color: white;
        }

        .website-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

        .website-item img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }

        .website-item-title {
            padding: 15px;
            text-align: center;
            font-weight: 600;
            color: var(--text-dark);
        }

        /* Ebook Builder Section */
        .ebook-builder {
            background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%);
            position: relative;
            overflow: hidden;
        }

        .ebook-builder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%2310b981" opacity="0.05"><polygon points="0,100 1000,50 1000,0 0,0"/></svg>') no-repeat top;
            background-size: cover;
        }

        .ebook-content {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 40px;
        }

        .ebook-text {
            flex: 1;
        }

        .ebook-image {
            flex: 1;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
            transition: transform 0.3s ease;
        }

        .ebook-image:hover {
            transform: translateY(-10px);
        }

        .ebook-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .ebook-description {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #475569;
        }

        .btn-green {
            background-color: var(--light-green);
            color: white;
            box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
        }

        .btn-green:hover {
            background-color: #059669;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
        }

        .features {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
        }

        .feature {
            text-align: center;
            flex: 1;
            padding: 0 20px;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--light-green), var(--primary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
        }

        .feature-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .feature-description {
            color: #64748b;
            font-size: 0.95rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .website-content, .ebook-content {
                flex-direction: column;
            }
            
            .websites-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .features {
                flex-direction: column;
                gap: 30px;
            }
        }

        @media (max-width: 576px) {
            .websites-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
   