/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('../images/2149426496.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: #fff;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 45%;
}

.hero-copy h1 {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-copy ul {
    list-style-type: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.hero-copy ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.hero-copy ul li i {
    position: absolute;
    left: 0;
    top: 3px;
}

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

.ways-box {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.ways-box h3 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ways-box hr {
    border-top: 2px solid var(--secondary-color);
    opacity: 1;
    margin: 1rem 0;
}

.card-image {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 40%;
}

/* Home Cards */
.home-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    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-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.industry-news-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    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;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.video-placeholder {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.video-placeholder:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(76, 72, 72, 0.7), rgba(76, 72, 72, 0.7));
}

.video-placeholder-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: black;
    padding: 0.5rem 1rem;
    border: 1px solid black;
    border-radius: 4px;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.faq-tab {
    padding: 0 1rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    margin: 0.5rem;
}

.faq-tab.active {
    color: var(--secondary-color);
}

.faq-divider {
    color: var(--primary-color);
    margin: 0 0.5rem;
}

/* Tax Calculator Section */
.tax-calculator-section {
    padding: 4rem 0;
}

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

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .hero-copy {
        max-width: 100%;
        padding: 2rem;
        background-color: rgba(255, 255, 255, 0.9);
        color: var(--primary-color);
    }

    .card-image {
        position: relative;
        max-width: 100%;
        margin-top: 1rem;
    }

    .ways-box, .home-card {
        margin-bottom: 1.5rem;
    }
}
