.header {
    flex: 1;
    padding-right: 20px;
}

.header-additional {
    flex: 1;
    padding: 50px;
    text-align: left;
}

.header p {
    color: #747272;
    font-size: 1.1em;
    margin: 0;
    text-align: justify;
}

.quoteforce-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.quote-section {
    flex: 1;
    min-width: 0;
}

.quote-interface {
    border-radius: 10px;
    padding: 0;
    width: 100%;
}

.quote-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.key-features {
    color: #1a3c66;
    border-radius: 10px;
    margin-top: 20px;
}

.key-features-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.key-features h2 {
    margin-top: 0;
    background-color: #1a3c66;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
}

.key-features-text {
    width: 50%;
    font-weight: bold;
    color: black;
}

.features {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-top: 20px;
}

.feature2 {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-top: 50px;
}

.feature-box {
    background-color: white;
    color: #1a3c66;
    padding: 20px;
    border-radius: 30px;
    border: 3px solid #1a3c66;
    width: 70%;
}

.feature-box:hover {
    background-color: #1a3c66;
    color: white;
    border: 1px solid white;
}   


.feature-box h3 {
    font-size: large;
    font-weight: bold;
}

.feature-box-booking {
    background-color: white;
    color: #1a3c66;
    padding: 20px;
    border: 3px solid #1a3c66;
    border-radius: 30px;
    width: 48%;
}

.feature-box-booking:hover {
    background-color: #1a3c66;
    color: white;
    border: 1px solid white;
}
.feature-box-booking h3{font-size:20px;}
.feature-icon {
    width: 50px;
    height: auto;
    border-radius: 30px;
    border: 1px solid #1a3c66;
    border-bottom: 4px solid #1a3c66;
    margin-bottom: 10px;
}

.additional-design {
    background-color: #1a3c66;
    padding: 20px;
    margin-top: 70px;
    text-align: center;
}

