.container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    /* border: 1px solid #ddd; */
    /* border-radius: 8px; */
    padding: 20px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.margin_for_the_separation {
    margin-bottom: 50px;
    background-color: rgba(231, 231, 231, 0.350);
    padding-block: 50px;
    margin-top: -36px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row-reverse;
}

.text-section {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the price and button */
}

.text-section p {
    margin-bottom: 0px;
    font-size: 25px;
    text-align: justify;
    padding: 10px 30px 10px 30px;
    font-weight: normal;
}

.red-text-for-description {
    color: rgb(205, 70, 70);
}
.price {
    font-size: 40px;
    font-weight: bolder;
    background-color: rgba(231, 231, 231, 0.350);
    border-radius: 15px;
    width: 80%;
    text-align: center;
    padding: 10px 60px; /* Unified padding for consistent sizing */
    height: auto; /* Remove fixed height */
    color: var(--ai-blue-color);
}

.cta-button {
    width: 100%;
    font-size: 50px;
    text-align: center;
    border-radius: 15px;
    margin: 0px auto 0;
    background-color: var(--ai-blue-color);
    color: var(--ai-white-color);
    font-weight: bolder;
    display: inline-block;
    padding: 20px 60px;
    text-decoration: none;
    padding: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
    color: #e0e0e0;
}

.buttons_section_width {
    width: 100%;
    flex: 1;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.buttons_section_width p {
    width: 100%;
    flex: 1;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 40px;
    font-weight: normal;
}

.image-section img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .text-section,
    .image-section {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .text-section {
        order: 2;
    }

    .image-section {
        order: 1;
    }

    .text-section p {
        font-size: 20px;
        text-align: center;
    }
}

.container {
    max-width: 1200px;
    margin-top: 20px;
    margin: 10 auto;
    background: #fff;
    /* border: 1px solid #ddd; */
    /* border-radius: 8px; */
    padding: 20px;
    padding-inline: 100px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 30px;
    background-color: rgba(231, 231, 231, 0.350);
    padding-inline: 130px;
    padding-block: 10px;
    font-weight: bold;
    text-align: right;
    color: var(--ai-blue-color);
    margin-top: 20px;
}

.reviews {
    margin-top: 20px;
}

.review {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    border-bottom: 2px solid #0000000f;
}

.avatar {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    margin-left: 15px;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    flex: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding-inline: 100px; */
    margin-bottom: 10px;
}

.review-header .name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.review-header .date {
    font-size: 14px;
    color: #888;
}

.stars {
    display: flex;
    gap: 5px;
    margin: 5px 0;
}

.line_break{
    padding-block: 100px;
}

.stars img {
    width: 70px;
    height: 20px;
    display: inline-block;
}

.review-text {
    font-size: 16px;
    /* padding-inline: 100px; */
    color: #555;
}

@media (max-width: 768px) {
    .review {
        flex-direction: column;
    }

    .review-header {
        padding-inline: 0;
    }

    .header h1 {
        padding-inline: 0;
    }

    .review-text {
        padding-inline: 0;
    }

    .avatar {
        margin-bottom: 10px;
    }
}


.review-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 5px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between stars and name */
}

.reviewer-info .stars img {
    width: 100px; /* Adjust the size of the stars */
    height: auto;
}

.review-header .name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.review-header .date {
    font-size: 14px;
    color: #888;
    align-self: flex-start; /* Align date below name */
}

.review-text {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: row-reverse;
    gap: 20px;
}

.image-section {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.main-image img {
    max-width: 100%;
    padding: 10px;
    border-radius: 11px;
    border-radius: 30px;
    border: 1px solid;
}

.thumbnail-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-right: 30px;
}

.thumbnail-images img {
    width: 650px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumbnail-images img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

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

    .thumbnail-images {
        flex-direction: row;
        gap: 5px;
    }

    .thumbnail-images img {
        width: 60px;
    }
}

