:root {
    --primary-color: #01411c;
    --secondary-color: #0a5c2e;
    --accent-color: #20b2aa;
    --accent-hover: #1a9d96;
    --light-bg: #f0f9f4;
    --dark-bg: #01411c;
    --text-dark: #01411c;
    --text-muted: #6b7280;
    --border-light: #d1f0dd;
    --green-light: #e8f5e9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    background: #ffffff;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--primary-color);
}

.top-bar {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(32, 178, 170, 0.2);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar a:hover {
    color: var(--accent-color);
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.navbar-brand span {
    color: var(--accent-color);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 60%;
}

.btn-cta {
    background: var(--accent-color);
    color: #ffffff;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 2px;
    border: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(32, 178, 170, 0.4);
    color: #ffffff;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.page-header {
    background: var(--primary-color);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="1200" height="400" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(32,178,170,0.1)"/></pattern></defs><rect width="1200" height="400" fill="url(%23dots)"/></svg>');
    opacity: 1;
}

.page-header h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
}

.section {
    padding: 6rem 0;
}

.section-bg-light {
    background: #ffffff;
    position: relative;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 0;
    padding: 3rem 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: none;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-color);
    transition: height 0.3s ease;
}

.service-card:hover {
    transform: translateX(8px);
    box-shadow: -8px 8px 0 var(--accent-color);
    border-color: var(--accent-color);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.8;
}

.value-card {
    background: #ffffff;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.footer {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.65);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--accent-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="footer-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(32,178,170,0.08)"/><circle cx="30" cy="25" r="1" fill="rgba(32,178,170,0.05)"/></pattern></defs><rect width="200" height="200" fill="url(%23footer-pattern)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.footer h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.925rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    margin-top: 3rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(32, 178, 170, 0.1);
    border-radius: 50%;
    color: var(--accent-color);
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(32, 178, 170, 0.2);
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.25rem;
    }
    .section {
        padding: 3.5rem 0;
    }
    .service-card {
        margin-bottom: 1.5rem;
    }
}


/* About Content Styles */
.about-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.about-content li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

/* Contact Form Styles */
.request-form-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-top: 4px solid var(--accent-color);
}

.request-form-box h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-align: center;
}

.request-form-box .form-control {
    border: 2px solid var(--border-light);
    padding: 0.65rem 0.875rem;
    border-radius: 4px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.request-form-box .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(32, 178, 170, 0.15);
    outline: none;
}

.request-form-box select.form-control {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%2301411c" d="M6 9L1 4h10z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.request-form-box textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.request-form-box .btn-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

/* Accordion Styles */
.accordion-item {
    border: 1px solid var(--border-light);
    margin-bottom: 1rem;
    border-radius: 0;
    background-color: #ffffff;
}

.accordion-button {
    background-color: #ffffff !important;
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: #ffffff !important;
    color: var(--primary-color) !important;
    box-shadow: none;
    border-bottom: 1px solid var(--border-light);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.accordion-button:hover {
    background-color: var(--light-bg) !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2320b2aa'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
    background-color: #ffffff;
}

/* Homepage Hero Section Styles */
.hero-section {
    background: var(--primary-color);
    padding: 5rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="1200" height="800" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="stars" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(32,178,170,0.15)"/><circle cx="45" cy="25" r="1.5" fill="rgba(32,178,170,0.1)"/><circle cx="70" cy="60" r="1" fill="rgba(32,178,170,0.12)"/></pattern></defs><rect width="1200" height="800" fill="url(%23stars)"/><path d="M 0 600 Q 300 550 600 600 T 1200 600 L 1200 800 L 0 800 Z" fill="rgba(10,92,46,0.3)"/><circle cx="900" cy="150" r="80" fill="rgba(32,178,170,0.05)"/><circle cx="200" cy="400" r="120" fill="rgba(32,178,170,0.03)"/><g opacity="0.2"><path d="M 150 120 L 157 140 L 178 140 L 161 152 L 168 172 L 150 160 L 132 172 L 139 152 L 122 140 L 143 140 Z" fill="%2320b2aa"/><path d="M 950 250 Q 950 220 980 220 Q 995 220 995 235 Q 995 250 980 257 Q 965 250 950 250 Z" fill="none" stroke="%2320b2aa" stroke-width="3"/></g><g opacity="0.15"><path d="M 1050 450 L 1055 465 L 1070 465 L 1058 474 L 1063 489 L 1050 480 L 1037 489 L 1042 474 L 1030 465 L 1045 465 Z" fill="%2320b2aa"/><path d="M 80 650 Q 80 630 100 630 Q 110 630 110 640 Q 110 650 100 655 Q 90 650 80 650 Z" fill="none" stroke="%2320b2aa" stroke-width="2.5"/></g><g opacity="0.18"><path d="M 600 100 L 605 115 L 620 115 L 608 124 L 613 139 L 600 130 L 587 139 L 592 124 L 580 115 L 595 115 Z" fill="%2320b2aa"/></g></svg>');
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #ffffff;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

.hero-section h1 {
    font-size: 2.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.6;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(32, 178, 170, 0.15);
    color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(32, 178, 170, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

.trust-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Stats/How It Works Section */
.stats-section {
    background: #ffffff;
    padding: 3rem 0;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    border-radius: 0;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--accent-color);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1" fill="rgba(1,65,28,0.03)"/><circle cx="50" cy="30" r="1.5" fill="rgba(1,65,28,0.02)"/><circle cx="80" cy="70" r="1" fill="rgba(1,65,28,0.03)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.step-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: transparent;
    color: var(--accent-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    transform: rotate(45deg);
}

.step-number span {
    position: relative;
    z-index: 1;
}

.step-card h3, .step-card h5 {
    font-size: 1.3rem;
    margin-bottom: 0.85rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 280px;
    margin: 0 auto;
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

.section-bg-light {
    background: #ffffff;
    position: relative;
}

.section-bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="400" height="400" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(1,65,28,0.04)"/></pattern><pattern id="lines" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 0 50 Q 25 40 50 50 T 100 50" stroke="rgba(244,196,48,0.08)" stroke-width="1" fill="none"/></pattern></defs><rect width="400" height="400" fill="url(%23dots)"/><rect width="400" height="400" fill="url(%23lines)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto 1.5rem;
    border-radius: 0;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: 'Cormorant Garamond', serif;
    color: rgba(16, 185, 129, 0.08);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.975rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.9rem;
    border: 2px solid var(--accent-color);
}

.testimonial-info h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.testimonial-info span {
    font-size: 0.825rem;
    color: var(--text-muted);
}


/* Service Search Box */
.service-search-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-search-box .input-group {
    border-radius: 4px;
    overflow: hidden;
}

.service-search-box .form-control {
    border: 2px solid var(--border-light);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-right: none;
}

.service-search-box .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: none;
    outline: none;
}

.service-search-box .btn-cta {
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-color);
    border-left: none;
}

.service-search-box .btn-cta:hover {
    transform: none;
}


/* Service Request Link */
.service-request-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: underline;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.service-request-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.service-request-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

.service-request-link:hover i {
    transform: translateX(3px);
}


/* Service Detail Page */
.service-detail-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-detail-content h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.service-detail-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-item {
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.process-steps {
    margin-top: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.process-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number-small {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.benefits-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.service-sidebar .sidebar-box {
    background: #ffffff;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
}

.service-sidebar h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-sidebar h5 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-links li {
    margin-bottom: 0.75rem;
}

.service-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.service-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}
