        /* ========================================
   WHAT'S INCLUDED SECTION
   ======================================== */

     .whats-included-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Section Layout - Flex with left push */
.section-layout {
    display: flex;
    align-items: flex-start;
    min-height: 500px;
    justify-content: flex-start;
    gap: 40px;
}

/* Vertical Teal Divider */
.vertical-divider {
    flex: 0 0 3px;
    background: linear-gradient(180deg,
            transparent 0%,
            #02c3bd 15%,
            #02c3bd 85%,
            transparent 100%);
    align-self: stretch;
    position: relative;
    z-index: 3;
    margin: 0 70px;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(2, 195, 189, 0.4);
    transition: all 0.3s ease;
}

.vertical-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #02c3bd;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(2, 195, 189, 0.3), 0 0 12px rgba(2, 195, 189, 0.5);
}

/* Content Area */
.content-area {
    flex: 1;
    padding-left: 40px;
}

.content-wrapper {
    max-width: 1200px;
}

/* Section Label */
.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #02c3bd;
    margin-bottom: 15px;
}

/* Section Heading */
.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Section Intro */
.section-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 45px;
    line-height: 1.6;
}

/* Features Cards Grid */
.features-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Section CTA */
.section-cta {
    margin-top: 40px;
    text-align: left;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-light));
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 150, 0.25);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--primary-dark), #0d4d73);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 168, 150, 0.35);
}

.cta-button::after {
    content: '→';
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover::after {
    transform: translateX(5px);
}

/* ========================================
COMPLETE SERVICES - LEFT ALIGNED
======================================== */
.accounting-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 8rem 2rem;
    overflow: hidden;
}

/* Diagonal background elements */
.accounting-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: linear-gradient(135deg, rgba(2, 195, 189, 0.08) 0%, transparent 70%);
    transform: skewY(-8deg);
    pointer-events: none;
}

.accounting-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 37, 64, 0.03) 0%, transparent 60%);
    transform: skewY(6deg);
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Main heading with decorative line */
.section-header {
    margin-bottom: 4rem;
    position: relative;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary-dark);
    line-height: 1.2;
    font-weight: 800;
    position: relative;
    padding-left: 0;
}

.section-header h2::before {
    display: none;
}

.section-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: #666;
    margin-top: 1rem;
    padding-left: 0;
    line-height: 1.6;
}

/* TRANSPARENT BORDER BOX */
.content-box {
    border: 2px solid rgba(2, 195, 189, 0.3);
    border-radius: 24px;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(10, 37, 64, 0.08);
}

/* Staggered content layout */
.content-grid {
    display: grid;
    gap: 4rem;
}

.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    position: relative;
}

.content-row:nth-child(1) {
    margin-right: 0;
}

.content-row:nth-child(2) {
    margin-left: 0;
}

.content-row:nth-child(3) {
    margin-right: 0;
}

/* Service item styling */
.service-item {
    position: relative;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.service-item:nth-child(1) {
    animation-delay: 0.1s;
}

.service-item:nth-child(2) {
    animation-delay: 0.2s;
}

.service-item:nth-child(3) {
    animation-delay: 0.3s;
}

.service-item:nth-child(4) {
    animation-delay: 0.4s;
}

.service-item:nth-child(5) {
    animation-delay: 0.5s;
}

.service-item:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }

    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

.service-number {
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    color: #02c3bd;
    opacity: 0.15;
    position: absolute;
    top: -2rem;
    left: -1rem;
    line-height: 1;
    font-weight: 700;
}

.service-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
}

.service-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    line-height: 1.8;
    color: #555;
}

/* Decorative connector lines */
.connector-line {
    position: absolute;
    width: 2px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, #02c3bd, transparent);
    opacity: 0.2;
    top: 10%;
}

.content-row:nth-child(1) .connector-line {
    right: -3rem;
}

.content-row:nth-child(2) .connector-line {
    left: -3rem;
}

.content-row:nth-child(3) .connector-line {
    right: -3rem;
}

/* Bottom CTA section */
.cta-wrapper {
    margin-top: 6rem;
    text-align: center;
    position: relative;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, #02c3bd, transparent);
}

.cta-text {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-subtext {
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-light));
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 168, 150, 0.25);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), #0d4d73);
    transition: left 0.4s ease;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    box-shadow: 0 6px 25px rgba(0, 168, 150, 0.35);
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 1024px) {
    .content-box {
        padding: 3rem 2rem;
    }

    .content-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-row:nth-child(1),
    .content-row:nth-child(2),
    .content-row:nth-child(3) {
        margin-left: 0;
        margin-right: 0;
    }

    .connector-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .accounting-section {
        padding: 4rem 1.5rem;
    }

    .content-box {
        padding: 2rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .service-number {
        font-size: 3rem;
        top: -1rem;
        left: 0;
    }

    .cta-wrapper {
        margin-top: 4rem;
    }
}

/* ========================================
WHAT'S INCLUDED SECTION (COMPACT WIDTH)
======================================== */
.whats-included-section {
    padding: 80px 0;
    background: #ffffff;
}

/* MAIN WIDTH CONTROL */
.section-layout {
    display: flex;
    align-items: flex-start;
    min-height: 500px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Vertical Teal Divider */
.vertical-divider {
    flex: 0 0 2px;
    background: linear-gradient(180deg,
            transparent 0%,
            #02c3bd 15%,
            #02c3bd 85%,
            transparent 100%);
    align-self: stretch;
    position: relative;
    margin: 0 50px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(2, 195, 189, 0.35);
}

.vertical-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #02c3bd;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(2, 195, 189, 0.25);
}

/* Content Area */
.content-area {
    flex: 1;
    padding-left: 20px;
}

.content-wrapper {
    max-width: 900px;
}

/* Section Label */
.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #02c3bd;
    margin-bottom: 12px;
}

/* Heading */
.section-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 18px;
}

/* Intro */
.section-intro {
    font-size: 1rem;
    color: #666;
    margin-bottom: 35px;
    max-width: 700px;
}

/* ========================================
FEATURE CARDS (SMALLER WIDTH)
======================================== */
.features-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 900px;
}

.feature-card {
    background: #fafafa;
    border-radius: 14px;
    padding: 20px 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    border: 1px solid rgba(2, 195, 189, 0.12);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.feature-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* CTA */
.section-cta {
    margin-top: 35px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 13px 30px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-light));
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 168, 150, 0.25);
}

.cta-button::after {
    content: '→';
    margin-left: 8px;
}

/* ========================================
RESPONSIVE
======================================== */
@media (max-width: 992px) {
    .section-layout {
        max-width: 1000px;
    }

    .features-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-layout {
        flex-direction: column;
    }

    .vertical-divider {
        display: none;
    }

    .features-cards {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .section-heading {
        font-size: 1.8rem;
    }
}/* BEST SOLUTION - Line Clamp with Ellipsis */
.service-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #555;
    
    /* Perfect 5-line clamp */
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    
    /* Line spacing */
    line-height: 1.7;
    
    /* No awkward breaks */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    
    /* No orphans/widows */
    orphans: 2;
    widows: 2;
    
    /* Alignment */
    text-align: left;

    /* Spacing */
    margin: 0 0 1.5rem 0;
}