
        :root {
            --primary-red: #c62828;
            --dark-gray: #333333;
            --light-gray: #f5f5f5;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-gray);
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 15px 0;
            background-color: transparent !important;
            box-shadow: none;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: bold;
            color: var(--primary-red) !important;
            font-size: 1.5rem;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-gray) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-red) !important;
        }
        
        .btn-cta {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-cta:hover {
            background-color: #a01e1e;
            color: white;
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://www.marthastewart.com/thmb/grbtCfsOFJ_2Ky3PCPE5w8IgGng=/1500x0/filters:no_upscale():max_bytes(150000):strip_icc()/GettyImages-2151983661-9f8825d4f1cf41ec9e9c5a45c8f3110e.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0;
            text-align: center;
        }
        
        .hero h1 {
            font-size:6rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-hero {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .btn-hero:hover {
            background-color: #a01e1e;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Section Styles */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dark-gray);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-red);
        }
        
        /* About Section */
        .about-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-content h3 {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--dark-gray);
        }
        
        .about-content p {
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .btn-read-more {
            background-color: transparent;
            color: var(--primary-red);
            border: 2px solid var(--primary-red);
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-read-more:hover {
            background-color: var(--primary-red);
            color: white;
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--light-gray);
            padding: 60px 0;
        }
        
        .counter-item {
            text-align: center;
        }
        
        .counter-item i {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 15px;
        }
        
        .counter-item .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dark-gray);
        }
        
        .counter-item .counter-text {
            font-size: 1.1rem;
            color: #666;
        }
        
        /* Vision & Mission Section */
        .vision-mission-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: transform 0.3s;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-5px);
        }
        
        .vision-mission-card i {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 20px;
        }
        
        .vision-mission-card h3 {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--dark-gray);
        }
        
        /* Why Choose Us Section */
        .why-choose-item {
            text-align: center;
            padding: 20px;
            transition: transform 0.3s;
        }
        
        .why-choose-item:hover {
            transform: translateY(-5px);
        }
        
        .why-choose-item i {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 15px;
        }
        
        .why-choose-item h4 {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: var(--dark-gray);
        }
        
        /* Work Process Section */
        .process-step {
            position: relative;
            text-align: center;
            padding: 0 15px;
        }
        
        .process-step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 40px;
            right: -15px;
            width: 30px;
            height: 2px;
            background-color: var(--primary-red);
        }
        
        .process-step .step-number {
            width: 80px;
            height: 80px;
            background-color: var(--primary-red);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        .process-step h4 {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: var(--dark-gray);
        }
        
        /* Services Section */
        .service-card {
            background-color: var(--light-gray);
            border-radius: 8px;
            overflow: hidden;
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-content {
            padding: 25px;
        }
        
        .service-card-content h3 {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--dark-gray);
        }
        
        .service-card-content p {
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        /* Reviews Section */
        .review-card {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-card p {
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .review-card .reviewer {
            display: flex;
            align-items: center;
        }
        
        .review-card .reviewer img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        .review-card .reviewer h5 {
            margin: 0;
            font-weight: bold;
            color: var(--dark-gray);
        }
        
        .review-card .reviewer span {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .accordion-button {
            background-color: var(--light-gray);
            color: var(--dark-gray);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-red);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-red);
        }
        
        .accordion-button:not(.collapsed)::after {
            filter: brightness(0) invert(1);
        }
        
        /* CTA Section */
        .cta-section {
            background-color: var(--primary-red);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-cta-white {
            background-color: white;
            color: var(--primary-red);
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .btn-cta-white:hover {
            background-color: var(--light-gray);
            color: var(--primary-red);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Contact Section */
        .contact-info {
            background-color: var(--light-gray);
            padding: 40px;
            border-radius: 8px;
            height: 100%;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-red);
            margin-right: 15px;
            width: 30px;
        }
        
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .form-control, .form-select {
            border-radius: 4px;
            border: 1px solid #ddd;
            padding: 12px 15px;
            margin-bottom: 20px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-red);
            box-shadow: 0 0 0 0.25rem rgba(198, 40, 40, 0.25);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-gray);
            color: white;
            padding: 60px 0 20px;
        }
        
        footer h4 {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        footer h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-red);
        }
        
        footer p, footer ul {
            margin-bottom: 20px;
        }
        
        footer ul {
            list-style: none;
            padding-left: 0;
        }
        
        footer ul li {
            margin-bottom: 10px;
        }
        
        footer ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        footer ul li a:hover {
            color: var(--primary-red);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
        }
        
        .newsletter-form button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 4px 4px 0;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        
        .newsletter-form button:hover {
            background-color: #a01e1e;
        }
        
        .copyright {
            border-top: 1px solid #555;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #ccc;
        }
        
        .copyright a {
            color: #ccc;
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .copyright a:hover {
            color: var(--primary-red);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .process-step:not(:last-child):after {
                display: none;
            }
            
            .process-step {
                margin-bottom: 30px;
            }
        }
