  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :root {
            --primary-color: #363b75;
            --secondary-color: #e9b432;
            --text-color: #1f2937;
            --accent-color: #e9b432;
            --bg-color: #fcfcfc;
            --navbar-height: 80px;
            --font-size-h2: 36px;
            --font-size-p: 18px;
            --button-padding: 12px 24px;
            --icon-size: 24px;
            --dropdown-width: 200px;
            --service-box-size: 300px;
            --section-max-width: 1200px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            background-color: var(--bg-color);
            overflow-x: hidden;
            position: relative;
            margin: 0;
        }







.services-section {
    background-color: var(--bg-color);
    padding: 20px;
    min-height: 100vh;
}

.services-container {
    max-width: var(--section-max-width);
    margin: 0 auto;
    text-align: center;
}

.services-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.services-title {
    font-size: var(--font-size-h2);
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.services-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.services-content {
    margin-bottom: 40px;
}

.service-section {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    animation: slideIn 0.5s ease-in-out;
}

.service-left, .service-right {
    width: 50%;
    min-width: 300px;
    text-align: left;
}

.service-desc {
    font-size: var(--font-size-p);
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.service-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-bullets li {
    font-size: var(--font-size-p);
    color: var(--text-color);
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.service-bullets li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.service-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-chart {
    max-width: 100%;
    height: 250px;
}

.service-btn {
    padding: var(--button-padding);
    background-color: #ffffff;
    color: var(--text-color);
    border: 1px solid transparent;
    border-radius: 6px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-btn i {
    font-size: var(--icon-size);
}

.service-btn:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-color);
}

.service-btn.active {
    border-color: var(--secondary-color);
    background-color: var(--primary-color);
    color: #fff;
    transform: scale(1.05);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .services-title {
        font-size: 28px;
    }

    .service-section {
        flex-direction: column;
        align-items: center;
    }

    .service-left, .service-right {
        width: 100%;
        text-align: center;
    }

    .service-bullets li {
        /* padding-left: 0; */
        text-align: left;
        /* margin-left: 25px; */
    }

    .service-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .service-chart {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 24px;
    }

    .service-desc, .service-bullets li {
        font-size: 16px;
    }


    .service-btn {
        width: 100%;
        justify-content: center;
    }

    .service-chart {
        height: 150px;
    }

    .services-buttons {
        gap: 15px;
        align-items: center;
    }
}