body{
    overflow-x: hidden;
}
.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .hero-section {
            text-align: center;
            margin-bottom: 80px;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            color: #041427;
            margin-bottom: 20px;
            letter-spacing: -2px;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 400;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .testimonial-cta {
            text-align: center;
            margin: 20px auto 70px;
            padding: 35px 30px;
            background: #041427;
            color: #fff;
            border-radius: 18px;
            box-shadow: 0 12px 28px rgba(4, 20, 39, 0.2);
        }

        .testimonial-cta p {
            color: rgba(255, 255, 255, 0.8);
            margin: 12px 0 22px;
        }

        .testimonial-cta a {
            color: #fff;
        }

        .testimonial-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(4, 20, 39, 0.08);
            border: 1px solid rgba(4, 20, 39, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #041427;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(4, 20, 39, 0.12);
        }

        .testimonial-text {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 25px;
            font-style: italic;
            line-height: 1.7;
            position: relative;
        }

        .testimonial-text::before {
            content: '"';
            font-size: 4rem;
            color: #041427;
            position: absolute;
            top: -20px;
            left: -10px;
            font-family: Georgia, serif;
            opacity: 0.2;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #041427;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 15px;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-weight: 600;
            color: #333;
            font-size: 1.1rem;
        }

        .author-service {
            color: #666;
            font-size: 0.9rem;
            margin-top: 2px;
        }

        .rating {
            display: flex;
            margin-top: 10px;
        }

        .star {
            color: #ffc107;
            font-size: 1.2rem;
            margin-right: 2px;
        }

        .chat-testimonials {
            background: #ffffff;
            border-radius: 20px;
            padding: 50px;
            margin-top: 50px;
            box-shadow: 0 10px 30px rgba(4, 20, 39, 0.08);
            border: 1px solid rgba(4, 20, 39, 0.1);
        }

        .chat-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #041427;
            margin-bottom: 30px;
            text-align: center;
        }

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

        .chat-conversation {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .chat-message {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }

        .chat-message.customer {
            flex-direction: row-reverse;
        }

        .chat-bubble {
            max-width: 80%;
            padding: 12px 18px;
            border-radius: 18px;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .chat-message.business .chat-bubble {
            background: #041427;
            color: white;
            border-bottom-left-radius: 5px;
        }

        .chat-message.customer .chat-bubble {
            background: #e9ecef;
            color: #333;
            border-bottom-right-radius: 5px;
        }

        .chat-avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            margin: 0 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .chat-message.business .chat-avatar {
            background: #495057;
            color: white;
        }

        .chat-message.customer .chat-avatar {
            background: #041427;
            color: white;
        }

        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .stat-card {
            background: #ffffff;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(4, 20, 39, 0.1);
            box-shadow: 0 5px 20px rgba(4, 20, 39, 0.06);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #041427;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #666;
            font-size: 1rem;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonial-card {
                padding: 30px;
            }
            
            .chat-grid {
                grid-template-columns: 1fr;
            }
        }
