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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

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

        /* Header Styles */
        .header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #333;
        }

        .logo img {
            width: 40px;
            height: 40px;
            margin-right: 10px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: #FF0000;
        }

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

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #FF0000;
        }

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

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

        .btn-primary {
            background: #FF0000;
            color: white;
        }

        .btn-primary:hover {
            background: #E60000;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255,0,0,0.3);
        }

        .btn-secondary {
            background: transparent;
            color: #FF0000;
            border: 2px solid #FF0000;
        }

        .btn-secondary:hover {
            background: #FF0000;
            color: white;
        }

        .profile-btn {
            display: none;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #FFE5E5 0%, #FFFFFF 100%);
            padding: 4rem 0;
            min-height: 80vh;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-text .highlight {
            color: #FF0000;
        }

        .hero-text p {
            font-size: 1.25rem;
            color: #666;
            margin-bottom: 2rem;
        }

        .upload-area {
            border: 3px dashed #FF0000;
            border-radius: 15px;
            padding: 3rem;
            text-align: center;
            background: #FFF;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .upload-area:hover {
            border-color: #E60000;
            background: #FFFAFA;
        }

        .upload-area.dragover {
            border-color: #E60000;
            background: #FFEBEE;
        }

        .upload-icon {
            font-size: 3rem;
            color: #FF0000;
            margin-bottom: 1rem;
        }

        .upload-text {
            font-size: 1.25rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .file-types {
            color: #666;
            font-size: 0.9rem;
        }

        .features-text {
            text-align: center;
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

        .tool-card {
            background: #FF0000;
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
        }

        .tool-card:hover {
            background: #E60000;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255,0,0,0.3);
        }

        .hero-image {
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Steps Section */
        .steps {
            padding: 4rem 0;
            background: #F8F9FA;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 3rem;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .step-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-5px);
        }

        .step-icon {
            font-size: 3rem;
            color: #FF0000;
            margin-bottom: 1rem;
        }

        .step-number {
            background: #FF0000;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-weight: bold;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 4rem 0;
            background: white;
        }

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

        .testimonial-card {
            background: #F8F9FA;
            padding: 2rem;
            border-radius: 15px;
            border-left: 5px solid #FF0000;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .testimonial-author {
            font-weight: bold;
            color: #FF0000;
        }

        .testimonial-role {
            color: #666;
            font-size: 0.9rem;
        }

        /* Gallery Section */
        .gallery {
            padding: 4rem 0;
            background: #F8F9FA;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        /* About & Terms Sections */
        .about, .terms {
            padding: 4rem 0;
            background: #F8F9FA;
        }

        .terms {
            background: white;
        }

        /* Blog Section */
        .blogs {
            padding: 4rem 0;
            background: white;
        }

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

        .blog-card {
            background: #F8F9FA;
            padding: 2rem;
            border-radius: 15px;
            text-decoration: none;
            color: #333;
            transition: transform 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .blog-title {
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: #FF0000;
        }

        .blog-excerpt {
            color: #666;
            margin-bottom: 1rem;
        }

        .see-more {
            text-align: center;
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        /* Responsive Design */
        .mobile-menu {
            display: none;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: block;
                background: none;
                border: none;
                font-size: 1.5rem;
                color: #FF0000;
                cursor: pointer;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

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

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

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
        }

        .auth-buttons {
            flex-direction: column;
            gap: 0.5rem;
        }
        }

        /* Preview Styles */
        .image-preview {
            max-width: 100%;
            max-height: 300px;
            border-radius: 10px;
            margin: 1rem 0;
            display: none;
        }

        .preview-container {
            text-align: center;
        }

        .remove-image {
            background: #FF0000;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 1rem;
            display: none;
        }
