


.atest-wrap {
    padding: 40px 0;
    background: #ffffff;
}

.atest-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
margin-top: 49px;
    border-radius: 12px;
    background: #ffffff;
}
.text-2xl {
    font-size: 1.4rem;
}

.atest-title {
    color: #04001F;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
}

.atest-subtitle {
     color: #1a365d;
    font-size: 18px;
    margin-bottom: 19px;
}

/* Expert Section */
.atest-expert {
display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: flex-start;
    align-items: center;
}

.atest-expert-photo {
    flex-shrink: 0;
}

.atest-expert-img {
width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.atest-expert-info {
    flex: 1;
}

.atest-expert-name {
    color: #1a365d;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    /* border-bottom: 1px solid #000; */
    display: inline-block;
    /* padding-bottom: 5px;*/
}

.atest-expert-position {
    color: #2d3748;
    font-size: 16px;
    margin-bottom: 15px;
}

.atest-expert-text {
    color: #2d3748;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.atest-btn-purple {
    display: inline-block;
    background: #9333ea;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.atest-btn-purple:hover {
    background: #7c3aed;
}

/* Features Section */
.atest-features {
      display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    margin-top: 42px;
}

.atest-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.atest-feature-icon {
flex-shrink: 0;
    width: 100px;
    height: 100px;
}

.atest-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.atest-feature-content {
    flex: 1;
}

.atest-feature-title {
    color: #212121;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.atest-feature-text {
    color: #212121;
    font-size: 16px;
    line-height: 1.6;
}

/* CTA Section */
.atest-cta {
    text-align: center;
    padding-top: 30px;
    /* border-top: 1px solid #e2e8f0; */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding-bottom: 33px;
}

.atest-cta-title {
    color: #212121;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.atest-cta-link {
    margin-bottom: 15px;
}

.atest-cta-link a {
   color: #3B23D9;
    text-decoration: underline;
    font-size: 16px
}

.atest-cta-link a:hover {
    color: #1d4ed8;
}

.atest-cta-text {
    color: #2d3748;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.atest-cta-note {
    color: #2d3748;
    font-size: 16px;
    margin-bottom: 30px;
}

.atest-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.atest-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.atest-btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.atest-btn-purple {
background: #3B23D9;
    color: #ffffff;
    border-radius: 40px;
}

.atest-btn-purple:hover {
    background: #7c3aed;
}

.atest-btn-green {
       background: #10b981 !important;
    color: #ffffff;
    border-radius: 40px;
}

.atest-btn-green:hover {
    background: #059669 !important;
}

.atest-btn-pink {
    border-radius: 50px;
    background: #F25E6C !important;
    color: #ffffff;
}

.atest-btn-pink:hover {
    background: #db2777 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .atest-content {
        padding: 20px;
    }

    .atest-title {
        font-size: 28px;
    }

    .atest-subtitle {
        font-size: 18px;
    }

    .atest-expert {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .atest-expert-name {
        border-bottom: none;
    }

    .atest-feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .atest-buttons {
        flex-direction: column;
    }

    .atest-btn {
        width: 100%;
        justify-content: center;
    }
}

