* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Helvetica, sans-serif;
    font-size: 18px;
    color: #fff;
}
body.no-scroll {
    padding-right: 17px;
    overflow: hidden;
}
.wrapper {
    display: block;
    overflow: hidden;
}
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
img {
    display: block;
    width: 100%;
}
ul li {
    list-style: none;
}
a {
    text-decoration: none;
    color: #fff;
    display: inline-block;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #00bec9;
    transition: .3s ease-in;
    font-weight: 600;
    color: #fff;
}
.btn:hover {
    background-color: #008e96;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#header {
    padding: 20px 0;
    background-color: #eaad00;
}
#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#header .header-logo {
    max-width: 220px;
}
#nav ul {
    display: flex;
    gap: 30px;
    justify-content: center;
}
#nav ul a {
    font-size: 20px;
}
#nav ul a:hover {
    color: #c5c5c5;
}
#burger-menu {
    display: none !important;
    cursor: pointer;
    width: 25px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.burger-menu span {
    background-color: #fff;
    height: 2px;
    width: 100%;
    display: block;
    transition: .3s ease-in;
}
.nav-visible #burger-menu {
    position: fixed;
    right: 20px;
    z-index: 99;
}
.nav-visible span {
    background-color: #000 !important;
}
.nav-visible #burger-menu span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 7px) !important;
}
.nav-visible #burger-menu span:nth-child(2) {
    opacity: 0 !important;
}
.nav-visible #burger-menu span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -8px) !important;
}
#header .btn-holder {
    text-align: right;
}

#home-banner {
    background-color: #fcc302;
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}
#home-banner .container {
    display: flex;
    gap: 40px;
}
#home-banner .desc,
#home-banner .image-holder {
    width: 50%;
}
#home-banner h1 {
    font-size: 45px;
    margin: 0 0 30px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp .5s forwards 0.5s;
}
#home-banner p {
    margin: 0 0 30px;
    line-height: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 1s;
}
#home-banner .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 1.5s;
}

#our-services {
    padding: 80px 0;
    background-color: #f8f9fc;
}
#our-services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #333;
}
#our-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}
#our-services .services-card {
    background: linear-gradient(135deg, #ffffff, #f0f4f9);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
#our-services .services-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
#our-services .services-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 20px;
}
#our-services .card-content {
    padding: 20px;
}
#our-services .icon-holder {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #e0ebff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#our-services .icon-holder img {
    width: 50%;
    height: auto;
}
#our-services h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #222;
}
#our-services p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

#home-about {
    padding: 50px 0;
    color: #333;
    opacity: 0;
    background-color: #f5f7fa;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
#home-about.about-us-visible {
    opacity: 1;
    transform: translateY(0);
}
#home-about .container {
    display: flex;
    gap: 40px;
    align-items: center;
}
#home-about .image-holder,
#home-about .desc {
    width: 50%;
}
#home-about h3 {
    margin-bottom: 30px;
}

#footer {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
#footer.footer-visible {
    opacity: 1;
    transform: translateY(0);
}
#footer .footer-top {
    background-color: #343434;
    padding: 60px 0 20px;
}
#footer .widget-holder {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
#footer .col {
    width: 33.33%;
}
#footer .col h4 {
    margin-bottom: 20px;
    font-size: 20px;
}
#footer .footer-menu li {
    padding: 10px 0;
}
#footer .footer-menu a:hover {
    color: #c5c5c5;
}
#footer .phone a {
    position: relative;
    padding-left: 30px;
    margin: 10px 0 30px;
    color: #fff;
}
#footer .phone a::before {
    content: "";
    background: url(../images/phone-call.png) no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    left: 0px;
}
#footer .footer-logo {
    max-width: 200px;
}
#footer .footer-bottom {
    background-color: #4b4b4b;
    padding: 20px 0;
}
#footer .footer-bottom .container {
    display: flex;
    justify-content: space-between;
}
#footer .footer-bottom ul {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}
.form-header h2 {
    font-size: 28px;
}
.form-header p {
    font-size: 16px;
    line-height: 1.6;
}
.form-container {
    width: 50%;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.timeline-form {
    display: flex;
    flex-direction: column;
}
.form-container input,
.form-container textarea,
.form-container select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f9f9f9;
}
.form-container input:focus,
.form-container textarea:focus,
.form-container select:focus {
    border-color: #00bec9;
    outline: none;
}
.form-container .disclaimer {
    font-size: 11px;
    color: #666;
}
.form-container .disclaimer a {
    color: #333;
}
.form-container .disclaimer input {
    width: auto;
    margin: 0;
}
.form-container .btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background: #00bec9;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}
.form-container .btn:hover {
    background: #2a8db0;
}
.submit-btn {
    background: #00bec9;
}
.submit-btn:hover {
    background: #008e96;
}

