
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.how-it-works {
    background-color: transparent;
    padding: 50px 0;
    text-align: center;
}


.section-title {
    font-size: 36px;
    color:black;
    margin-bottom: 40px;
    margin-top: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.steps {
    display: flex;
    gap: 20px;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-between;
}

.step {
    flex: 1 1 30%;
    flex-basis: 15%;
    margin: 3px;
    padding: 3px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
   
}

.step.in-view {
    opacity: 1;
    transform: translateY(0);
}

.icon {
    width: 60px;
    height: 60px;
    background-size: contain;
    margin: 0 auto 15px;
}

.step-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}


@media (max-width: 768px) {
    .steps {
        flex-direction: column;
    }
    
    .step {
        flex-basis: 100%;
        margin: 10px 0;
    }
}

.section1 {
    width: 100%;
    padding: 0%;
    background-color:  rgb(92, 92, 238);
    text-align: center;
}

.qualviz-book-a-demo {
    width: 100%; 
    padding: 30px;
    background-color: rgb(92, 92, 238);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-sizing: border-box;
}

.booka-demo-head .demo-head {
    font-size: 28px;
    font-weight: bold;
    color: rgba(0, 0, 0);;
    margin-bottom: 15px;
    display: block;
}

.book-demo-subtxt .demo-subtxt {
    font-size: 16px;
    color: #333333;
    margin-bottom: 25px;
    display: block;
}

.book-a-demo-action-button {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.book-a-demo-action-button .btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color:#f35050;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.book-a-demo-action-button .btn:hover {
    background-color: #8B0000;
}

.book-a-demo-action-button a.btn,
.book-a-demo-action-button button.btn {
    display: inline-block;
    text-align: center;
}

/* Additional container for inner content to be centered and responsive */
.qualviz-book-a-demo .container {
    max-width: 1200px; /* Set a max width to keep content centered on large screens */
    margin: 0 auto;
}

// X-Small devices (portrait phones, less than 576px)
@media (max-width: 575.98px) { 
    
 }

// Small devices (landscape phones, less than 768px)
@media (max-width: 767.98px) { 
    
 }

// Medium devices (tablets, less than 992px)
@media (max-width: 991.98px) { 
    
 }

// Large devices (desktops, less than 1200px)
@media (max-width: 1199.98px) { 
    
 }

// X-Large devices (large desktops, less than 1400px)
@media (max-width: 1399.98px) { 
    
 }

// XX-Large devices (larger desktops)
// No media query since the xxl breakpoint has no upper bound on its width