
        :root {
            --primary-color: #ee9b00;
            --secondary-color: #ca6702;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
        }

        h1, h2, h3, h4 {
            font-weight: 700;
        }

        /* --- Navbar --- */
        .navbar {
            transition: background-color 0.3s ease-in-out;
        }
        .navbar-brand {
            font-weight: 800;
            color: var(--dark-text) !important;
            font-size: 1.5rem;
        }
        .navbar-brand i {
            color: var(--primary-color);
        }
        .navbar-nav .nav-link {
            color: var(--dark-text) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        .navbar-scrolled {
            background-color: #ffffff !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .navbar .cta-button {
            background-color: var(--primary-color);
            color: #fff !important;
            border-radius: 50px;
            padding: 8px 20px !important;
            transition: background-color 0.3s;
        }
        .navbar .cta-button:hover {
            background-color: var(--secondary-color) !important;
        }

        /* --- Hero Section --- */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://mytunbridgewells.com/wp-content/uploads/2023/03/Decorating-your-home.png') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: #fff;
        }
        .hero-section h1 {
            font-size:5rem;
            font-weight: 800;
        }
        .hero-btn {
            background-color: var(--primary-color);
            color: #fff;
            padding: 12px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            border: 2px solid var(--primary-color);
            transition: all 0.3s;
        }
        .hero-btn:hover {
            background-color: transparent;
            border-color: #fff;
            color: #fff;
        }

        /* --- General Section Styling --- */
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
        }
        .text-center .section-title::after {
            left: 50%;
        }

        /* --- About Section --- */
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .btn-read-more {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
        }
        .btn-read-more:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }

        /* --- Counter Section --- */
        .counter-section {
            background-color: var(--primary-color);
            color: #fff;
        }
        .counter-box i {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        .counter {
            font-size: 2.5rem;
            font-weight: 700;
        }

        /* --- Why Choose Us --- */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            transition: transform 0.3s;
        }
        .feature-box:hover {
            transform: translateY(-10px);
        }
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .feature-box h4 {
            font-size: 1.25rem;
            margin-bottom: 15px;
        }

        /* --- Work Process --- */
        .process-box {
            text-align: center;
            position: relative;
        }
        .process-box:not(:last-child)::after {
            content: '\f178'; /* Font Awesome arrow right */
            font-family: 'bootstrap-icons';
            position: absolute;
            top: 30px;
            right: -25%;
            font-size: 2rem;
            color: #ddd;
            transform: translateY(-50%);
        }
        .process-number {
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        /* --- Services Section --- */
        .service-card {
            background-color: var(--light-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            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;
        }
        .service-card h5 {
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 15px;
        }
        .service-card .btn-read-more {
            margin-top: 15px;
            display: inline-block;
        }

        /* --- Reviews Section --- */
        .review-box {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin: 15px;
        }
        .review-box p {
            font-style: italic;
            margin-bottom: 20px;
        }
        .review-box h5 {
            color: var(--secondary-color);
            font-weight: 600;
        }
        .review-box .rating {
            color: #ffc107;
            margin-bottom: 10px;
        }

        /* --- FAQ Section --- */
        .accordion-button:not(.collapsed) {
            color: #fff;
            background-color: var(--primary-color);
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }

        /* --- CTA Section --- */
        .cta-section {
            background-color: var(--secondary-color);
            color: #fff;
            text-align: center;
        }
        .cta-section h2 {
            font-size: 2.2rem;
        }
        .cta-btn {
            background-color: #fff;
            color: var(--secondary-color);
            padding: 12px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            border: none;
            transition: all 0.3s;
        }
        .cta-btn:hover {
            background-color: var(--primary-color);
            color: #fff;
        }

        /* --- Contact Section --- */
        .contact-info-box i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
        }
        .contact-form .form-control, .contact-form .form-select {
            border-radius: 0;
            border: 1px solid #ced4da;
            padding: 12px;
        }
        .contact-form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(238, 155, 0, 0.25);
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: #fff;
            padding: 12px 30px;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: var(--secondary-color);
        }

        /* --- Footer --- */
        footer {
            background-color: #222;
            color: #aaa;
            padding: 60px 0 20px 0;
        }
        footer h5 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 25px;
        }
        footer ul {
            list-style: none;
            padding-left: 0;
        }
        footer ul li {
            margin-bottom: 12px;
        }
        footer ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer ul li a:hover {
            color: var(--primary-color);
        }
        .newsletter-input {
            background-color: #333;
            border: 1px solid #444;
            color: #fff;
            border-radius: 50px;
            padding: 10px 20px;
        }
        .newsletter-input:focus {
            background-color: #444;
            border-color: var(--primary-color);
            box-shadow: none;
            color: #fff;
        }
        .newsletter-btn {
            background-color: var(--primary-color);
            border: none;
            border-radius: 50px;
            padding: 10px 25px;
            color: #fff;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .newsletter-btn:hover {
            background-color: var(--secondary-color);
        }
        .footer-bottom {
            border-top: 1px solid #444;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        .footer-bottom a {
            color: #aaa;
            text-decoration: none;
        }
        .footer-bottom a:hover {
            color: var(--primary-color);
        }
