
        :root {
            --primary-color: #e71d36;
            --light-gray: #e9ecef;
            --white: #ffffff;
            --dark: #212529;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
        }

        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
            background: transparent !important;
        }

        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
        }

        .navbar-brand i {
            margin-right: 10px;
            font-size: 2rem;
        }

        .navbar-nav .nav-link {
            color: var(--dark) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .btn-cta {
            background: var(--primary-color);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-color);
        }

        .btn-cta:hover {
            background: transparent;
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(231, 29, 54, 0.1) 0%, rgba(233, 236, 239, 0.3) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-content h1 {
            font-size: 3rem;
            font-weight: bold;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #6c757d;
            margin-bottom: 30px;
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .section-title p {
            color: #6c757d;
            font-size: 1.1rem;
        }

        /* About Section */
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Counter Section */
        .counter-section {
            background: var(--primary-color);
            color: var(--white);
            padding: 60px 0;
        }

        .counter-item {
            text-align: center;
        }

        .counter-item h3 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .counter-item p {
            font-size: 1.1rem;
            margin: 0;
        }

        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px;
            background: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .feature-box:hover {
            transform: translateY(-10px);
        }

        .feature-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* Services Cards */
        .service-card {
            background: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-card-body h5 {
            font-weight: bold;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .service-card-body p {
            color: #6c757d;
            flex-grow: 1;
        }

        /* Reviews */
        .review-card {
            background: var(--white);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 20px;
        }

        .review-stars {
            color: #ffc107;
            margin-bottom: 10px;
        }

        .review-author {
            font-weight: bold;
            color: var(--primary-color);
            margin-top: 15px;
        }

        /* FAQ */
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: var(--white);
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #c41e2e 100%);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }

        /* Contact Section */
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
            width: 40px;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: var(--white);
            padding: 60px 0 20px;
        }

        .footer-widget h4 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .footer-widget ul {
            list-style: none;
            padding: 0;
        }

        .footer-widget ul li {
            margin-bottom: 10px;
        }

        .footer-widget ul li a {
            color: #b0b0b0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-widget ul li a:hover {
            color: var(--primary-color);
        }

        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px 0 0 5px;
        }

        .newsletter-form button {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .newsletter-form button:hover {
            background: #c41e2e;
        }

        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #b0b0b0;
        }

        .copyright a {
            color: var(--primary-color);
            text-decoration: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
        }
