.container-main-page {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Brand Partners Section */
        .brands-section {
            background: #fff;
            padding: 60px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 40px;
            align-items: center;
            margin-bottom: 40px;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            transition: transform 0.3s ease;
        }

        .brand-logo:hover {
            transform: translateY(-5px);
        }

        .brand-logo img {
            max-height: 60px;
            max-width: 100%;
            object-fit: contain;
            filter: grayscale(30%);
            transition: filter 0.3s ease;
        }

        .brand-logo:hover img {
            filter: grayscale(0%);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #DD183B 0%, #CC1939 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, #FFDE00 0%, transparent 20%, transparent 80%, #FFD1BF 100%);
            opacity: 0.1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 24px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-divider {
            width: 100px;
            height: 4px;
            background: #FFDE00;
            margin: 0 auto 32px;
            border-radius: 2px;
        }

        .hero-description {
            font-size: 1.25rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #FFDE00;
            color: #333;
            padding: 16px 32px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .hero-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(0,0,0,0.3);
            background: #fff;
        }

        .hero-image {
            margin-top: 60px;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        /* Services Grid Section */
        .services-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 4px solid #DD183B;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(221, 24, 59, 0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #DD183B, #CC1939);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            color: white;
            font-size: 2rem;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #DD183B;
            margin-bottom: 16px;
        }

        .service-description {
            color: #666;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .service-list {
            list-style: none;
            text-align: left;
            margin-bottom: 24px;
        }

        .service-list li {
            padding: 8px 0;
            color: #555;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .service-list li i {
            color: #FFDE00;
            width: 20px;
        }

        .service-phone {
            font-size: 1.25rem;
            font-weight: 700;
            color: #DD183B;
            margin-bottom: 16px;
        }

        .service-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #DD183B;
            color: white;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .service-btn:hover {
            background: #CC1939;
            transform: translateY(-2px);
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
            background: white;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #DD183B;
            margin-bottom: 20px;
        }

        .about-divider {
            width: 80px;
            height: 4px;
            background: #FFDE00;
            margin-bottom: 24px;
            border-radius: 2px;
        }

        .about-description {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .about-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #DD183B, #CC1939);
            color: white;
            padding: 16px 32px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(221, 24, 59, 0.3);
        }

        .about-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(221, 24, 59, 0.4);
        }

        /* Why Choose Us Section */
        .why-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #FFEDE6 0%, #FFD1BF 100%);
        }

        .why-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .why-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #DD183B;
            margin-bottom: 16px;
        }

        .why-header .divider {
            width: 100px;
            height: 4px;
            background: #FFDE00;
            margin: 0 auto 24px;
            border-radius: 2px;
        }

        .why-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .why-item {
            display: flex;
            align-items: flex-start;
            gap: 24px;
            padding: 30px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .why-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 48px rgba(221, 24, 59, 0.15);
        }

        .why-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #DD183B, #CC1939);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .why-content h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #DD183B;
            margin-bottom: 12px;
        }

        .why-content p {
            color: #666;
            line-height: 1.6;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 100px 0;
            background: white;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonials-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #DD183B;
            margin-bottom: 16px;
            text-transform: capitalize;
        }

        .testimonials-header .divider {
            width: 100px;
            height: 4px;
            background: #FFDE00;
            margin: 0 auto 24px;
            border-radius: 2px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .testimonial-card {
            background: #f8f9fa;
            padding: 40px 30px;
            border-radius: 20px;
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .testimonial-quote {
            font-size: 2rem;
            color: #FFDE00;
            margin-bottom: 20px;
        }

        .testimonial-text {
            color: #555;
            line-height: 1.7;
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #DD183B;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }

        .author-info h4 {
            color: #DD183B;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .author-info span {
            color: #666;
            font-size: 0.9rem;
        }

        .rating-section {
            text-align: center;
            background: #f8f9fa;
            padding: 40px;
            border-radius: 20px;
        }

        .stars {
            color: #FFDE00;
            font-size: 2rem;
            margin-bottom: 16px;
        }

        .rating-text {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            color: #666;
            font-size: 1.1rem;
        }

        .rating-text i {
            color: #4285f4;
        }

        /* Final CTA Section */
        .final-cta {
            padding: 80px 0;
            background: linear-gradient(135deg, #DD183B 0%, #CC1939 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, #FFDE00 0%, transparent 70%);
            opacity: 0.1;
        }

        .final-cta-content {
            position: relative;
            z-index: 2;
        }

        .final-cta .small-title {
            font-size: 1rem;
            font-weight: 600;
            color: #FFDE00;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .final-cta .phone-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .final-cta .divider {
            width: 100px;
            height: 4px;
            background: #FFDE00;
            margin: 0 auto 32px;
            border-radius: 2px;
        }

        .final-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #FFDE00;
            color: #333;
            padding: 20px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 6px 30px rgba(0,0,0,0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .final-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.4);
            background: white;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .brands-grid {
                grid-template-columns: repeat(5, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .container-main-page {
                padding: 0 16px;
            }

            .brands-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .why-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .final-cta .phone-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-title {
                font-size: 2rem;
            }

            .why-item {
                flex-direction: column;
                text-align: center;
            }
        }