.additional-design-content {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.additional-design h3 {
    color: white;
    margin-bottom: 10px;
    text-align: left;
}

.additional-design p {
    color: white;
    font-size: 1em;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: justify;
}

.why-quoteforce-image {
    height: auto;
    border-radius: 10px;
}

.additional-design-image {
    flex: 1;
}

.book-demo-btn {
    display: inline-block;
    padding: 20px 10px 20px 20px;
    color: white;
    font-weight: bold;
    border: 2px solid white;
    border-radius: 40px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.book-demo-btn span {
    margin-left: 8px;
    background-color: white;
    color: #1a3c66;
    font-weight: bold;
    border: 2px solid white;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.book-demo-btn span:hover {
    background-color: #1a3c66;
    color: white;
}

.accordion-container {
    margin-top: 40px;
}

.accordion-header-section {
    display: flex;
    gap: 20px;
}

.accordion-header-section h2 {
    margin-top: 0;
    background-color: #1a3c66;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
}

.accordion-header-text {
    font-size: 1rem;
    font-weight: bold;
    color: black;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #fff;
    border: 1px solid #1a3c66;
    border-bottom: 5px solid #1a3c66;
    border-radius: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #1a3c66;
    color: #fff;
}

.accordion-header.active {
    background: #1a3c66;
    color: #fff;
    border-bottom: 1px solid white;
}

/*.accordion-header:hover span {
    background-color: white;
    color: #1a3c66;
}*/

.accordion-header span {
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #1a3c66;
    color: white;
    border-radius: 20px;
    width: 40px;
    text-align: center;

}

.accordion-title {
    padding: 10px;
    color: #1a3c66;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;

}
.accordion-header:hover .accordion-title{
    color: #fff;
}
.accordion-header.active .accordion-title ,.accordion-header.active span{margin-bottom:20px;color:#fff;}

.accordion-number {
    font-size: 40px;
}

.accordion-content {
    display: none;
    padding: 30px;
    background: #1a3c66;
    margin-top: -40px;
    margin-bottom: 15px;
    border-radius: 0 0 30px 30px;
    font-size: 1rem;
    color: white;
    border-top: 1px dotted white;
}

.accordion-content.show {
    display: block;
}

.how-it-works {
    margin-top: 40px;
}

.how-it-works-header {
    display: flex;
    gap: 20px;
    align-items: center;
}

.how-it-works h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.how-it-works-text {
    font-size: 1rem;
    font-weight: bold;
    color: black;
    padding-top: 10px;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 20px;
    max-width: 100%;
}

.workflow-card-1 h3, .workflow-card-2 h3, .workflow-card-3 h3,  .workflow-card-4 h3, .workflow-card-5 h3, .workflow-card-6 h3 {
    width: 100%;
    margin-bottom:0!important;
    font-size:20px;
    line-height:1.2;
}

.workflow-card-1 , .workflow-card-2, .workflow-card-3, .workflow-card-4, .workflow-card-5, .workflow-card-6 {
    background-color: #1a3c66;
    color: white;
    padding: 20px;
    border-radius: 30px;
    position: relative;
    min-height: 200px;
    display: flex;
    justify-content: space-between;
}


.workflow-card-1::before{
    content: '';
    background-image: url(../images/quoteforce-img/01.svg);
    background-repeat: no-repeat;
    width: 100%;
    max-width: 170px;
    background-size: contain;
    position: absolute;
    top: 160px;
    bottom: 0px;
    left: 25px;
    right: auto;
}

.workflow-card-2::before{
    content: '';
    background-image: url(../images/quoteforce-img/02.svg);
    background-repeat: no-repeat;
    width: 100%;
    max-width: 170px;
    background-size: contain;
    position: absolute;
    top: 170px;
    bottom: 0px;
    left: 25px;
    right: auto;
}

.workflow-card-3::before{
    content: '';
    background-image: url(../images/quoteforce-img/03.svg);
    background-repeat: no-repeat;
    width: 100%;
    max-width: 170px;
    background-size: contain;
    position: absolute;
    top: 170px;
    bottom: 0px;
    left: 25px;
    right: auto;
}

.workflow-card-4::before{
    content: '';
    background-image: url(../images/quoteforce-img/04.svg);
    background-repeat: no-repeat;
    width: 100%;
    max-width: 170px;
    background-size: contain;
    position: absolute;
    top: 170px;
    bottom: 0px;
    left: 25px;
    right: auto;
}


.workflow-card-5::before{
    content: '';
    background-image: url(../images/quoteforce-img/05.svg);
    background-repeat: no-repeat;
    width: 100%;
    max-width: 170px;
    background-size: contain;
    position: absolute;
    top: 170px;
    bottom: 0px;
    left: 25px;
    right: auto;
}

.workflow-card-6::before{
    content: '';
    background-image: url(../images/quoteforce-img/06.svg);
    background-repeat: no-repeat;
    width: 100%;
    max-width: 147px;
    background-size: contain;
    position: absolute;
    top: 170px;
    bottom: 0px;
    left: 25px;
    right: auto;
}


.workflow-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}

.workflow-card h3 {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0;
}

.step-image {
    width: 200px;
    height: auto;
    position: relative;
}

.workflow-content {
    padding-top: 100px;
    padding-left: 60px;
}

.workflow-content p {
    font-size: 0.9em;
    color: white;
    text-align: left;
    margin: 0;
}

.choose-plan {
    margin-top: 40px;
}

.choose-plan-header {
    display: flex;
    gap: 20px;
}

.choose-plan h2 {
    margin-top: 0;
    background-color: #1a3c66;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
}

.choose-plan-text {
    font-size: 1rem;
    font-weight: bold;
    color: black;
    padding-top: 10px;
}

.plan-options {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-top: 20px;
}

.plan-card {
    display: grid;
    background-color: #fff;
    color: #1a3c66;
    border-radius: 30px;
    padding: 30px;
    width: calc(33.33% - 20px);
    height: 400px;
    text-align: left;
    border: 1px solid #1a3c66;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.plan-card h3 {
    margin: 10px 0;
    padding-left: 0px;
    font-size: 1.2em;
    min-height: 0;
    max-height: 0;
}

.plan-card p {
    margin: 0px 0;
    padding-left: 0px;
    font-size: 0.9em;
}

.plan-card .price {
    font-family: 'Syne', sans-serif;
    font-weight: bold;
    font-size: 2rem;
    margin: 10px 0;
}

.plan-card-content {
    display: flex;
    padding-left: 0px;
    padding-right:0px;
}

.plan-card-content span{
    transform: rotate(45deg);
}

.plan-card button {
    background-color: #1a3c66;
    color: #fff;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    line-height:1.2;
    padding: 20px 30px;

}

.plan-card:hover {
    background: #1a3c66;
    color: white;
}

.plan-card:hover button {
    background: #fff;
    color: #1a3c66;
    border: 1px solid #1a3c66;
}

.plan-card button:hover {
    background: white;
    color: #1a3c66;
    border: 1px solid #1a3c66;
}

.testimonials-section {
    margin-top: 40px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.testimonials-header h2 {
    margin-top: 0;
    margin-bottom: 0;
    background-color: #1a3c66;
    color: #fff;
    padding: 10px;
    border-radius: 10px;

}

.testimonials-subtext {
    font-size: 1rem;
    font-weight: bold;
    color: black;
    padding-top: 10px;
    flex: 1;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-btn {
    color: #1a3c66;
    border: 2px solid #ccc;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-btn:hover {
    background-color: #dfdfdf;
}

.testimonial-cards {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    justify-content: center;
    padding-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-card {
    background-color: #1a3c66;
    color: white;
    border: 1px solid #1a3c66;
    border-radius: 40px;
    padding: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    max-width: 360px;
    width: calc(33.33% - 20px);
    text-align: left;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    opacity: 0.7;
    flex: 1;
}

.testimonial-card.active {
    transform: scale(1.08);
    opacity: 1;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.testimonial-card.active:hover {
    transform: scale(1.09);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
    background: white;
    color: #1a3c66;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover h2 {
    background: white;
    color: #1a3c66;
}

.quote-icon {
    font-size: 3rem;
    color: #1a3c66;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-card h2 {
    font-size: 1.3rem;
    margin: 0;
    padding-left: 0px;
    font-weight: bold;
}

.testimonial-card p {
    font-size: 1rem;
    margin: 10px 0 0;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: bold;
    margin: 0;
    font-size: 1rem;
}

.author-title {
    font-size: 0.9rem;
    margin: 5px 0 0 0;
}

.contact-section {
    background-color: #1a3c66;
    color: white;
    padding: 60px;
    border-radius: 10px;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.contact-header {
    text-align: left;
    max-width: 40%;
}

.contact-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: white;
    font-weight: 400;
    width: 80%;
}

.contact-header h1 b {
    font-style: italic;
}

.contact-header p {
    max-width: 100%;
    color: white;
}

.contact-header img {
    margin-bottom: -15px;
}

.contact-review {
    font-size: 12rem;
    margin-bottom: -160px;
    margin-top: -40px;
    margin-left: -40px;
    font-style: italic;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: #fff;
    color: #0d1f33;
    padding: 40px;
    border-radius: 30px;
    width: 40%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.quoteforce-logo-container {
    display: flex;
    justify-content: center;
}

.quoteforce-logo {
    max-width: 100%;
    height: auto;
}

.form-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 0.9em;
}

.form-container textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    box-sizing: border-box;
    font-size: 0.9em;
}

.form-container input::placeholder,
.form-container textarea::placeholder {
    color: #888;
}

.form-container button {
    width: 100%;
    padding: 10px;
    background-color: #1a3c66;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s;
}

.form-container button:hover {
    background-color: #0d1f33;
}

.testimonial-author {
    font-size: 0.9em;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 50px;
}

.avatars {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.avatars img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
}

.avatars .play-button {
    width: 40px;
    height: 40px;
    border: 1px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    cursor: pointer;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.logo-section img {
    width: 180px;
    height: auto;
}

.logo-text {
    font-size: 0.9em;
}

.newsletter {
    margin: 20px 0;
}

.newsletter-form {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    color: white;
    font-weight: bold;
    border: 2px solid white;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter input {
    padding-left: 30px;
    padding-right: 100px;
    border: none;
    background-color: transparent;
    color: #fff;
    font-size: 0.9em;
}

.newsletter input::placeholder {
    color: white;
}

.newsletter button.newsletter-btn {
    background-color: #fff;
    color: #1a3c66;
    border: none;
    padding: 10px;
    width: 40px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s;
}

.newsletter button.newsletter-btn:hover {
    background: #1a3c66;
    color: white;
    border: 1px solid white;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-icons a {
    display: flex;
    justify-content: center;
    width: 9%;
    background-color: white;
    color: #1a3c66;
    font-size: 1.5em;
    text-decoration: none;
    transition: color 0.3s;
    border: 1px solid white;
    border-radius: 30px;
    padding: 10px 0;
}

.links-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 100px;
    padding-left: 60px;
    padding-top: 20px;
}

.links-column {
    flex: 1;
    min-width: 150px;
}

.links-column h4 {
    margin-bottom: 10px;
    color: #fff;
}

.links-column ul {
    list-style: none;
    padding: 0;
}

.links-column ul li {
    margin-bottom: 5px;
}

.links-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9em;
}

.links-column ul li a:hover {
    color: #fff;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8em;
    width: 100%;
    margin-top: 20px;
    padding-right: 100px;
}

.footer-top{
    display: flex;
    padding-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    width: 40%;
    min-width: 300px;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 10px;
    font-weight: bold;
}

.footer a:hover {
    color: #ccc;
}

.copyright {
    font-size: 15px;
}

.terms-privacy {
    font-size: 15px;
}

/* Media Queries for Responsiveness */

/* Large tablets and small desktops (max-width: 1024px) */
@media (max-width: 1024px) {
    

    .header {
        display: grid;
    }

    .header p {
        font-size: 1em;
    }

    .quoteforce-section {
        flex-direction: column;
        align-items: center;
    }

    .quote-section {
        width: 100%;
    }

    .key-features-header, .accordion-header-section, .how-it-works-header,
    .choose-plan-header, .testimonials-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .key-features-text, .accordion-header-text, .how-it-works-text,
    .choose-plan-text, .testimonials-subtext {
        width: 100%;
        padding-right: 0;
    }

    .features, .feature2 {
        flex-direction: column;
        align-items: center;
    }

    .feature-box, .feature-box-booking {
        width: 80%;
    }

    .additional-design-content {
        flex-direction: column;
        align-items: center;
    }

    .header-additional {
        padding: 40px;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .workflow-card-1, .workflow-card-2, .workflow-card-3, 
    .workflow-card-4, .workflow-card-5, .workflow-card-6 {
        min-height: 200px;
        padding: 15px;
    }

    .workflow-content {
        padding-top: 60px;
        padding-left: 20px;
    }

    .workflow-card-1::before,
    .workflow-card-2::before,
    .workflow-card-3::before,
    .workflow-card-4::before,
    .workflow-card-5::before,
    .workflow-card-6::before {
        width: 30%;
        height: 30%;
        top: 140px;
        left: 30px;
    }

    .plan-options {
        /* flex-direction: column; */
        align-items: center;
    }

    .plan-card {
        width: 50%;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonials-subtext {
        padding-right: 0;
    }

    .testimonial-cards {
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    .testimonial-card {
        min-width: calc(100% - 20px);
        opacity: 1;
        transform: none;
    }

    .testimonial-card.active {
        transform: scale(1);
        opacity: 1;
        margin-left: 20px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .contact-section {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }

    .contact-header {
        max-width: 100%;
        text-align: center;
    }

    .contact-header h1 {
        font-size: 2em;
    }

    .contact-review {
        font-size: 8rem;
        margin-bottom: -100px;
        margin-left: 0;
    }

    .form-container {
        width: 80%;
        max-width: 400px;
    }

    .newsletter-form {
        max-width: 80%;
    }

    .links-section {
        width: 100%;
    }

    .footer {
        flex-direction: column;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
        gap: 10px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
    }

    .footer-left {
        width: 100%;
    }

    .links-section {
        padding-left: 0;
        gap: 20px;
    }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
   

    .header h1, .key-features h2, .accordion-header-section h2,
    .how-it-works h2, .choose-plan h2, .testimonials-header h2 {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
        text-align: center;
    }

    .quoteforce-section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .quote-section {
        width: 100%;
    }

    .features, .feature2 {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .feature-box, .feature-box-booking {
        width: 90%;
        padding: 15px;
    }

    .feature-icon {
        width: 40px;
    }

    .additional-design {
        padding: 15px;
    }

    .additional-design-content {
        flex-direction: column;
        gap: 15px;
    }

    /*.additional-design h3 {
        font-size: 1.8rem;
    }*/

    .additional-design-image {
        min-width: 250px;
        max-width: 350px;
    }

    .why-quoteforce-image {
        width: 100%;
        height: auto;
    }
    .accordion-sec {
        padding-top: 50px;
    }
    .accordion-header {
        font-size: 1rem;
        padding: 15px;
    }

    .accordion-number {
        font-size: 30px;
    }

    .accordion-content {
        padding: 20px;
        font-size: 0.9rem;
    }

   .workflow-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .workflow-card-1, .workflow-card-2, .workflow-card-3, 
    .workflow-card-4, .workflow-card-5, .workflow-card-6 {
        min-height: 180px;
        padding: 12px;
    }

    .workflow-content {
        padding-top: 50px;
        padding-left: 40px;
    }

    .workflow-card-1::before,
    .workflow-card-2::before,
    .workflow-card-3::before,
    .workflow-card-4::before,
    .workflow-card-5::before,
    .workflow-card-6::before {
        width: 30%;
        height: 30%;
        left: 20px;
        top: 126px;
    }

    .plan-options {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .plan-card {
        width: 90%;
        height: auto;
        padding: 15px;
    }

    .plan-card h3 {
        font-size: 1.5em;
        /*padding-bottom: 80px;*/
    }

    .plan-card p {
        font-size: 1.2rem;
        /*margin: -100px 0;
        padding-bottom: 40px;*/
    }

    .plan-card button{
        padding: 15px 0;
        font-size: 16px;
        line-height:0;
    }

    .plan-card .price {
        font-size: 1.8rem;
        /*padding-bottom: 30px;*/
    }

    .testimonials-header h2 {
        font-size: 1.8rem;
    }

    .testimonials-subtext {
        font-size: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .quote-icon {
        font-size: 2.5rem;
        top: 0px;
    }

    .testimonial-card p {
        font-size: 0.9rem;
    }

    .author-image {
        width: 40px;
        height: 40px;
    }

    .author-name {
        font-size: 0.9rem;
    }

    .author-title {
        font-size: 0.8rem;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .contact-section {
        flex-direction: column;
        align-items: center;
        padding: 30px 15px;
    }

    .contact-header {
        max-width: 100%;
        text-align: left;
    }

    .contact-header h1 {
        font-size: 1.8em;
        width: 100%;
    }

    .contact-header p {
        font-size: 1em;
    }

    .contact-review {
        font-size: 6rem;
        margin-bottom: -80px;
        margin-left: 0;
    }

    .form-container {
        width: 90%;
        max-width: 350px;
        padding: 20px;
    }

    .newsletter-form {
        max-width: 90%;
    }

    .newsletter input {
        padding: 10px;
    }

    .newsletter button.newsletter-btn {
        padding: 6px 8px;
        font-size: 1.1em;
    }

    .logo-section img {
        width: 150px;
    }

    .logo-text {
        font-size: 0.85em;
        text-align: center;
    }

    .social-icons a {
        font-size: 1.3em;
    }

    .links-section {
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding-left: 0;
        gap: 20px;
    }

    .links-column {
        min-width: 100%;
        text-align: center;
    }

    .footer {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 10px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
    }

    .footer-left {
        width: 100%;
    }
}

/* Mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    

    .header h1, .key-features h2, .accordion-header-section h2, 
    .how-it-works h2, .choose-plan h2, .testimonials-header h2 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

   .workflow-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .workflow-card-1, .workflow-card-2, .workflow-card-3, 
    .workflow-card-4, .workflow-card-5, .workflow-card-6 {
        min-height: 160px;
        padding: 10px;
    }

    .workflow-content {
        padding-top: 40px;
        padding-left: 30px;
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    }

    .workflow-card-1::before,
    .workflow-card-2::before,
    .workflow-card-3::before,
    .workflow-card-4::before,
    .workflow-card-5::before,
    .workflow-card-6::before {
        width: 30%;
        height: 30%;
        left: 20px;
        top: 125px;
    }

    .plan-card {
        max-width: 100%;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .contact-review {
        font-size: 12em;
        margin-bottom: -10rem;
        margin-right: 2em;
    }

    .form-container {
        padding: 1.5rem;
        width: 80%;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding-left: 0;
        padding-right: 20px;
    }

    .footer-top {
        flex-direction: column;
    }

    .links-section {
        gap: 10px;
    }
}

/* Small mobile devices (max-width: 360px) */
@media (max-width: 360px) {
    

    .header h1, .key-features h2, .accordion-header-section h2,
    .how-it-works h2, .choose-plan h2, .testimonials-header h2 {
        font-size: clamp(1rem, 3.5vw, 1.3rem);
    }

    .header p, .key-features-text, .accordion-header-text,
    .how-it-works-text, .choose-plan-text, .testimonials-subtext {
        font-size: 14px;
    }

    .quoteforce-section {
        gap: 10px;
    }

    .quote-section {
        width: 100%;
    }

    .features, .feature2 {
        gap: 10px;
    }

    .feature-box, .feature-box-booking {
        width: 95%;
        padding: 12px;
    }

    .feature-icon, .author-image {
        width: 50px;
        height: 50px;
    }

    .additional-design {
        padding: 12px;
    }

    /*.additional-design h3 {
        font-size: 1.5rem;
    }*/

    .additional-design-image {
        min-width: 200px;
        max-width: 300px;
    }

    .book-demo-btn, .form-container button, .plan-card button {
        font-size: 0.8rem;
        padding: 0.8em;
        padding-right: 2px;
    }

    .book-demo-btn span {
        font-size: 1rem;
        padding: 8px 12px;
    }

    .accordion-header {
        font-size: 0.9rem;
        padding: 15px;
        padding-bottom: 15px;
    }

    .accordion-number {
        font-size: 1.2rem;
    }

    .accordion-content {
        font-size: 0.85rem;
        padding: 20px;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .workflow-card-1, .workflow-card-2, .workflow-card-3, 
    .workflow-card-4, .workflow-card-5, .workflow-card-6 {
        min-height: auto;
        padding: 8px;
    }

    .workflow-content {
        padding-top: 30px;
        padding-left: 25px;
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
    }

    .workflow-card-1::before,
    .workflow-card-2::before,
    .workflow-card-3::before,
    .workflow-card-4::before,
    .workflow-card-5::before,
    .workflow-card-6::before {
        width: 30%;
        height: 40%;
        left: 20px;
        top: 160px;
    }

    .plan-options {
        gap: 10px;
    }

    .plan-card {
        width: 95%;
        padding: 10px;
    }

    .plan-card h3 {
        font-size: 1em;
    }

    .plan-card .price {
        font-size: 1.5rem;
    }

    .testimonial-cards {
        gap: 10px;
    }

    .testimonial-card {
        width: 95%;
        padding: 10px;
    }

    .testimonial-card h3 {
        font-size: 1em;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-section {
        padding: 20px 10px;
    }

    .contact-header h1 {
        font-size: 1.5em;
    }

    .contact-header p {
        font-size: 0.9em;
    }

    .contact-review {
        font-size: 4rem;
        margin-bottom: -50px;
    }

    .form-container {
        padding: 12px;
        width: 95%;
        max-width: 300px;
    }

    .form-container input, .form-container textarea {
        font-size: 0.8em;
        padding: 8px;
    }

    .form-container button {
        font-size: 0.85em;
    }

    .newsletter-form {
        max-width: 95%;
    }

    .newsletter input {
        font-size: 0.8em;
        padding: 8px;
    }

    .newsletter button.newsletter-btn {
        font-size: 1em;
        padding: 5px 7px;
    }

    .logo-section img {
        width: 120px;
    }

    .logo-text {
        font-size: 0.8em;
    }

    .social-icons a {
        font-size: 1.2em;
    }

    .links-column h4 {
        font-size: 0.9em;
    }

    .links-column ul li a {
        font-size: 0.8em;
    }

    .footer {
        font-size: 0.75em;
        padding: 10px;
    }

    .footer-top {
        flex-direction: column;
        gap: 10px;
    }

    .links-section {
        gap: 10px;
    }
}
.inner-page-banner{padding-bottom:2em;}

/* Large screens (min-width: 1440px) */
@media (min-width: 1440px) {
    .key-features h2, .accordion-header-section h2, .how-it-works h2, 
    .choose-plan h2, .testimonials-header h2 {
        font-size: 1.5rem;
    }
    

}
@media(max-width:1400px)
{
    .key-features-sec .key-features .book-demo-btn{padding: 10px 10px 10px 20px;}
    .key-features-sec .key-features .book-demo-btn span{padding: 5px 10px;}
}

@media(max-width:1199px)
{
   .key-features-sec .key-features .feature-box-booking h3 {font-size: 18px;}
}
@media(max-width:1024px)
{
    .choose-plan .plan-options .plan-card{height: 300px;}
    .choose-plan .plan-options .plan-card p {margin: 0;}
    .testimonials-section .testimonial-card  .testimonial-author{margin-top: 35px;margin-bottom: 30px;}
}

@media(max-width:991px)
{
   .testimonials-section .testimonial-cards .testimonial-card h2 {font-size:1rem;}
   .accordion-sec .accordion-container .accordion-header .accordion-number {font-size: 30px;}
   .accordion-sec .accordion-container .accordion-header .accordion-title {font-size: 16px;}
}
@media(max-width:768px)
{
    .choose-plan .plan-options .plan-card {height: 350px;}
}

@media(max-width:767px)
{
    .key-features-sec .key-features .feature2{margin-top: 20px;}
    .key-features-sec .key-features .additional-design{margin-top: 50px;}
    .key-features-sec .key-features .additional-design .header-additional {padding: 15px;}
    .how-it-works .workflow-grid .workflow-content {padding-left: 20px;}
    .workflow-card-1, .workflow-card-2, .workflow-card-3, .workflow-card-4, .workflow-card-5, .workflow-card-6{padding:15px;}
    .choose-plan-sec .choose-plan .plan-options{margin-top: 0;}
    .choose-plan .plan-options .plan-card {height: 300px;}
    .accordion-sec .accordion-container .accordion-header span {font-size: 18px;width: 30px;height: 30px;}
    .key-features-sec .key-features-header .sec-title{margin-bottom:0px;}
    .accordion-sec .accordion-container {margin-top: 0;}
    .accordion-sec .accordion-container .sec-title{margin-bottom:0;}
    .testimonials-section {margin-top: 10px;}
    .choose-plan-sec .choose-plan .plan-options .plan-card {
        width: 85%;
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 15px;
    }
    .choose-plan .plan-options .plan-card h3{padding-left:0;}
    .choose-plan .plan-options .plan-card p{padding-left:0;text-align:center;}
    .choose-plan-sec .choose-plan .plan-card button {padding: 25px 30px;font-size: 14px;}
}
@media(max-width:575px)
{
    .how-it-works .how-it-works-header .sec-title , .choose-plan .choose-plan-header .sec-title {margin-bottom:0;}
    .choose-plan-sec .choose-plan .plan-options .plan-card {width: 85%;}

}
@media(max-width:480px)
{
    .key-features-sec .additional-design .key-features-header h3 {font-size: 24px;}
    .workflow-card-1::before,.workflow-card-4::before, .workflow-card-5::before, .workflow-card-6::before
    {
      top: 112px;
    }
    .workflow-card-2::before, .workflow-card-3::before{top:114px;}
    .choose-plan-sec .choose-plan .plan-card button {padding: 20px;}
}
@media(max-width:440px)
{
    .workflow-card-1::before, .workflow-card-2::before, .workflow-card-3::before, .workflow-card-4::before, .workflow-card-5::before, .workflow-card-6::before{display:none!important;}
    .workflow-card-1, .workflow-card-2, .workflow-card-3, .workflow-card-4, .workflow-card-5, .workflow-card-6 {
        padding: 25px;flex-direction: column!important;align-items: center;justify-content: center;}
    .how-it-works .workflow-grid .workflow-content {padding-left: 0;padding-top: 10px;}
    .choose-plan-sec .choose-plan .plan-options .plan-card {width: 100%;}
    .testimonial-data  .testimonials-section .testimonial-cards .testimonial-card{padding:20px;}
}
@media(max-width:360px)
{
    .testimonials-section .testimonial-card .testimonial-author {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .choose-plan-sec .choose-plan .plan-options .plan-card {width: 100%;}
    .header-additional {padding:30px 0px;}
}
@media(max-width:320px)
{
    .choose-plan-sec .choose-plan .choose-plan-header{gap:10px;}
    .choose-plan-sec .choose-plan .plan-options .plan-card{padding:15px;}
    .choose-plan .plan-options .plan-card p {font-size: 16px;}
    .key-features .feature-box,.key-features .feature-box-booking {width:100%;}
    .accordion-sec .accordion-container .accordion-header .accordion-number {
        font-size: 20px;
    }
    .accordion-sec .accordion-container .accordion-header{padding:10px 5px;}
    .accordion-sec .accordion-container .accordion-header .accordion-title
    {
        font-size: 14px;
    }
    .accordion-sec .accordion-container .accordion-header span {
        font-size: 14px;
        width: 24px;
        height: 24px;
    }
    .how-it-works.key-features {margin-top: 30px;}
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}
.lightbox-content {
  display: block;
  margin: auto;
  max-width: 80%;
}
.close {
  position: absolute;
  top: 30px; right: 45px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}