
.bgcon {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

header {
    padding: 10px 0;
    text-align: center;
}

header h1{
    font-size: 40px;
    line-height: 1;
    text-align: center;
   font-family: Arial, Helvetica, sans-serif;
   background-clip: text;
   -webkit-background-clip: text;
   color: transparent;
   background-image: linear-gradient(90deg, rgb(0, 21, 255), rgb(255, 0, 0), rgb(60, 255, 0), rgb(238, 0, 255), rgb(0, 208, 255), rgb(255, 140, 0) );
   background-size: 400% 10%;
   animation: animate 22s infinite;
   text-shadow: 10px 12px 18px rgb(135, 135, 135);
   margin: 12px 10px;
}

@keyframes animate{
    0%{
        background-position: 0 0;
    }
   
    50%{
        background-position: 100% 100%;
    }
 
    100%{
        background-position: 0 0;
    }
}
header h1:hover{
    animation: none;
}

header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 10px;
    text-shadow: 1px 2px 4px rgb(100, 100, 100);
}

.cta-button {
    background: #ffffff;
    margin: 10px;
    border-radius: 20px;
    height: 38px;
    width: 240px;
    color: #5b5b5b;
    border: 0.1px solid rgb(150, 150, 150);
    outline: none;
    box-shadow: inset 1px 1px 7px #ffffff, inset -1px -1px 7px rgb(102, 102, 102);
    text-decoration: none;
    padding: 2px 12px;
}

.cta-button:active {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

section {
    padding: 20px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: #989ea9;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-card {
  
    width: 100%;
    max-width: 350px;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(24px);
    border: 1px solid rgba(170, 170, 170, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);

    --flow-space: 0.5em;
    --flow-space: 10px;
    --hsl: var(--hue), var(--saturation), var(--lightness);
    transition: 1s;
    align-items: start;
    background-color: rgba(174, 174, 174, 0.276);
    border-radius: 20px;
    z-index: 10;
    margin: 10px;
    box-shadow: 1px 1px 2px rgb(138, 138, 138);

}

.feature-card:hover {
    transform: translateY(-7px);
    --lightness: 99%;
    background: rgba(182, 182, 182, 0.123);
    border: 1px solid rgb(220, 220, 220);
    box-shadow: 8px 8px 22px rgb(145, 145, 145)
}

.image-comparison {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.image-box {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.image-box img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.image-box p {
    font-weight: 600;
    color: #4a5568;
}

.faq-section {
    background-color: #eef2f7;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding:0 15px;
    margin: 0 62px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #6480b1;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: normal;
}

.faq-item.active h3::after {
    content: "-";
}

.faq-options {
    list-style-type: none;
    margin: 15px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-options {
    max-height: 300px;
}

.faq-options li {
    padding: 8px 0;
    border-left: 3px solid transparent;
    padding-left: 10px;
}

.correct-answer {
    color: #10b981;
    font-weight: bold;
    border-left: 3px solid #10b981 !important;
}

.answer-explanation {
    background-color: #f0f9ff;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
    display: none;
}

.faq-item.active .answer-explanation {
    display: block;
}



@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .image-comparison {
        flex-direction: column;
        align-items: center;
    }
    .faq-item {
      
        padding:0 10px;
        margin: 0 15px;
       
    }
    
}
