/* Banner Area */
.banner-area {
    background-color: #f8f9fa;
    padding: 5rem 0;
    text-align: center;
}

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

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

.banner-points {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 2rem;
}

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

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

/* Operators Area */
.operators-area {
    padding: 4rem 0;
}

.operators-area 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-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    margin-right: 1rem;
}

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

.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;
}

/* Home Cards */
.home-cards-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.home-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.home-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.home-card hr {
    border-top: 2px solid var(--secondary-color);
    opacity: 1;
    margin: 1.5rem auto;
    width: 50px;
}

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

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

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

    .counting-number {
        font-size: 2.5rem;
    }
}