#aca-form,
#auto-form,
#fe-form,
#medicare-form,
#ssdi-form,
#contact-form {
    background: url(../images/153685143_0ad072fa-43c9-4ed3-b2ed-39786d0743cc.webp) no-repeat;
    position: relative;
    padding: 60px 0;
}
#aca-form::before,
#auto-form::before,
#fe-form::before,
#medicare-form::before,
#ssdi-form::before,
#contact-form::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #008e9691;
}
#aca-form .container,
#auto-form .container,
#fe-form .container,
#medicare-form .container,
#ssdi-form .container,
#contact-form .container {
    position: relative;
} 

#op,
#privacy-policy,
#terms-conditions,
#ccpa,
#about-us,
#opt-out {
    background: linear-gradient(to right, #003f8a, #4b86cf);
    padding: 60px 0;
}
#op h2 {
    margin-bottom: 30px;
}
#op li {
    padding: 10px 0;
}
#privacy-policy h2,
#privacy-policy p,
#privacy-policy ul,
#terms-conditions h2,
#terms-conditions p {
    margin-bottom: 10px;
}
#about-us h2,
#about-us h3,
#about-us ul,
#about-us p {
    margin-bottom: 10px;
}
#ccpa h1,
#opt-out h1 {
    margin-bottom: 10px;
}
#ccpa .heading-holder,
#opt-out .heading-holder {
    margin-bottom: 50px;
}
#ccpa ol,
#opt-out ol {
    padding: 20px;
}
#ccpa ol li,
#opt-out ol li {
    line-height: 1.2;
    margin-bottom: 5px;
}

@media (max-width: 1000px) {
    #header .btn-holder {
        display: none;
    }
    #nav ul {
        gap: 20px;
    }
    #nav ul a {
        font-size: 18px;
    }
    #home-banner h1 {
        font-size: 35px;
        line-height: 37px;
    }
    #home-banner p {
        line-height: normal;
    }
    #our-services .services-type {
        width: calc(33.33% - 40px);
    }
}
@media (max-width: 768px) {
    #burger-menu {
        display: flex !important;
    }
    #nav ul {
        width: 250px;
        background-color: #f8f9fc;
        position: fixed;
        top: 0;
        bottom: 0;
        right: -250px;
        padding: 100px 20px 20px;
        transition: .5s ease;
        overflow: auto;
        box-shadow: 4px 0 6px rgba(0, 0, 0, 0.3);
    }
    .nav-visible ul {
        right: 0 !important;
        z-index: 9;
        transition: .5s ease;
        flex-direction: column;
    }
    .nav-visible ul a {
        color: #000;
        border-bottom: 1px solid #000;
        display: block;
    }
    #home-banner .container {
        flex-direction: column;
    }
    #home-banner .desc,
    #home-banner .image-holder {
        width: 100%;
    }
    #home-banner h1 {
        font-size: 30px;
        line-height: 32px;
    }
    #our-services .services-type {
        width: calc(50% - 40px);
    }
    #home-about .container {
        flex-direction: column;
    }
    #home-about .image-holder, 
    #home-about .desc {
        width: 100%;
    }
    #footer .widget-holder {
        flex-direction: column;
        gap: 20px;
    }
    #footer .col {
        text-align: center;
        border-bottom: 2px solid #d8d8d8;
        width: 100%;
    }
    #footer .col:last-child {
        border-bottom: none;
    }
    #footer .footer-menu li {
        padding: 0;
    }
    #footer .footer-menu a {
        display: block;
        padding: 10px 0;
        border-bottom: 2px solid #d8d8d8;
    }
    #footer .footer-menu li:last-child > a {
        border-bottom: none;
    }
    #footer .phone a {
        padding-left: 30px;
    }
    #footer .phone a::before {
        left: 0;
    }
    #footer .footer-bottom .container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    #footer .footer-bottom ul {
        gap: 15px;
    }
    .form-container {
        width: 100%;
    }
}
@media (max-width: 600px) {
    #header .btn-holder {
        width: 60%;
    }
    #our-services .services-type {
        width: 60%;
    }
    #footer .f-bottom ul {
        flex-direction: column;
        gap: 5px;
    }
    .form-desc h2 {
        font-size: 26px;
    }
    .form-desc p {
        font-size: 17px;
    }
    .styled-form h4 {
        font-size: 22px;
    }
}
@media (max-width: 400px) {
    #our-services .services-type {
        width: 100%;
    }
}