*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Poppins", "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
}

body{
    line-height:1.6;
    color:#333;
    background:#f8f9fb;
}



.navbar{
    background:#fff;
    padding:18px 0;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

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

.logo h2{
    color:#5CA2B2;
    margin:0;
    font-size:28px;
}

.nav-links{
    display:flex;
    gap:25px;
}

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

.nav-links a:hover{
    color:#5CA2B2;
}

.nav-actions{
    display:flex;
    gap:12px;
}

.nav-btn{
    text-decoration:none;
    padding:10px 18px;
    border-radius:6px;
    font-weight:600;
}

.primary-btn{
    background:#5CA2B2;
    color:#fff;
}

.secondary-btn{
    border:1px solid #5CA2B2;
    color:#5CA2B2;
}

.secondary-btn:hover{
    background:#5CA2B2;
    color:#fff;
}

/* Mobile */

@media(max-width:768px){

    .nav-container{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .nav-actions{
        width:100%;
        justify-content:center;
    }
}

/* Container Section */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HERO Section */
.hero{
    background:linear-gradient(135deg, #5CA2B2, #4a8c9a);
    color:white;
    padding:110px 20px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.08);
}

.hero .container{
    position:relative;
    z-index:1;
}

.hero h1{
    font-size:46px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.2;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}

.hero p{
    font-size:18px;
    max-width:850px;
    margin:0 auto 30px auto;
    line-height:1.7;
    opacity:0.95;
}

.hero .btn{
    margin:10px 12px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero{
        padding:80px 15px;
    }

    .hero h1{
        font-size:28px;
    }

    .hero p{
        font-size:15px;
    }
}

/* Button */
.btn{
    display:inline-block;
    background:#fff;
    color:#5CA2B2;
    padding:14px 28px;
    margin:10px;
    text-decoration:none;
    border-radius:6px;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    background:#f0f0f0;
}

/* Sections */
section{
    padding:60px 0;
}

h2{
    text-align:center;
    margin-bottom:30px;
    color:#5CA2B2;
}

/* Card Grids */
.card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

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

/* List */
ul{
    padding-left:20px;
}

/* Process */
.process{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    text-align:center;
}

.step{
    background:#5CA2B2;
    color:#fff;
    padding:15px 20px;
    border-radius:8px;
    min-width:150px;
}


/* Form */
.lead-form{
    background:#fff;
    padding:35px;
    border-radius:12px;
    width:100%;
    margin:0;
    border:1px solid #e5e7eb;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.lead-form input,
.lead-form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:5px;
}

.lead-form button{
    width:100%;
    background:#5CA2B2;
    color:white;
    border:none;
    padding:14px;
    cursor:pointer;
    border-radius:5px;
    font-size:16px;
}


.note{
    margin-top:20px;
    color:#333;
}

/* Footer */
footer{
    background:#5CA2B2;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:20px;
}

/* Responsive */
@media (max-width: 768px){
    .hero h1{
        font-size:28px;
    }

    .hero p{
        font-size:16px;
    }

    .btn{
        display:block;
        width:80%;
        margin:10px auto;
    }

    .step{
        min-width:120px;
        font-size:14px;
    }
}

/* Request Form and FAQ */

.assessment-wrapper{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:30px;
    align-items:stretch; 
}

.assessment-wrapper .lead-form,
.assessment-wrapper .faq-box{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    border:1px solid #e5e7eb;
    height:100%;          
}

.faq-box{
    display:flex;
    flex-direction:column;
}

.lead-form{
    display:flex;
    flex-direction:column;
}

.lead-form form{
    flex:1;
    display:flex;
    flex-direction:column;
}

.lead-form button{
    margin-top:auto;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.faq-box .faq-item{
    background:transparent;
    padding:0;
    margin-bottom:20px;
    box-shadow:none;
}

@media(max-width:768px){

    .assessment-wrapper{
        grid-template-columns:1fr;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .assessment-wrapper .lead-form,
    .assessment-wrapper .faq-box{
        height:auto;
    }
}

/* Mobile Media Responsive CSS*/

@media(max-width:768px){

    .assessment-wrapper{
        grid-template-columns:1fr;
    }

    .form-row{
        grid-template-columns:1fr;
    }
}

/*Amsone Logo*/


.logo{
    display:flex;
    align-items:center;
    gap:15px;
    justify-self:start;
}

.logo img{
    width:100px;
    height:auto;
    position: absolute;
    top: 0;
    left: 0;
	
}

.logo h2{
    color:#5CA2B2;
    font-size:28px;
    margin:0;
}

/* Center Navbar */
.nav-links{
    display:flex;
    justify-content:center;
    gap:40px;
}

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

/* Right Buttons */
.nav-actions{
    display:flex;
    gap:12px;
    justify-self:end;
}



