body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

main {
    margin-top: 60px;
}

.hero {
    background: linear-gradient(to bottom right, #0ac9a4, #0ab3d3);
    color: white;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

#date{
    font-size: 32px;
}

.hero-text {
    flex: 1 1 50%;
    min-width: 300px;
}

.hero-text .badge {
    background-color: #ff5e3a;
    color: white;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 0;
}

.hero-text h1 span {
    font-weight: 600;
    color: #e0f7f5;
}

.hero-text p {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #eafefe;
}

.hero-buttons .btn {
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-dark {
    background-color: #00635d;
    color: white;
}

.btn-dark:hover {
    background-color: #004843;
}

.btn-light {
    background-color: #04bba0;
    color: white;
}

.btn-light:hover {
    background-color: #039882;
}

.hero-image {
    flex: 1 1 40%;
    text-align: center;
    margin-top: 30px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.calculators {
    width: 100%;
    padding: 40px 10px;
    background: #e9f2f7;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #243447;
    box-sizing: border-box;
}

.cont-heading {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 45px;
    color: #1a3c40;
    letter-spacing: 0.04em;
}

#box {
    display: flex;
    flex-wrap: wrap;
    gap: 35px 45px;
    justify-content: center;
}

.sub-box {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    min-width: 280px;
    max-width: 300px;
    padding: 25px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    transition: transform 0.2s ease;
}

.sub-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.sub-box a {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(135deg, #3ac7b1, #2a9d8f);
    border-radius: 10px;
    color: white;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(58, 199, 177, 0.4);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    user-select: none;
    border: none;
    font-size: 1rem;
    width: 100%;
}

.sub-box a:hover,
.sub-box a:focus {
    background: linear-gradient(135deg, #2a9d8f, #238067);
    box-shadow: 0 9px 22px rgba(36, 144, 127, 0.7);
    transform: translateY(-3px);
    outline: none;
}

.option.selected a {
    background: linear-gradient(135deg, #1e6f62, #17634f);
    box-shadow: 0 10px 28px rgba(23, 99, 79, 0.85);
    font-weight: 700;
    transform: translateY(-4px);
}

.option-section {
    width: 100%;
    background: linear-gradient(135deg, #e0f7fa, #f1f8e9);
    border-radius: 12px;
    padding: 2rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
    text-align: center;
    transition: background 0.3s ease-in-out;
}

.option-heading {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2e3c43;
}

.option-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.option-tabs li a {
    background-color: white;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.option-tabs li a:hover {
    background-color: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
}

.option-tabs li a.selected {
    background-color: #007bff;
    color: white;
    font-weight: 600;
}

.faq {
    display: flex;
    align-items: center;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    flex-direction: column;
    background-color: #f7f7f7;
}

.faq-heading {
    font-size: 40px;
    font-weight: bolder;
    margin: 30px 0px;
    text-align: center;
}

.faq-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    margin-bottom: 20px;
}

.question {
    display: flex;
    flex-direction: column;
    width: 80%;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    padding: 15px 10px;
    background-color: rgb(217, 221, 220);
    border-radius: 5px;
}

.faq-plus {
    font-size: 35px;
}

.dropdown {
    padding: 10px 10px;
    font-size: 16px;
    background-color: white;
    font-style: italic;
    border-top: none;
    font-weight: bolder;
}

.sub-heading{
    font-weight: bolder;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Laws Section (matching site theme) */
.laws-section {
    background: linear-gradient(135deg, #e0f7fa, #f1f8e9);
    padding: 50px 20px;
    border-radius: 16px;
    margin-top: 50px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

#laws-box {
    display: flex;
    flex-wrap: wrap;
    gap: 35px 45px;
    justify-content: center;
}

.law-box {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    min-width: 280px;
    max-width: 300px;
    padding: 25px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.law-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.law-box h2 {
    font-size: 18px;
    color: #1a3c40;
    font-weight: bold;
}

.law-box i {
    margin-right: 8px;
    color: #2a9d8f;
}

.law-box a {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(135deg, #3ac7b1, #2a9d8f);
    border-radius: 10px;
    color: white;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(58, 199, 177, 0.4);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.law-box a:hover {
    background: linear-gradient(135deg, #2a9d8f, #238067);
    box-shadow: 0 9px 22px rgba(36, 144, 127, 0.7);
    transform: translateY(-3px);
}

/* --------- ALL MEDIA QUERIES BELOW --------- */
@media (max-width: 1320px) {
    .three {
        display: none;
    }

    .four {
        display: block;
    }

    .service-box {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 1030px) {
    .hero-section .left-side {
        margin-left: 30px;
    }

    .question {
        width: 100%;
    }
}

@media (max-width: 920px) {
    .option ul {
        display: flex;
        justify-content: center;
    }

    .option ul li a:first-child {
        border-left: 1px solid #555;
    }

    .option ul li a:last-child {
        border-right: 1px solid #555;
    }
}

@media (max-width: 900px) {
    .hero-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 20px 20px 30px;
    }

    .hero-section .right-side img {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 870px) {
    .service-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 740px) {
    main {
        margin-top: 60px;
    }

    .hero-section {
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .hero-section .right-side {
        margin-top: 40px;
    }

    .hero-section .right-side img {
        width: 90vw;
        height: auto;
    }
}

@media (max-width: 600px) {
    .option ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .option ul li a {
        padding: 8px 16px;
        font-size: 14px;
        border: none;
        border-radius: 6px;
    }

    .option ul li a:hover {
        transform: none;
        box-shadow: none;
    }
}

@media (max-width: 560px) {
    .hero-section {
        flex-direction: column;
        align-items: center;
    }

    .hero-section .left-side,
    .hero-section .right-side {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .hero-section .left-side h1 {
        font-size: 2rem;
    }

    .hero-section .right-side img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .option-tabs li a i{
        margin-top: 10px;
    }
}

@media (max-width: 450px) {
    .sub-box {
        min-width: 100%;
        max-width: 100%;
        padding: 20px;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .hero-buttons .btn {
        font-size: 14px;
        padding: 10px 18px;
    }

    .cont-heading {
        font-size: 2.4rem;
        padding: 0 10px;
        width: 100%;
    }

    .option-tabs{
        display: flex;
        flex-direction: column;
    }

    .option-tabs li a i{
        margin-top: 10px;
    }

    .option-heading{
        width: 100%;
    }

    #date {
        font-size: 28px;
    }
}