
        :root {
            --primary-orange: #FF7E00;
            --charcoal: #333333;
            --light-gray: #f8f9fa;
            --dark-gray: #555555;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--charcoal);
        }
        
        .navbar {
            padding: 20px 0;
            background-color: transparent !important;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--charcoal) !important;
        }
        
        .navbar-nav .nav-link {
            color: var(--charcoal) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-orange) !important;
        }
        
        .btn-primary-custom {
            background-color: var(--primary-orange);
            border: none;
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .btn-primary-custom:hover {
            background-color: #e66d00;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 126, 0, 0.3);
        }
        
        .btn-outline-custom {
            color: var(--primary-orange);
            border: 2px solid var(--primary-orange);
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .btn-outline-custom:hover {
            background-color: var(--primary-orange);
            color: white;
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://renobuildprojects.com/wp-content/uploads/2024/07/renovation.jpg');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            color: white;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-weight: bold;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-orange);
        }
        
        .service-card {
            height: 100%;
            transition: transform 0.3s;
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-card img {
            height: 300px;
            object-fit: cover;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 15px;
            transition: all 0.3s;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 20px;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            padding: 0 15px;
        }
        
        .process-step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 40px;
            right: -50%;
            width: 100%;
            height: 2px;
            background-color: var(--primary-orange);
            z-index: -1;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-orange);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }
        
        .counter-box {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .counter-box h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-orange);
        }
        
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .review-card .stars {
            color: var(--primary-orange);
            margin-bottom: 15px;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #eee;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 15px 20px;
            background-color: var(--light-gray);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question i {
            transition: transform 0.3s;
        }
        
        .faq-answer {
            padding: 15px 20px;
            display: none;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        .cta-section {
            background-color: var(--charcoal);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .contact-section {
            background-color: var(--light-gray);
        }
        
        .footer {
            background-color: var(--charcoal);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer h5 {
            color: var(--primary-orange);
            margin-bottom: 25px;
            font-weight: 600;
        }
        
        .footer ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer ul li {
            margin-bottom: 10px;
        }
        
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: var(--primary-orange);
        }
        
        .copyright {
            border-top: 1px solid #555;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #aaa;
        }
        
        .newsletter-form {
            display: flex;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            background-color: var(--primary-orange);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .newsletter-form button:hover {
            background-color: #e66d00;
        }
        
        .contact-form {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-orange);
            margin-right: 15px;
            width: 30px;
        }
        
        .vision-mission-box {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .vision-mission-box h4 {
            color: var(--primary-orange);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .process-step:not(:last-child):after {
                display: none;
            }
        }
