        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #FFFFFF;
            color: #264653;
            font-size: 18px;
            line-height: 1.5;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            font-size: 18px;
        }
        /* Section Spacing */
        .section {
            padding: 5rem 0;
        }

        .section-light {
            background-color: #F1F4F9;
        }

        .section-white {
            background-color: #FFFFFF;
        }

        /* Hero Section */
        .hero {
        background: linear-gradient(135deg, #264653 0%, #006D77 100%);
        padding: 6rem 0;
        position: relative;
        overflow: hidden;
    }

    .hero:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path fill="white" d="M20,20 L30,20 L25,30 Z M60,40 L70,40 L65,50 Z M80,70 L90,70 L85,80 Z M40,80 L50,80 L45,90 Z"/><circle cx="15" cy="85" r="3"/><circle cx="85" cy="15" r="4"/><rect x="45" y="55" width="8" height="8"/></svg>');
        background-repeat: repeat;
        background-size: 30px;
        pointer-events: none;
    }

    .hero .container {
        position: relative;
        z-index: 2;
    }

    .hero-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        color: white;
    }

    .hero-badge {
        display: inline-block;
        background-color: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        padding: 0.5rem 1.25rem;
        border-radius: 50px;
        font-weight: 600;
        margin-bottom: 1.5rem;
        letter-spacing: 0.5px;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        font-weight: 700;
    }

    .hero-description {
        margin-bottom: 2rem;
        font-size: 1.95rem;
        opacity: 0.95;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
/*logo*/

/* Ensure the logo fits the navbar height */
.logo-container {
    display: flex;
    align-items: center;
    padding: 5px 15px !important;
    height: 100%;
}

.logo-container img {
    max-height: 50px; /* Adjust based on your nav height */
    transition: transform 0.3s ease;
}

/* Hover effect for a "Pro" feel */
.logo-container img:hover {
    transform: scale(1.05);
}

/* Fix for the "Request a Quote" button in your code */
.btn-quote {
    background-color: #E76F51; /* Our Persimmon Orange */
    color: white !important;
    border-radius: 5px;
    font-weight: bold;
    padding: 10px 20px;
    margin-left: 15px;
}

    .btn-primary-f {
        display: inline-block;
        background-color: white;
        color: #006D77;
        padding: 1rem 2rem;
        text-decoration: none;
        border-radius: 50px;
        font-weight: bold;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .btn-primary-f:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .btn-secondary {
        display: inline-block;
        background-color: transparent;
        color: white;
        padding: 1rem 2rem;
        text-decoration: none;
        border-radius: 50px;
        font-weight: bold;
        border: 2px solid white;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .btn-secondary:hover {
        background-color: white;
        color: #006D77;
        transform: translateY(-2px);
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        flex-wrap: wrap;
    }
    @media (max-width: 768px) {
        .hero {
            padding: 4rem 0;
        }
        
        .hero h1 {
            font-size: 2.5rem;
        }
        
        .hero-description {
            font-size: 1.7rem;
        }
        
        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .btn-primary-f, .btn-secondary {
            width: 100%;
            max-width: 250px;
            text-align: center;
        }
    }

          /* CTA Button */
.btn-quote {
  background-color: #E76F51;
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  padding: 8px 15px !important;
  margin-left: 15px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-weight: 500;
  display: inline-block;
}

/* Hover effect */
.btn-quote:hover {
  background-color: transparent;
  color: #E76F51 !important;
  border: 2px solid #E76F51;
  text-decoration: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .btn-quote {
    display: block;
    margin: 10px auto;
    text-align: center;
    width: 80%;
  }
}
        /* Typography */
        h2 {
            /*font-size: 2.0rem;*/
            margin-bottom: 1rem;
            color: #006D77;
            text-align: center;
        }

        h3 {
            /*font-size: 1.5rem;*/
            margin-bottom: 1rem;
            color: #264653;
        }

        .section-subtitle {
            text-align: center;
            color: #264653;
            max-width: 700px;
            margin: 0 auto 3rem auto;
            opacity: 0.8;
        }

        /* Trust Strip */
        .trust-strip {
            background-color: #F1F4F9;
            padding: 1.5rem 0;
            border-top: 1px solid rgba(0, 109, 119, 0.1);
            border-bottom: 1px solid rgba(0, 109, 119, 0.1);
        }

        .trust-grid {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .trust-item {
            text-align: center;
            flex: 1;
            min-width: 120px;
        }

        .trust-number {
            font-weight: bold;
            color: #006D77;
            display: block;
        }

        .trust-label {
            color: #264653;
            margin-top: 0.5rem;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-card {
            background: #FFFFFF;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0, 109, 119, 0.1);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .service-icon {
            font-size: 3rem;
            color: #006D77;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #264653;
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .service-link {
            color: #006D77;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .service-link:hover {
            text-decoration: underline;
        }

        /* Two Column Layout */
        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .value-list {
            list-style: none;
            margin-top: 1.5rem;
        }

        .value-list li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .value-list i {
            color: #006D77;
            font-size: 1.25rem;
        }

        .image-placeholder {
            background: linear-gradient(135deg, #006D77 0%, #264653 100%);
            border-radius: 12px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        /* Steps Grid */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .step {
            text-align: center;
            padding: 2rem;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background-color: #006D77;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1.5rem auto;
        }

        /* Service Area */
        .area-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .area-category {
            background: #F1F4F9;
            padding: 1.5rem;
            border-radius: 12px;
        }

        .area-category h3 {
            color: #006D77;
            margin-bottom: 1rem;
            /*font-size: 1.25rem;*/
        }

        .area-category ul {
            list-style: none;
        }

        .area-category li {
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .area-category li:before {
            content: "•";
            color: #006D77;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial {
            background: #F1F4F9;
            padding: 2rem;
            border-radius: 12px;
            position: relative;
        }

        .testimonial i.fa-quote-left {
            color: #006D77;
            font-size: 2rem;
            opacity: 0.3;
            margin-bottom: 1rem;
            display: block;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: #264653;
        }

        .testimonial-author {
            font-weight: bold;
            color: #006D77;
        }

        .testimonial-title {
            font-size: 1.15rem;
            opacity: 0.7;
        }

        /* Final CTA */
        .cta-section {
            background: linear-gradient(135deg, #006D77 0%, #264653 100%);
            border-radius: 12px;
            padding: 4rem 2rem;
            text-align: center;
            margin: 2rem 0;
        }

        .cta-section h2 {
            color: white;
            margin-bottom: 1rem;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-block;
            background-color: white;
            color: #006D77;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .two-column {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .trust-grid {
                justify-content: center;
            }
            
            .container {
                padding: 0 1.5rem;
            }
        }