#home {
    display: none;
}

#home .home-content {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 18px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#home .header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #FCA311;
}

#home .header h1 {
    font-size: 45px;
    font-weight: 600;
    margin: 0;
}

#home .header p {
    font-size: 18px;
    color: #666;
}

#home .header nav ul {
    list-style: none;
    padding: 0;
}

#home .header nav ul li {
    display: inline;
    margin: 0 10px;
}

#home .header nav ul li a {
    text-decoration: none;
    color: #FCA311;
}

#home .details {
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
}

#home .details h2 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: bold;
}

#home .details ul {
    font-size: 1.1em;
    color: #555;
    list-style: none;
    padding: 0;
    line-height: 2;
}

#home .features {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #FCA311;
    margin: 0;
    cursor: default;
}

#home .feature {
    flex: 1;
    padding: 10px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

#home .feature:hover{
    background-color: #f1f1f1;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#home .feature h3 {
    font-size: 1.5em;
    margin-bottom: 5px;
    font-weight: 600;
}


#home .feature p {
    font-size: 1em;
    color: #777;
}

#home .footer  {
    text-align: center;
    margin-top: 0px;
    padding-top: 10px;
    border-top: 1px solid #FCA311;
}

#home .footer h3 {
    font-size: 20px;
    color: #14213D;
    font-weight: bold;
}

#home .footer .ceo-image {
    width: 60px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-right: 40px;
    margin-bottom: 0;
    margin-left: 0;
    margin-top: 10px;
    float: right;
    transition: all 1s ease;
    z-index: 1;
    user-select: none;
}

#home .footer .ceo-image:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.5) translateX(-2px);
    border-radius: 50%;
}

.ceo-quote {
    font-size: 16px;
    font-style: italic;
    color: #444;
    padding: 10px;
    border-left: 4px solid #FCA311;
    display: inline-block;
    text-align: justify;
}

/* .cta {
    text-align: center;
    margin: 20px 0;
}

.cta button{
    text-align: center;
    font-size: 16px;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    border: 1px solid #FCA311;
    background: transparent;
    color: #FCA311;
    overflow: hidden;
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.cta button:hover{
    color: #14213D;
    background: #FCA311;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.cta button i{
    position: relative;
    top: 3px;
    left: 0px;
} */

.testimonials, .updates {
    margin: 20px 0;
    margin-bottom: 10px;
}

.testimonials, .updates h2{
    font-size: 1.5em;
margin-bottom: 5px;
font-weight: 500;
}

.testimonial p, .update p {
    font-size: 1em;
    color: #555;
}

.testimonial h3, .update h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}


@media screen and (max-width: 768px) {
    #home .header h1 {
        font-size: 35px;
    }

    #home .details h2 {
        font-size: 24px;
    }

    #home .header p{
        font-size: 17px;
    }

    #home .feature {
        max-width: 45%;
        margin-bottom: 20px;
    }

    #home .cta button {
        font-size: 18px;
        padding: 8px 16px;
    }
}

@media screen and (max-width: 480px) {
    #home .header h1 {
        font-size: 26px;
    }

    #home .header p:last-child{
        font-size: 14px;
    }

    #home .details h2 {
        font-size: 24px;
    }
    #home .features {
        display: inline-block;
    }
    #home .feature {
        max-width: 100%;
    }

    #home .feature h3{
        font-size: 20px;
    }

    #home .footer .ceo-image {
        margin-right: 20px;
    }
    
    .ceo-quote {
        margin: 10px 20px;
    }

    #home .cta button {
        font-size: 16px;
        padding: 6px 12px;
    }
}

@media screen and (max-width: 400px) {
    #home .footer h3{
        font-size: 18px;
    }

    #home .footer .ceo-image {
        margin-right: 0px;
    }
    
    .ceo-quote {
        margin: 10px 10px;
    }
}