* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Helvetica, sans-serif;
    font-size: 18px;
    color: #fff;
}
.no-scroll {
    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: 15px 30px;
    font-size: 1.2rem;
    color: #2a2a72; /* Primary color for the button text */
    background-color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}
.btn:hover {
    background-color: #6a67ce;
    color: #fff;
}

#header {
    background-color: #2a2a72;
    padding: 30px 0;
}
#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#header .header-logo {
    max-width: 120px;
}
nav {
    position: relative;
}
.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.nav-list li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.nav-list li a:hover {
    background-color: #4a4abc;
}
.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 15px;
    cursor: pointer;
}
.menu-icon span {
    display: block;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
}

#home-banner {
    background: linear-gradient(to bottom, #2a2a72, #6a67ce);
    padding: 50px 0;
    text-align: center;
}
#home-banner h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}
#home-banner p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto 30px;
    max-width: 800px;
    color: #e0e0e0;
}
#home-banner .btn-holder {
    margin-top: 30px;
}

#our-services {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}
#our-services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6a67ce;
    margin-bottom: 50px;
    letter-spacing: 1px;
}
.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.services-type {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}
.services-type:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.services-type .image-holder {
    position: relative;
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
}
.services-type .image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.services-type:hover .image-holder img {
    transform: scale(1.1);
}
.services-type .desc strong {
    font-size: 1.4rem;
    color: #494786;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.services-type .desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.services-type .desc p {
    color: #777;
}

#home-about {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}
#home-about h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6a67ce;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
#home-about p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2a4957;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
#home-about .phone strong,
#home-about .phone a {
    color: #2a4957;
}
#home-about .phone a:hover {
    color: #2a2a72;
}

#footer .footer-top {
    background-color: #2a2a72;
    padding: 50px 0;
}
#footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
#footer ul {
    display: flex;
    gap: 30px;
}
#footer li a {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
#footer li a:hover {
    color: #00d2ff;
}
#footer .footer-logo {
    max-width: 120px;
}
#footer .footer-bottom {
    background-color: #5757be;
    padding: 20px 0;
}

#insurance-form {
    background: linear-gradient(to bottom, #f0f8ff, #e6efff);
    padding: 3rem 0;
  }
  
  #insurance-form .container {

    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .form-content {
    flex: 1 1 45%;
    text-align: left;
    padding: 1rem;
  }
  
  .form-content h2 {
    font-size: 2rem;
    color: #0056b3;
    margin-bottom: 1rem;
  }
  
  .form-content p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }
  
  .contact-form {
    flex: 1 1 45%;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus {
    border-color: #0056b3;
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.3);
  }
  
  .disclaimer {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
    margin-top: 1rem;
  }
  .disclaimer a {
    color: #333;
  }
  .btn-submit {
    background-color: #0056b3;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn-submit:hover {
    background-color: #003f8a;
  }

#op,
#privacy-policy,
#terms-conditions,
#ccpa,
#about-us,
#opt-out {
    background: linear-gradient(to right, #070252, #698ebb);
    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) {
    #home-banner {
        padding: 50px 0;
    }
    #footer ul {
        gap: 20px;
    }
    #footer li a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
    .nav-list {
        flex-direction: column;
        position: fixed;
        top: 88px;
        right: 0;
        bottom: 0;
        transform: translateX(100%);
        overflow: auto;
        background-color: #2a2a72;
        width: 300px;
        padding: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        transition: .3s ease-in-out;
        gap: 0;
    }
    .nav-list.active {
        transform: translateX(0);
    }
    .nav-list li a {
        display: block;
        border-bottom: 1px solid #fff;
        border-radius: 0;
        padding: 10px;
    }
    #burger-menu {
        display: flex;
    }
    #cross-menu {
        display: none;
        position: relative;
        cursor: pointer;
    }
    #cross-menu span {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        background-color: white;
        border-radius: 2px;
        transform-origin: center;
        transition: transform 0.3s;
    }
    #cross-menu span:first-child {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    #cross-menu span:last-child {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    #home-banner h1 {
        font-size: 2rem;
        line-height: 1;
    }
    #home-banner p {
        line-height: 1.3;
    }
    #our-services {
        padding: 40px 0;
    }
    #our-services h2 {
        font-size: 1.8rem;
    }
    #home-about {
        padding: 40px 0;
    }
    #home-about h3 {
        font-size: 1.8rem;
    }
    #home-about p {
        line-height: 1.3;
        margin-bottom: 0;
    }
    #footer .container {
        flex-direction: column-reverse;
        gap: 20px;
    }
    #footer ul {
        flex-direction: column;
        align-items: center;
    }
    #insurance-form .container {
        flex-direction: column;
    }
    .form-centent,
    .contact-form {
        width: 100%;
    }
    .contact-form {
        padding: 1rem;
    }
    .form-content h2 {
        font-size: 1.8rem;
    }
}