/* Banner Section */
.banner-section {
    position: relative;
    background-color: #e9ecef;
    padding: 50px 0;
    overflow: hidden;
}

.banner-section h1 {
    font-weight: 700;
    color: var(--dark-color);
}

.banner-section .text-primary {
    color: var(--accent-color);
}

/* Steps Section */
.steps-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.steps-section .step-icon {
    width: 127px;
    height: 127px;
}

/* Industry News Section */
.industry-news-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.news-card {
    transition: transform 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Filing Section */
.filing-section {
    background-color: #e0f2f7;
    padding: 50px 0;
}

.filing-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    transition: transform 0.3s ease;
}

.filing-card:hover {
    transform: translateY(-5px);
}

.filing-card img {
    position: relative;
    right: 0;
    bottom: 0;
    max-width: 40%;
}

/* Counting Section */
.counting-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.counting-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 0 5px;
}

/* Customer Rating Section */
.customer-rating-section {
    padding: 50px 0;
}

.rating-stars i {
    font-size: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 990px) {
    .banner-section picture {
        position: static;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .banner-section picture img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 767.98px) {
    .filing-card {
        min-height: auto;
    }

    .filing-card img {
        position: relative;
        max-width: 100%;
        margin-top: 20px;
    }
}
