* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* font-family: 'ui-sans-serif', 'system-ui', 'sans-serif'; */
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
.text-purple{
    color: #9333ea;
}
.text-teal{
    color: #0d9488;
}
.btn{
    position: relative;
    background-color: #fff;
    font-size: 16px;
    line-height: 1em;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    min-width: 130px;
    height: 40px;
    padding: 10px 30px;
    text-decoration: none;
    border: 0;
    outline: 0;
    border-radius: 25px;
    cursor: pointer;
    opacity: 1;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.btn-purple{
    background: linear-gradient(135deg, #9b7cb8 0%, #b69acf 100%);
    color: white;
}
.btn-purple:hover{
    opacity: 0.9;
}
.btn-teal{
    background: linear-gradient(135deg, #5cbcc4 0%, #7dccd3 100%);
    color: white;
}
.btn-teal:hover{
    opacity: 0.9;
}
.btn-border{
    color: #000;
    border: 2px solid #d1d5db;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.btn-border:hover{
    background-color: #f4f4f5;
    border-color: #d8b4fe;
    color: #9333ea;
}
.with-arrow{
    display: inline-block;
    width: 1rem;
    height: 1rem;
}
.with-arrow img{
    width: 1rem;
}
.pb-1{
    padding-bottom: 0.5rem;
}
.mt-1{
    margin-top: 1rem;
}
.mt-3{
    margin-top: 3rem;
}
.text-center{
    text-align: center;
}
.d-block{
    display: block;
}
.tagline{
    font-size: 1.5rem;
    line-height: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    margin-bottom: 1.625rem;
}
.bottom-para{
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #4b5563;
    font-weight: 600;
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}
.bottom-para a{
    text-decoration: none;
    color: #8B5CF6;
}
.bottom-para a:hover{
    color: #9333ea;
}
.sub-heading{
    position: relative;
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    color: #111827;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}
.heading-section{
    position: relative;
    text-align: center;
}
.heading-section h2{
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}
.heading-section p{
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #4b5563;
    font-weight: 600;
    padding-bottom:1rem;
    max-width: 48rem;
    margin: 0 auto;
}
.before-purple::before{
    content: '';
    display: inline-block;
    width: 6rem;
    height: 0.25rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #9b7cb8 0%, #b69acf 100%);
    position: absolute;
    left: 0;
    bottom: 0;
}
.before-teal::before{
    content: '';
    display: inline-block;
    width: 6rem;
    height: 0.25rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #5cbcc4 0%, #7dccd3 100%);
    position: absolute;
    left: 0;
    bottom: 0;
}
.heading-section.before-purple::before{
    left: 50%;
    transform: translateX(-50%);
}
.w-100{
    width: 100%;
}
.img-fluid{
    max-width: 100%;
    height: auto;
}

/* Header */
header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    /* font-size: 1.8rem;
    font-weight: bold;
    color: #8B5CF6; */
}
.logo img{
    width: 150px;
    height: auto;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8B5CF6;
}

.cta-button {
    background: linear-gradient(135deg, #9b7cb8 0%, #b69acf 100%);
    min-width: 130px;
    height: 40px;
    color: white;
    padding: 8px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    opacity: 1;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.cta-button:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F8F6F3 0%, #FFFFFF 50%, #F0F8F9 100%);;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    transform: rotate(15deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    color: #111827;
}
.hero-text h1 span{
    display: block;
}

.hero-text p {
    max-width: 32rem;
    font-size: 1.25rem;
    line-height: 1.625;
    color: #4b5563;
    margin-top: 16px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary {
    background: white;
    color: #8B5CF6;
    padding: 15px 30px;
    border: 2px solid #8B5CF6;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-image {
    position: relative;
    text-align: center;
}
.hero-image img{
    border-radius: 1rem;
}
.hero-card {
    /* background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 400px;
    margin: 0 auto; */
    transform: rotate(5deg);
    transition: transform 0.3s;
}

.hero-card:hover {
    transform: rotate(0deg);
}

@media(min-width: 1024px){
    .sub-heading{
        font-size: 3rem;
        line-height: 1;
    }
    .heading-section h2{
        font-size: 3rem;
    }
    .hero-content{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media(min-width: 1200px){
    .hero-text h1{
        font-size: 3.5rem;
    }
}
@media(min-width: 1400px){
    .hero-text h1{
        font-size: 3.7rem;
    }
}

/* Features Section */

.features {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(to bottom, #f9fafb , #fff);
}

.section-title {
    position: relative;
    text-align: center;
    font-size: 2.25rem;
    line-height: 1;
    color: #111827;
    padding-bottom: 1rem;
    margin-bottom: 4rem;
}
.what-is .section-title {
    /* margin-bottom: 2rem; */
}
.section-title span{
    color: #9333ea;
}
.section-title.teal span, .section-title .text-teal{
    color: #0d9488;
}
.section-title::before{
    content: '';
    display: inline-block;
    width: 6rem;
    height: 0.25rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #9b7cb8 0%, #b69acf 100%);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.section-title.teal::before{
    background: linear-gradient(135deg, #5cbcc4 0%, #7dccd3 100%);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(to bottom right, #f9fafb , #fff);
    text-align: center;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0);
    transition: all 0.3s;
}

.feature-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
.featured-heading{
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.feature-icon {
    background: linear-gradient(135deg, #9b7cb8 0%, #b69acf 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 8px 12px;
    margin-right: 1rem;
    border-radius: 0.75rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #111827;
    text-align: left;
    margin-top: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
}
.feature-card:hover h3{
    color: #9333ea;
}

.feature-card p {
    color: #4b5563;
    line-height: 1.625;
    text-align: left;
}

/* Home Care Section */
.home-care {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E0F7FA 100%);
}
.home-care.what-is{
    background: #fff;
}
.home-care-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.flexible-price-box{
    width:100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 20px;
    border: 2px solid #e5e7eb;;
}
.flexible-price-box .section-title{
    margin-bottom: 2rem;
}
.flexible-price-box .main-text{
    font-size: 1.25rem;
    line-height: 1.625;
    color: #000;
}
.flexible-price-box p{
    margin-top: 1rem;
}
.shift-box{
    width: 20rem;
    margin: 0 auto;
}
.shift-box > div span{
    width: 50%;
    text-align: left;
}
/* .home-care-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
} */

.home-care-features {
    list-style: none;
    margin: 2rem 0;
}
.home-care.welcome-pilot .home-care-features{
    margin: 0;
}
.home-care.welcome-pilot p{
    margin-top: 15px;
}
.home-care-features li {
    position: relative;
    padding-left: 2.5rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.home-care-features.why-list li,
.home-care.welcome-pilot .home-care-features li{
    display: inline-block;
}
.home-care-features li:not(:last-child){
    margin-bottom: 1.5rem;
}

.home-care-features li::before {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-image: url(images/list-white-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    top: 7px;
    left: 4px;
    z-index: 1;
}
.home-care-features li::after{
    content: '';
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #9b7cb8 0%, #b69acf 100%);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 0;
    z-index: 0;
}
/* .how-work-steps{
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2rem;
} */

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: linear-gradient(to bottom right, #faf5ff, #f3e8ff);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    position: relative;
    border: 1.6px solid #e9d5ff;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    background: linear-gradient(to bottom right, #f0fdfa , #ccfbf1);
    /* color: white; */
    border: 1.6px solid #ccfbf1;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);;
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}


.price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.price .rate-text{
    color: #374151;
}
.price .rate-amount{
    font-size: 1.2rem;
    line-height: 2rem;
    font-weight: 700;
}

.pricing-card h4{
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-top: 2rem;
}
.price-features {
    list-style: none;
    text-align: left;
    /* margin: 2rem 0; */
    /* margin-bottom: 2rem; */
}

.price-features li {
    font-size: 0.9rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.pricing-bottom{
    margin-top: 2rem;
    text-align: center;
    color: #374151;
        font-size: 0.875rem;
    line-height: 1.25rem;
}

.hero-bottom{
    background: linear-gradient(135deg, #9b7cb8 0%, #b69acf 100%);
    padding-top: 5rem;
    padding-bottom: 5rem;
}



/* Footer */
footer {
    background: #1F2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #8B5CF6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.3rem 0;
}

.footer-section ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #8B5CF6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9CA3AF;
}

/* How it works */

.how-it-works{
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.how-work-step{
    position: relative;
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}
.how-work-step::before{
    content: '';
    display: inline-block;
    width: 2px;
    height: 100%;
    background: linear-gradient(to right, #e9d5ff, #99f6e4, #e9d5ff);
    position: absolute;
    top: 0;
    left: 50%;
    right: unset;
    bottom: 0;
    transform: translateX(-50%);
}
.work-step-item{
    position: relative;
    background-color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-icon{
    position: relative;
    background: linear-gradient(135deg, #9b7cb8 0%, #b69acf 100%);
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border-radius: 1rem;
    margin-bottom: 2rem;
    margin-top: 1.5em;
}

.step-icon span.step-no{
    background-color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    border: 4px solid #e9d5ff;
    border-radius: 50%;
    position: absolute;
    top: 27px;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #9333ea;
    font-weight: 600;
}
.step-content{
    text-align: center;
    margin-bottom: 1.5rem;
}
.step-content h3{
    font-size: 1.2rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}
.step-content p{
    line-height: 1.5;
    color: #4b5563;
}
.pilot-sign-up{
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(to bottom right, #faf5ff , #fff , #f0fdfa);
}
.pilot-grid{
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}
.pilot-card{
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.pilot-card:hover{
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);;
}
.pilot-card p{
    margin-top: 1rem;
    text-align: center;
}
.message-box-area{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.message-box-area .message-box{
    width: 100%;
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.bg-purple{
    background: linear-gradient(135deg, #9b7cb8 0%, #b69acf 100%);
}
.bg-teal{
    background: linear-gradient(135deg, #5cbcc4 0%, #7dccd3 100%);
}
.border-purple{
    border: 2px solid #e9d5ff;
}
.border-teal{
    border: 2px solid #99f6e4;
}
.head-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.head-box span{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
}
.head-box h3{
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: #111827;
}
.pilot-card ul{
    margin-top: 2rem;
    list-style: none;
}
.pilot-card ul li{
    position: relative;
    padding-left: 20px;
}
.pilot-card ul li::before{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #111827;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.pilot-card ul.list-purple li::before{
    background-color: #a855f7;
}
.pilot-card ul.list-teal li::before{
    background-color: #14b8a6;
}
.pilot-card ul li:not(:last-child){
    margin-bottom: 0.625rem;
}
.form-box{
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.form-box input{
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding: 0.5rem 0.75rem;
    outline: none;
    border-radius: 30px;
    border: 2px solid #e5e7eb;
}
.form-box input.form-purple{
    border: 2px solid #e9d5ff;
}
.form-box input.form-teal{
    border: 2px solid #99f6e4;
}
.pilot-region{
    max-width: 42rem;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.5rem;
    border: 2px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.pilot-region .map-icon{
    background-color: #f3f4f6;
    display: inline-block;
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.75rem;
    margin-left: auto;
    margin-right: auto;
}
.pilot-region h3{
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.pilot-region ul li{
    text-align: left;
}
.pilot-region ul li:not(:last-child){
    margin-bottom: 0.5rem;
}
.subscribe{
    display: none;
    background: linear-gradient(to bottom right, #f0fdfa , #faf5ff);
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.subscribe-inner-box{
    text-align: center;
}
.subscribe-inner-box span{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}
.subscribe-inner-box h3{
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}
.subscribe-inner-box p{
    max-width: 42rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #4b5563;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}
.subscribe-inner-box .form-box{
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}
.form-section{
    background: linear-gradient(to bottom right, #f0fdfa , #faf5ff);
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.form-area{
    max-width: 48rem;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 2px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.form-inner-area{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.form-area .form-list, .form-area .form-list-main{
    width: 100%;
}
.form-group .form-label{
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 5px;
}
.form-group .form-control{
    display: block;
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding: 0.5rem 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    outline: none;
}
.form-group textarea.form-control{
    border-radius: 10px;
    resize: none;
}
.radio-group{
    display: flex;
    column-gap: 30px;
}
.btn-group{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.familyfields{
    /* margin-top: 20px; */
    padding: 20px;
    /* border: 2px solid #e5e7eb;
    border-radius: 0.5rem; */
}
.checkbox-group{
    display: flex;
    flex-wrap: wrap;
    gap: 5px 15px;
}
.checkbox-group label{
    display: inline-block;
    width: calc(50% - 15px);
}
.story, .default-page{
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E0F7FA 100%);
}
.story-content p{
    /* font-size: 1.2rem; */
    margin-bottom: 15px;
}
.story-content p:last-of-type{
    margin-bottom: 0;
}
.our-team, .faq{
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(to bottom right, #faf5ff , #fff , #f0fdfa);
}
.team-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.team-list .team-list-item{
    width: 100%;
    background: linear-gradient(to bottom right, #f9fafb, #fff);
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0);
    transition: all 0.3s;
}
.team-list .team-list-item:hover{
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
.faq-inner-box{
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
}
.faq-inner-box .faq-content-box{
    background: linear-gradient(to bottom right, #f0fdfa , #ccfbf1);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    position: sticky;
    top: 128px;
}
.faq-inner-box  h2{
    font-size: 24px;
    line-height: 2rem;
    color: #000;
    margin-bottom: 1.5rem;
}
.faq-inner-box .faq-content{
    display: none;
}
.faq-inner-box .faq-content-box ul{
    list-style: none;
}
.faq-inner-box .faq-content-box .page-toc li:not(:last-child){
    margin-bottom: 15px;
}
.faq-inner-box .faq-content-box .page-toc li a{
    font-size: 16px;
    color: #111827;
    text-decoration: none;
}
.faq-inner-box .faq-content-box .page-toc li.active a,
.faq-inner-box .faq-content-box .page-toc li a:hover{
    color: #9333ea;
}
.faq-inner-box .faq-list-box{
    width: 100%;
}
.faq-inner-box .faq-list-box .faq-list-item{
    padding: 1rem;
    border-radius: 0.5rem;
    border: 2px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.faq-inner-box .faq-list-box .faq-list-item:not(:last-of-type){
    margin-bottom: 3rem;
}
.faq-list-item ul{
    list-style: none;
}
.faq-list li .question{
    position: relative;
    color: #111827;
    line-height: 1.75em;
    font-weight: 500;
    padding-left: 17px;
    padding-right: 15px;
    cursor: pointer;
}
.faq-list li .question::before {
    content: "#";
    position: absolute;
    left: 0;
    color: #9333ea;
    font-weight: 700;
}
.faq-list li .question::after {
    content: url(images/nav-dropdown.png);
    position: absolute;
    right: 0;
    top: 0;
    transition: .2s ease-in-out;
    -webkit-transition: .2s ease-in-out;
}
.faq-list li.open .question::after {
    transform: rotate(180deg);
}
.faq-list li .answer{
    display: none;
    color: #111827;
    overflow: hidden;
}
.faq-list li .answer .answer-box{
    margin: 15px 0;
    padding-left: 20px;
}
.policy-box ul{
    list-style: disc !important;
    padding-left: 18px;
}
.image-group{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.image-group img{
    width: 100%;
}
.app-store-box{
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid #374151;
}
.app-store-box p{
    color: #9CA3AF;
}
.app-store-list{
    width: 15rem;
    margin: 0 auto;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    column-gap: 16px;
}
.app-store-list .app-store-items{
    width: calc(50% - 8px);
}
.app-store-list .app-store-items img{
    vertical-align: middle;
}
.form-message {
    width: 100%;
    margin-top: 20px;
    font-weight: bold;
    color: #333;
    text-align:center;
}
.form-message span{
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    margin-top: 15px;
}
.small-text{
    font-size: 13px;
    margin-bottom: 1rem;
}
.default-content-box h3{
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}
.default-content-box p:not(:last-of-type){
    margin-bottom: 1rem;
}
.default-content-box ul{
    padding-left: 18px;
    margin-bottom: 1rem;
}

.default-content-box a, .faq-list-item a{
    text-decoration: none;
    color: #0d9488;
}
.default-content-box a:hover, .faq-list-item a:hover{
    color: #9333ea;
}
@media(min-width:992px){
    .section-title{
        font-size: 3rem;
    }
    .form-area .form-list{
        width: calc(50% - 15px);
    }
    .checkbox-group label{
        display: inline-block;
        width: calc(25% - 12px);
    }
    .team-list .team-list-item{
        width: calc(33.33% - 20px);
    }
    .faq-inner-box .faq-content{
        width: calc(33% - 25px);
        display: block;
    }
    .faq-inner-box .faq-list-box{
        width: calc(67% - 25px);
    }
    .faq-inner-box .faq-list-box .faq-list-item{
        padding: 2rem;
    }
    .faq-inner-box h2{
        font-size: 32px;
        margin-bottom: 2rem;
    }
    .image-group img{
        width: calc(50% - 15px);
    }
    .message-box-area .message-box{
        width: calc(33.33% - 20px);
    }
}
@media(min-width:1024px){
    .how-work-step{
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    .how-work-step::before{
        width: 100%;
        height: 2px;
        top: 64px;
        left: 0;
        right: 0;
        transform: unset;
    }
    .work-step-item{
        background-color: transparent;
    }
    .step-icon{
        margin-top: 0;
    }
    .step-content{
        margin-bottom: 1.5rem;
    }
    .pilot-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .subscribe-inner-box h3{
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .subscribe-inner-box .form-box{
        flex-wrap: nowrap;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .home-care-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Floating elements */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}