.accounting-page {
    padding: 20px 0;
}

.page-header{

      background-color: var(--secondary);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;

}


.page-header h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.benefits-box {
    background-color: #f9f0ff;
    border-left: 4px solid #9b59b6;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 5px 5px 0;
}

.benefits-box h3 {
    color: #8e44ad;
    margin-bottom: 15px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 25px;
    margin-bottom: 30px;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-features {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.price-options {
    margin: 25px 0;
}

.price-option {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
}

.price-option.featured {
    border: 2px solid #9b59b6;
    background-color: #f9f0ff;
}

.price-option h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.price-option .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #aeb659;
    margin-bottom: 5px;
}

.content-section{
    padding: 10px !important;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.step {
    flex: 0 0 23%;
    text-align: center;
    margin-bottom: 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #b6b059;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

@media (max-width: 768px) {
    .step {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}