/*==============================================
    Section Data
===============================================*/
.section-data {
    position: relative;
    display: block;
    background-color: var(--anity-extra-two);
    padding: 140px 0 166px;
    z-index: 1;
}

.section-data__shape-3 {
    position: absolute;
    bottom: 15px;
    left: 0;
}

.section-data__shape-3 img {
    width: auto;
}

.section-data__shape-4 {
    position: absolute;
    top: 30px;
    right: -30px;
    z-index: -1;
}

.section-data__shape-4 img {
    width: auto;
}

.section-data .section-title {
    margin-bottom: 28px;
}

.counter-one__data {
    background-color: var(--anity-white);
    height: 280px;
}

.data-section {
    padding: 80px 0;
}

.accordion-menu .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-menu .card-header {
    background-color: #f8f9fa;
    border-bottom: none;
    padding: 0;
    border-radius: 8px 8px 0 0 !important;
}

.accordion-menu .card-header h5 {
    margin: 0;
}

.accordion-menu .card-header button {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    border: none;
    background: transparent;
    border-radius: 8px 8px 0 0;
}

.accordion-menu .card-header button:hover {
    color: #1a73e8;
}

.accordion-menu .card-header button:focus {
    box-shadow: none;
}

.accordion-menu .card-body {
    padding: 0;
}

.accordion-menu .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-menu .submenu li {
    border-bottom: 1px solid #eee;
}

.accordion-menu .submenu li:last-child {
    border-bottom: none;
}

.accordion-menu .submenu-item {
    display: block;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.accordion-menu .submenu-item:hover {
    background-color: #f8f9fa;
    color: #1a73e8;
    padding-left: 25px;
}

.accordion-menu .submenu-item.active {
    background-color: #e8f0fe;
    color: #1a73e8;
    font-weight: 500;
    border-left: 3px solid #1a73e8;
}

.chart-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.chart-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #2c3e50;
}

.chart-actions {
    display: flex;
    gap: 10px;
}

.chart-actions .btn {
    padding: 5px 10px;
    font-size: 0.875rem;
}

.chart-body {
    margin-bottom: 20px;
}

.chart-footer {
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.chart-footer p {
    margin: 0;
}

@media (max-width: 768px) {
    .data-section {
        padding: 40px 0;
    }
    
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .chart-actions {
        width: 100%;
        justify-content: flex-end;
    }
}