 :root {
            --safaricom-green: #00A651;
            --safaricom-dark-green: #007A3D;
            --safaricom-red: #E31E24;
            --primary-bg: #ffffff;
            --text-dark: #333;
        }

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

        html {
            overflow-x: hidden;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-dark);
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
        }

        .container {
            max-width: 100%;
            overflow-x: hidden;
        }

        .navbar {
            background: linear-gradient(135deg, var(--safaricom-green), var(--safaricom-dark-green));
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
        }

        .hero-section {
            background: linear-gradient(135deg, var(--safaricom-green), var(--safaricom-dark-green));
            color: white;
            padding: 80px 0;
            text-align: center;
            overflow-x: hidden;
        }

        .section-title {
            color: var(--safaricom-green);
            font-weight: bold;
            margin-bottom: 2rem;
            text-align: center;
        }

        .package-card {
            background: var(--primary-bg);
            border: 2px solid var(--safaricom-green);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 100%;
        }

        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,166,81,0.2);
        }

        .package-title {
            color: var(--safaricom-green);
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .package-price {
            color: var(--safaricom-red);
            font-size: 1.5rem;
            font-weight: bold;
        }

        .btn-primary {
            background: var(--safaricom-green);
            border: none;
            border-radius: 25px;
            padding: 10px 25px;
            font-weight: bold;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 100%;
        }

        .btn-primary:hover {
            background: var(--safaricom-dark-green);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: var(--safaricom-red);
            border: none;
            border-radius: 25px;
            padding: 8px 20px;
            color: white;
            font-weight: bold;
            margin-left: 0;
            margin-top: 10px;
            width: 100%;
        }

        .till-number {
            background: #f8f9fa;
            border: 2px dashed var(--safaricom-green);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            margin-top: 15px;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .poster-section {
            background: #f8f9fa;
            padding: 60px 0;
            overflow-x: hidden;
        }

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

        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 20px;
            right: 20px;
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            color: white;
        }

        .services-section {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 60px 0;
            overflow-x: hidden;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            width: 100%;
            max-width: 100%;
        }

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

        .service-icon {
            font-size: 3rem;
            color: var(--safaricom-green);
            margin-bottom: 1rem;
        }

        .copy-btn {
            background: var(--safaricom-green);
            color: white;
            border: none;
            border-radius: 5px;
            padding: 5px 10px;
            font-size: 0.8rem;
            margin-left: 10px;
            cursor: pointer;
        }

        .best-deal {
            position: relative;
            overflow: hidden;
        }

        .best-deal::before {
            content: "HOT DEAL";
            position: absolute;
            top: 10px;
            right: -30px;
            background: var(--safaricom-red);
            color: white;
            padding: 5px 40px;
            font-size: 0.8rem;
            font-weight: bold;
            transform: rotate(45deg);
            z-index: 1;
        }

        .minutes-card {
            border-color: var(--safaricom-red) !important;
        }

        .minutes-card .package-title {
            color: var(--safaricom-red) !important;
        }

        .minutes-btn {
            background: var(--safaricom-red) !important;
            border-color: var(--safaricom-red) !important;
        }

        .minutes-btn:hover {
            background: #c41e24 !important;
            border-color: #c41e24 !important;
        }

        /* Enhanced Mobile Responsiveness */
        @media (max-width: 768px) {
            .container {
                padding-left: 15px;
                padding-right: 15px;
                max-width: 100%;
                overflow-x: hidden;
            }

            .row {
                margin-left: -5px;
                margin-right: -5px;
                max-width: 100%;
            }

            .col-md-6, .col-lg-4, .col-lg-3, .col-md-4 {
                padding-left: 5px;
                padding-right: 5px;
                margin-bottom: 1rem;
                max-width: 100%;
            }

            .hero-section {
                padding: 40px 15px;
                overflow-x: hidden;
            }
            
            .hero-section h1 {
                font-size: 1.8rem;
                line-height: 1.3;
            }
            
            .hero-section .lead {
                font-size: 1rem;
            }
            
            .hero-section .bg-white\/20 {
                display: block;
                margin-bottom: 0.5rem;
                font-size: 0.85rem;
                padding: 0.3rem 0.8rem;
                word-wrap: break-word;
            }
            
            .package-card {
                margin-bottom: 1rem;
                padding: 1rem;
                margin-left: 0;
                margin-right: 0;
                max-width: 100%;
                overflow: hidden;
            }
            
            .package-title {
                font-size: 1.1rem;
                word-wrap: break-word;
            }
            
            .package-price {
                font-size: 1.3rem;
            }
            
            .btn-primary, .btn-secondary, .minutes-btn {
                width: 100%;
                margin-bottom: 0.5rem;
                margin-left: 0;
                font-size: 0.9rem;
                padding: 12px 20px;
                word-wrap: break-word;
            }
            
            .navbar-brand {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 1.4rem;
                margin-bottom: 1.5rem;
                padding: 0 10px;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 25px;
                bottom: 15px;
                right: 15px;
            }
            
            .till-number {
                padding: 8px;
                font-size: 0.85rem;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }
            
            .service-card {
                padding: 1.2rem;
                margin-bottom: 1rem;
                max-width: 100%;
            }
            
            .service-icon {
                font-size: 2.5rem;
            }
            
            .alert {
                font-size: 0.9rem;
                padding: 10px;
                margin-bottom: 1rem;
                word-wrap: break-word;
            }
            
            .stats-section .stat-number {
                font-size: 2rem;
            }
            
            .stats-section .stat-label {
                font-size: 0.9rem;
            }
            
            .testimonial-card {
                padding: 1rem;
                margin-bottom: 1rem;
                max-width: 100%;
            }
            
            .faq-item {
                margin-bottom: 0.8rem;
                max-width: 100%;
            }
            
            .faq-question {
                font-size: 0.95rem;
                padding: 12px;
                word-wrap: break-word;
            }
            
            .faq-answer {
                padding: 12px;
                font-size: 0.9rem;
                word-wrap: break-word;
            }

            .poster-section {
                padding: 40px 10px;
            }
            
            .poster-image {
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.15);
                margin: 0 10px;
                max-width: calc(100% - 20px);
            }
        }

        @media (max-width: 576px) {
            .container {
                padding-left: 10px;
                padding-right: 10px;
                max-width: 100%;
            }

            .hero-section {
                padding: 25px 10px;
            }
            
            .hero-section h1 {
                font-size: 1.6rem;
                line-height: 1.2;
            }
            
            .hero-section .lead {
                font-size: 0.95rem;
            }
            
            .package-card {
                margin: 0 5px 1rem 5px;
                padding: 0.8rem;
            }
            
            .package-title {
                font-size: 1rem;
            }
            
            .package-price {
                font-size: 1.2rem;
            }
            
            .btn-primary, .btn-secondary, .minutes-btn {
                font-size: 0.85rem;
                padding: 10px 15px;
            }
            
            .section-title {
                font-size: 1.2rem;
                padding: 0 5px;
            }
            
            .poster-image {
                margin: 0 5px;
                max-width: calc(100% - 10px);
            }
            
            .till-number {
                font-size: 0.8rem;
                padding: 6px;
            }
            
            .copy-btn {
                font-size: 0.7rem;
                padding: 3px 6px;
                margin-left: 5px;
                margin-top: 5px;
            }
            
            .service-card {
                padding: 1rem;
            }
            
            .service-icon {
                font-size: 2rem;
            }
            
            .navbar-brand {
                font-size: 1rem;
            }
        }

        @media (max-width: 400px) {
            .container {
                padding-left: 8px;
                padding-right: 8px;
            }
            
            .package-card {
                margin: 0 2px 1rem 2px;
                padding: 0.6rem;
            }
            
            .hero-section h1 {
                font-size: 1.4rem;
            }
            
            .section-title {
                font-size: 1.1rem;
                padding: 0 2px;
            }

            .poster-image {
                margin: 0 2px;
                max-width: calc(100% - 4px);
            }
        }

        /* Animation styles */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .fade-in-up.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .fade-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.8s ease;
        }
        
        .fade-in-left.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .fade-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.8s ease;
        }
        
        .fade-in-right.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s ease;
        }
        
        .scale-in.animate {
            opacity: 1;
            transform: scale(1);
        }

        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .stats-section {
            background: linear-gradient(135deg, var(--safaricom-green), var(--safaricom-dark-green));
            color: white;
            padding: 60px 0;
            overflow-x: hidden;
        }

        .stat-item {
            text-align: center;
            margin-bottom: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            margin-top: 0.5rem;
        }

        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 1rem;
            border-left: 4px solid var(--safaricom-green);
            max-width: 100%;
            word-wrap: break-word;
        }

        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            max-width: 100%;
        }

        .faq-question {
            background: var(--safaricom-green);
            color: white;
            padding: 15px;
            border-radius: 10px 10px 0 0;
            cursor: pointer;
            margin: 0;
            font-weight: bold;
            word-wrap: break-word;
        }

        .faq-answer {
            padding: 15px;
            display: none;
            word-wrap: break-word;
        }

        .faq-answer.show {
            display: block;
        }

        /* Prevent horizontal overflow on all sections */
        section {
            overflow-x: hidden;
            max-width: 100%;
        }

        .row {
            max-width: 100%;
        }

        .col-12, .col-md-6, .col-lg-4, .col-lg-3, .col-md-4, .col-md-8, .col-md-10 {
            max-width: 100%;
        }