/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #1f2937;
            overflow-x: hidden;
            background: #f8fafc;
        }

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

        

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
			
           
    min-height: 100vh;
    background-image: url(/images/dbg.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
        }

        

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 900px;
            padding: 0 24px;
        }

        .quote-section {
            position: relative;
        }

        .quote-mark {
            font-size: 48px;
            font-weight: 700;
            color: #60a5fa;
            line-height: 1;
        }

        .quote-mark.closing {
            position: absolute;
            right: 0;
            bottom: -24px;
        }

        .quote-text {
            font-size: 28px;
            font-weight: 400;
            line-height: 1.3;
            margin: 24px 0 40px !important;
            letter-spacing: 0.5px;
            color: #424242;
        }

        .quote-author {
            margin-top: 32px;
            font-size: 14px;
        }

        .quote-author strong {
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .quote-author span {
            font-weight: 400;
            opacity: 0.9;
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 36px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 48px;
            color: #1f2937;
        }

        /* About Section */
        .about-section {
            background: white;
            border-top: 1px solid #e5e7eb;
        }

        .about-text {
            font-size: 18px;
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            font-weight: 400;
            color: #4b5563;
        }

        /* Services Section */
        .services-section {
            background: #f8fafc;
            border-top: 1px solid #e5e7eb;
        }

        .services-intro {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 16px;
            color: #6b7280;
            text-align: center;
            max-width: 600px;
            margin: 0 auto 48px;
        }

        .services-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .service-item {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            transition: all 0.2s ease;
        }

        .service-item:hover {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .service-title {
            font-size: 18px;
            font-weight: 600;
            color: #1f2937;
            cursor: pointer;
            padding: 20px 24px;
            transition: all 0.2s ease;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            user-select: none;
        }

        .service-title:hover {
            background: #f8fafc;
        }

        .service-title::after {
            content: '+';
            font-size: 24px;
            font-weight: 600;
            color: #3b82f6;
            transition: transform 0.3s ease;
            line-height: 1;
        }

        .service-item.active .service-title::after {
            transform: rotate(45deg);
        }

        /* Fixed Accordion Content Styles */
        .service-content {
            overflow: hidden;
            transition: all 0.3s ease;
            background: #f8fafc;
            max-height: 0;
            opacity: 0;
        }

        .service-item.active .service-content {
            max-height: 300px; /* Increased from 200px */
            opacity: 1;
            padding: 20px 24px;
        }

        .service-content p {
            color: #4b5563;
            line-height: 1.6;
            font-size: 15px;
            margin: 0;
        }

        /* Coverage Section */
        .coverage-section {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .coverage-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url(https://dilofi.com/images/herobg.png);
            opacity: 0.3;
            z-index: 0;
        }

        .coverage-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .coverage-title {
            font-size: 32px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 32px;
            color: white;
        }

        .coverage-text {
            font-size: 18px;
            line-height: 1.7;
            font-weight: 400;
            opacity: 0.9;
            color: #e2e8f0;
        }

        /* Footer */
        .footer {
            background: white;
            padding: 60px 0 40px;
            border-top: 1px solid #e5e7eb;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-contact {
            font-size: 16px;
            color: #6b7280;
            font-weight: 500;
        }

        .footer-copyright {
            font-size: 14px;
            color: #9ca3af;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 73px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
                padding: 20px 0;
                gap: 16px;
                border-bottom: 1px solid #e5e7eb;
            }

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

            .quote-text {
                font-size: 20px;
            }

            .quote-mark {
                font-size: 36px;
            }

            .section-title {
                font-size: 28px;
            }

            .about-text {
                font-size: 16px;
            }

            .coverage-title {
                font-size: 24px;
            }

            .coverage-text {
                font-size: 16px;
            }

            .service-title {
                font-size: 16px;
                padding: 16px 20px;
            }

            .container {
                padding: 0 16px;
            }

            .section {
                padding: 60px 0;
            }
        }

        @media (max-width: 480px) {
           

            .quote-text {
                font-size: 18px;
                line-height: 1.4;
            }

            .quote-mark {
                font-size: 32px;
            }

            .section-title {
                font-size: 24px;
            }

            .section {
                padding: 50px 0;
            }
        }

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

        .hero-content,
        .about-text,
        .services-list,
        .coverage-content {
            animation: fadeInUp 1s ease forwards;
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Additional dashboard-style elements */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .stat-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 24px;
            text-align: center;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: #3b82f6;
        }

        .stat-label {
            font-size: 14px;
            color: #6b7280;
            margin-top: 8px;
        }
	
/* Extension Chrome Section */
.extension-section {
    background-color: #f9fafb;
    padding: 60px 20px;
    text-align: center;
}

.extension-section .section-title {
    font-size: 32px;
    color: #111827;
    margin-bottom: 20px;
}

.extension-intro {
    font-size: 18px;
    color: #374151;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.extension-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.extension-features li {
    font-size: 16px;
    color: #4b5563;
    margin: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.extension-cta {
    margin-top: 20px;
}

.extension-cta .btn {
    background-color: #3b82f6;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.extension-cta .btn:hover {
    background-color: #2563eb;
}
