/* Banner Section */
.banner-section {
    position: relative;
    background-color: #e0f2f7;
    padding: 5rem 0;
    overflow: hidden;
}

.banner-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.banner-section h1 span {
    color: var(--accent-color);
}

.banner-section ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.banner-section ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
}

.banner-section ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent-color);
}

.banner-section img {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.steps-section h2 {
    margin-bottom: 3rem;
}

.step-img {
    max-width: 120px;
    margin-bottom: 1.5rem;
}

.step-content {
    margin-left: 1rem;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

/* Industry News */
.industry-news-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.industry-news-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.industry-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.industry-news-content {
    padding: 1.5rem;
}

.industry-news-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.filing-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.filing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

/* Customer Rating */
.customer-rating-section {
    padding: 4rem 0;
    background-color: white;
}

.rating-stars {
    margin-bottom: 1.5rem;
}

.rating-stars i {
    color: #ffc107;
    font-size: 1.5rem;
    margin: 0 2px;
}


/* HVUT Filing Section */
.hvut-filing-section {
    padding: 4rem 0;
    text-align: center;
}

.hvut-filing-section .btn {
    margin: 0 0.5rem 1rem;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .banner-section h1 {
        font-size: 2rem;
    }

    .banner-section img {
        margin-top: 2rem;
    }

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

    .counting-digits label {
        font-size: 2rem;
    }

    .hvut-filing-section .btn {
        display: block;
        width: 100%;
        margin: 0 0 1rem;
    }
}
