* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}


.container {
   width: 100%;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}


/*  Start Header */

.header {
    background-color: #007bff;  /* header background color */
    color: white;
    text-align: center;
    padding: 10px 0;
}




.header .container p {
    margin: 0;
}


/*      End Header   */



/* Start Article */

.article {
    padding: 40px 0;
}


.article .container {
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    padding: 20px;
    background-color: #fff;
}

.article .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 0;
    text-align: center;
    line-height: 1.4;
}

@media (min-width:600px) {
    .article .title {
        font-size: 28px;
    } 
}

.article .main-image {
    text-align: center;
    margin-bottom: 20px;
}

.article .main-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.article .main-image {
    text-align: center;
    margin-bottom: 20px;
}

.article .description h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 20px;
}

.article .description p {

    margin-bottom: 15px;
    margin-top: 15px;
}


.article .description .highlight {
    color: red;
    font-weight: bold;
}

.article .btns-group {
    margin-top: 20px;
}

.article .btns-group .answer-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

@media (min-width:600px) {
    .article .btns-group .answer-btns {
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
    } 
}

.article .btns-group .answer-btns .btn,
.article .btns-group .check-btn {
    font-size: 16px;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;  /* Buttons background color */
    color: white;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.article .btns-group .answer-btns .btn:hover,
.article .btns-group .check-btn:hover {
    background-color: #0056b3;   /* Buttons background color when hover */
}




@media (min-width:600px) {
    .article .btns-group .answer-btns .btn {
        font-size: 18px;
        padding: 10px 20px;
        width: 40%;
    } 
}

.article .btns-group .check-btn {
    margin-top: 20px;
    margin-bottom: 10px;
}



@media (min-width:600px) {
    .article .btns-group .check-btn {
        font-size: 18px;
        padding: 10px 20px;
    }
}

/* End Article */





/* Start testimonials */


.testimonials .review-card {
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonials .review-card:not(:last-child) {
    margin-bottom: 18px;
}


.review-card .user-details {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-card .user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.review-card .user-info {
    font-size: 14px;
}

.review-card .user-info .name {
    font-weight: bold;
    display: block;
}

.review-card .user-info .review-info  {
    color: #777;


    
}


.review-card .verification {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-card .verification .stars {
    width: 100px;
    margin-right: 10px;
}

.review-card .verification .verified {
    font-size: 14px;
    color: #4CAF50;
    display: flex;
    align-items: center;
    margin-right: auto;
}


.review-card .verification .verified img {
    width: 16px;
    margin-right: 5px;
}

.review-card .verification .review-time {
    font-size: 14px;
    color: #999;
}

.review-card .title {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}
.review-card .desc {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.5;
}

.review-card .date-of-experience {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}


.review-card .bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.review-card .bottom .review-btns {
    display: flex;
    gap: 10px;
}


.review-card .bottom .review-btns .useful-btn,
.review-card .bottom .review-btns .share-btn {
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    padding: 5px 15px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}

.review-card .bottom .review-btns .useful-btn:hover,
.review-card .bottom .review-btns .share-btn:hover {
    background-color: #e6e6e6;
}

/* End testimonials */







/* Start Footer */



.footer {
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    color: #666;
}

.footer .footer-links a {
    color: #007bff;
    text-decoration: none;
}

.footer .footer-links a:hover {
    text-decoration: underline;
}

.footer .copyright {
    margin: 0;
}


/* End Footer */





















