
        :root {
            --primary-color: #E85D04;
            --secondary-color: #2A9D8F;
            --accent-color: #F4A261;
            --dark-color: #2B2D42;
            --light-bg: #F8F9FA;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        /* Navbar */
        .navbar {
            background-color: white !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand img {
            height: 50px;
        }
        
        .nav-link {
            color: var(--dark-color) !important;
            font-weight: 600;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        /* Buttons */
        .btn-primary-custom {
            background-color: var(--primary-color);
            border: none;
            color: white;
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .btn-primary-custom:hover {
            background-color: #d14d00;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(232, 93, 4, 0.3);
        }
        
        .btn-secondary-custom {
            background-color: var(--secondary-color);
            border: none;
            color: white;
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .btn-secondary-custom:hover {
            background-color: #238276;
            transform: translateY(-2px);
        }
        
        /* Breadcrumbs */
        .breadcrumb-section {
            background-color: var(--light-bg);
            padding: 1rem 0;
            margin-top: 76px;
        }
        
        .breadcrumb {
            background-color: transparent;
            margin-bottom: 0;
            padding: 0;
        }
        
        .breadcrumb-item a {
            color: var(--dark-color);
            text-decoration: none;
        }
        
        .breadcrumb-item a:hover {
            color: var(--primary-color);
        }
        
        .breadcrumb-item.active {
            color: var(--primary-color);
        }
        
        /* Hero Section */
        .hero-internal {
            background: linear-gradient(135deg, var(--primary-color) 0%, #d14d00 100%);
            color: white;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-internal::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: rgba(255,255,255,0.05);
            transform: skewX(-15deg);
        }
        
        .hero-internal h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .hero-internal .lead {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .badge-rating {
            background-color: rgba(255,255,255,0.2);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            display: inline-block;
            margin-top: 1rem;
        }
        
        /* Section Styles */
        section {
            padding: 4rem 0;
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 3rem;
        }
        
        /* Pain Points */
        .pain-point-card {
            background-color: white;
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .pain-point-card:hover {
            transform: translateX(10px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .pain-point-card i {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        /* Methodology Steps */
        .methodology-step {
            position: relative;
            padding-left: 80px;
            margin-bottom: 2rem;
        }
        
        .step-number {
            position: absolute;
            left: 0;
            top: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), #d14d00);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        /* Service Cards */
        .service-detail-card {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
            transition: all 0.3s;
        }
        
        .service-detail-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 25px rgba(0,0,0,0.12);
        }
        
        .service-detail-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .service-detail-card ul {
            list-style: none;
            padding-left: 0;
            margin-top: 1rem;
        }
        
        .service-detail-card ul li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .service-detail-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: 700;
        }
        
        /* Case Study Cards */
        .case-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }
        
        .case-header {
            background: linear-gradient(135deg, var(--secondary-color), #1f7a6e);
            color: white;
            padding: 1.5rem;
        }
        
        .case-body {
            padding: 1.5rem;
        }
        
        .case-result {
            background-color: var(--light-bg);
            padding: 1rem;
            border-radius: 5px;
            margin-top: 1rem;
        }
        
        .result-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        /* Testimonial Cards */
        .testimonial-card {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 5rem;
            color: var(--primary-color);
            opacity: 0.2;
            font-family: Georgia, serif;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 1rem;
        }
        
        .author-initial {
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin-right: 1rem;
        }
        
        /* FAQ */
        .faq-item {
            background-color: white;
            border-radius: 5px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            padding: 1.5rem;
            font-weight: 600;
            color: var(--dark-color);
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
        }
        
        .faq-question:hover {
            color: var(--primary-color);
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 1.5rem;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .faq-answer {
            padding: 0 1.5rem 1.5rem 1.5rem;
            color: #666;
            display: none;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #d14d00 100%);
            color: white;
            padding: 4rem 0;
            position: relative;
        }
        
        .cta-form {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 25px rgba(0,0,0,0.2);
        }
        
        .cta-form .form-control {
            border: 2px solid #e0e0e0;
            padding: 0.75rem;
            margin-bottom: 1rem;
            border-radius: 5px;
        }
        
        .cta-form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: none;
        }
        
        /* Sticky WhatsApp Button */
        .whatsapp-sticky {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s;
        }
        
        .whatsapp-sticky:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }
        
        .whatsapp-sticky i {
            color: white;
            font-size: 2rem;
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0 1rem 0;
        }
        
        .footer h5 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: var(--primary-color);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-internal h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .methodology-step {
                padding-left: 0;
                padding-top: 70px;
            }
            
            .step-number {
                left: 50%;
                transform: translateX(-50%);
            }
        }
    
    