/*fonts*/
@font-face {
    font-family: 'Chivo';
    src: url('../assets/fonts/Chivo-Regular.woff2') format('woff2'),
    url('../assets/fonts/Chivo-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Chivo';
    src: url('../assets/fonts/Chivo-Medium.woff') format('woff'),
    url('../assets/fonts/Chivo-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Chivo';
    src: url('../assets/fonts/Chivo-SemiBold.woff') format('woff'),
    url('../assets/fonts/Chivo-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Chivo';
    src: url('../assets/fonts/Chivo-Bold.woff') format('woff'),
    url('../assets/fonts/Chivo-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Chivo', sans-serif;
    line-height: 1.2;
    letter-spacing: 1px;
    color: #4c5b6d;
    background-color: #f0fff4;
    max-width: 100vw;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;


}

/* Top Navigation */
.top-nav {
    background: #fff;
    padding: 10px 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.logo-18 img {
    max-height: 30px;
    width: auto;
}

.top-navigation {
    display: flex;
    gap: 20px;
}

.nav-item {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-item:hover,
.nav-item.active {
    color: #087F5B;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-trigger:hover,
.dropdown-trigger.active {
    color: #087F5B;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    margin: 4px;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #087F5B;
}

/* Main Header */
.main-header {
    background-image: url(../assets/img/bg_blur_3.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 25px 0;
}

.main-title {
    font-size: 58px;
    line-height: 56px;
    
    color: #1f2d3f;
    font-weight: 600;
    max-width: 680px;
    text-transform: uppercase;
}

.highlight {
    font-weight: 600;
    color: #009685;
}

/* Top Sites Section */
.top-sites-section {
    padding: 16px 0;
}

.section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.top-sites-section .section-title {
    margin-bottom: 5px;
    color: #04011a;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
}

.top-sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
    min-width: 950px;
    margin: 0 auto;
}

.site-card {
    width: 100%;
    display: flex;
    min-height: 120px;
    justify-content: center;
    flex-direction: column;
    padding: 20px 15px;
    gap: 20px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: .3s ease;
    box-shadow: 0 8px 20px #b4becd59;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 10px #00000040;
}

.site-card.recommended {
    padding-top: 35px;
}

.site-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.site-logo {
    height: 45px;
    width: auto;
    max-width: 120px;
}

.stars {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    gap: 2px;
}

.rating-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.stars img {
    width: 12px;
    height: 12px;
}

.score-number {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 24px;
    font-weight: 600;

}
.score-number img {
    width: 20px;
    height: 20px;
}

.recommend-badge {
    height: 28px;
    position: absolute;
    left: -7px;
    top: 7px;
    font-weight: 400;
    font-size: 12px;
    background-color: #009685;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    z-index: 10;
    justify-content: center;
    letter-spacing: .01em;
    text-align: left;
    color: #fff;
    gap: 10px;
    border-radius: 0 4px 4px;
}
.recommend-badge::before {
    content: "";
    border-style: solid;
    width: 0;
    height: 0;
    line-height: 0;
    position: absolute;
    top: -4px;
    border-width: 4px 8px 0 0;
    left: 0;
    border-color: transparent #8dcdc6 transparent transparent;
}

.rating-text {
    color: #333;
    font-weight: 400;
    font-size: 16px;
    line-height: 14px;
}

.star {
    color: #ffc107;
    font-size: 16px;
}

.site-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #2d2d2d;
    flex: 1;
    text-align: left;
}

.score-number {
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    font-weight: 500;
    background: #087f5b;
}

.visit-button {
    color: #333;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    position: relative;
    margin-bottom: 0;
    padding: 5px 10px;
    text-transform: capitalize;
    background: #087f5b2b;
    cursor: pointer;
    transition: background .2s;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 110px;
    justify-content: center;
}

.visit-button:hover {
    box-shadow: 0 4px 20px #959da940;
}

/* Main Content Layout */
.main-content {
    padding: 25px 0;
}

.content-layout {
    display: grid;
    grid-template-columns: auto minmax(240px, 370px);
    column-gap: 30px;
    row-gap: 5px;
}

/* Top Section */

.top-section {
    grid-column: 1 / 3;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.update-date {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #1f2d3f;
    display: flex;
    align-items: center;
}
.update-date img {
    margin-right: 10px;
}
.ad-disclosure {
    font-size: 11px;
    text-align: left;
    color: #6d6b6b;
    position: relative;
}
.ad-disclosure .bold {
    font-weight: 700;
}
.ad-disclosure .bold::after {
    display: inline-block;
    content: "|";
    width: 10px;
    text-align: center;
}

.advertising-disclosure {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
    font-weight: 400;
    position: relative;
}

.disclosure-text {
    cursor: pointer;
    position: relative;
}

.ad-disclosure-modal {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ad-disclosure-modal.hide {
    opacity: 0;
    visibility: hidden;
}

.ad-disclosure-modal-wrapper {
    width: 580px;
    padding: 25px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 9px 12px 3px #0003;
}

.ad-disclosure-modal-wrapper::before {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 60px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #ffffff transparent;
}

.close-ad-disclosure {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.close-ad-disclosure:hover {
    transform: scale(1.1);
}

.ad-disclosure-modal-text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
}



/* Reviews Column */
.reviews-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.update-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.review-block {
    padding: 15px;
    box-shadow: 0 8px 20px #b4becd59;
    border-radius: 10px;
    transition: margin .3s ease-in-out;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    justify-content: space-around;
    background-color: #fff;
    position: relative;
}

.review-block.default {
    background: #f5fffe;
    border: 2px solid #8dcdc6;
    box-shadow: 0 4px 20px #c4cdd940;
}

.review-logo .stars {
    gap: 4px;
}

.review-logo .stars img {
    width: 20px;
    height: 20px;
}

.review-label {
    position: absolute;
    color: #fff;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    font-size: 22px;
    line-height: 28px;
    align-content: center;
    transition: margin .3s ease-in-out;
}

.review-number {
    border-radius: 10px 0;
    padding: 10px;
    background: #bbc9de;
    margin-right: 5px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    letter-spacing: .5px;
    color: #fff;
}

.default .review-number {
    background: #8dcdc6;
    border-radius: 8px 0 10px;
}

.top-badge {
    background: #8dcdc6;
    border-radius: 0 0 10px 10px;
    padding: 9px 18px;
    display: none;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    letter-spacing: .5px;
    color: #fff;
}

.default .top-badge {
    display: block;
}

.review-logo {
    position: relative;
    padding: 30px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.review-logo a {
    margin: 0 auto 15px;
    width: 160px;
    display: block;
}

.review-logo img {
    width: 100%;
    height: auto;
}

.review-description {
    flex: 2;
    justify-content: center;
    padding: 20px 10px;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.feature {
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    color: #4c5b6d;
    list-style: none;
    margin-bottom: 10px;
    background-image: url(../assets/img/check-icon.svg);
    background-repeat: no-repeat;
    padding-left: 25px;
}

.feature.strong {
    font-weight: 700;
}

.review-score {
    display: flex;
    flex: 1;
    margin: auto;
    padding: 15px 20px;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
}

.score {
    font-size: 32px;
    font-weight: 400;
    line-height: 32px;
    margin-right: 5px;
    color: #333;
}

.score-label {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
    text-transform: capitalize;
}

.score-text {
    text-transform: uppercase;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    font-size: 12px;
    line-height: 18px;
    width: max-content;
    color: #91a1b9;
    position: relative;
}

.score-text img {
    width: 13px;
    height: 13px;
    margin: 0 3px;
    cursor: pointer;
}

.link-default {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #1f2d3f;
    cursor: pointer;
    transition: color .2s;
    text-transform: uppercase;
    margin-top: auto;
}
.link-default:hover {
    color: #087F5B;
}

.primary-action {
    background: #087F5B;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: background .2s;
    margin-top: 15px;
    margin-bottom: 5px;
    padding: 12px 30px;
    width: 100%;
}

.primary-action:hover {
    background: #0c936b;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px #959da940;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 370px;
    width: 100%;
}

.sidebar-content {
    max-width: 100%;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 20px #c4cdd940;
    border-radius: 10px;
    padding: 20px;
}


.ad-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.woman-image {
    width: 80px;
    height: 80px;
    background: #087F5B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto;
}

.ad-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.ad-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.ad-button {
    background: #087F5B;
    border-radius: 10px;
    max-width: 100%;
    height: 48px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    margin: 15px 0;
}

.ad-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin: 10px 0;
}

/* .recent-articles {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
} */

.article-item {
    display: block;
    color: #333;
    padding: 20px 0 0;
    transition: -webkit-text-decoration .2s;
    transition: text-decoration .2s;
    transition: text-decoration .2s, -webkit-text-decoration .2s;
}

.articles-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    letter-spacing: .5px;
    color: #009685;
}

.article-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #1f2d3f;
}

.article-item:hover .article-title {
    color: #087F5B;
}

.article-excerpt {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #4c5b6d;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e7f1;
}

.article-item:last-child .article-excerpt {
    border-bottom: none;
}

.ad-content {
    padding: 15px 15px 0;
    max-width: 370px;
    width: 100%;
    background-image: url(../assets/img/bg_blur_3.png);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.ad-content-inner {
    width: 100%;
    padding: 10px 25px 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 20px #c4cdd940;
}

.ad-content-inner img {
    width: 100%;
    height: auto;
}

.ad-content-inner .stars {
    gap: 4px;
}

.ad-content-inner .stars img {
    width: 22px;
    height: 22px;
}

.girl-image {
    max-width: 100%;
    width: 100%;
    height: 250px;
    object-fit: contain;
}


/* Success Stories */
.success-stories {
    padding: 50px 0;
}

.stories-title {
    font-size: 26px;
    line-height: 36px;
    font-weight: 900;
    color: #333;
    width: 615px;
    margin: 0 auto 20px;
    text-align: center;
}

.stories-subtitle {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
    margin: 0 auto 20px;
    text-align: center;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding-top: 25px;
}

.story-card {
    text-align: center;
    max-width: 370px;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 20px #c4cdd940;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #333;
    transition: all .2s;
}

.story-card:hover {
    box-shadow: 0 4px 20px #c4cdd940;
}

.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.story-quote {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4c5b6d;
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
}

.story-author {
    display: flex;
    align-items: center;
}

.story-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.story-author-name {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #1f2d3f;
    margin-left: 20px;
}

.story-site {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 15px;
}

.story-btns-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-logo-btn {
    max-width: 130px;
    width: 100%;
    background: #f9f9f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 15px;
}

.site-logo-btn img {
    max-width: 100%;
    width: 100%;
}
.site-logo-btn:hover {
    box-shadow: 0 4px 20px #959da940;
    border-radius: 10px;
    transform: none;
}

.story-button {
    margin: 0;
    max-width: 180px;
    width: 100%;
    height: 48px;
    font-weight: 700;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-button:hover {
    background: #066d4d;
    box-shadow: 0 4px 20px #959da940;
}

/* Monthly Offer */
.monthly-offer {
    padding: 60px 0 0;
}

.offer-wrapper {
    padding: 50px 165px;
    border-radius: 10px;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    background-image: url(../assets/img/bg_blur_3.png);
    background-size: cover;
    background-position: center;
}

.offer-title {
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
    text-align: center;
    letter-spacing: 1px;
    color: #1f2d3f;
    margin-bottom: 25px;
}


/* FAQ Section */
.faq-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 60px 0 50px;
    gap: 30px;
}

.faq-title {
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 1px;
    color: #1f2d3f;
    margin-bottom: 25px;
}

/* .faq-list {
    max-width: 800px;
    margin: 0 auto;
} */

.faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    min-height: 75px;
    padding: 20px;
    line-height: 32px;
    background: #fff;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: .5px;
    color: #1f2d3f;
    border-radius: 10px;
    max-width: 100%;
    width: 100%;
}
.faq-item.active .faq-question {

}

.faq-icon {
    transition: transform 0.3s ease, fill 0.3s ease;
    flex-shrink: 0;
}

.faq-icon:hover {
    fill: #009685 !important;
}

.faq-icon:hover path {
    fill: #009685 !important;
}

.faq-item.active .faq-icon {
    fill: #009685 !important;
}

.faq-item.active .faq-icon path {
    fill: #009685 !important;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: max-content;
    padding: 0 25px 25px;
}

.faq-answer p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4c5b6d;
}

.faq-answer ul,
.faq-answer ol {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4c5b6d;
    padding: 15px 25px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.separator {
    height: 1px;
    background: #e0e7f1;
    width: 100%;
    margin-bottom: 25px;
}

/* The Best Dating Sites Section */
.best-sites-section {
    padding: 60px 0 50px;
}

.best-sites-card {
    max-width: 580px;
    width: 100%;
    border: 5px solid #087F5B;
    background: #fff;
    box-shadow: 0 4px 20px #c4cdd940;
    border-radius: 10px;
    padding: 20px 20px 10px;
    margin: 0 auto;
}

.best-sites-title {
    width: 100%;
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    text-align: center;
    letter-spacing: .5px;
    color: #1f2d3f;
    margin-bottom: 20px;
}

.best-site-item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px;
    border-bottom: 1px solid #e0e7f1;
}

.best-site-item:last-child {
    border-bottom: none;
}

.best-site-logo {
    width: 120px;
    height: auto;
    margin-bottom: 0;
    border-radius: 0;
}

.best-site-info {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
}

.best-site-rank {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rank-icon {
    width: 35px;
    height: 35px;
}

.best-site-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.best-site-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
}

.best-site-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.rating-score {
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    align-items: center;
    color: #1f2d3f;
    margin-right: 5px;
}

.best-site-rating .stars {
    display: flex;
    gap: 4px;
}

.best-site-rating .stars img {
    width: 18px;
    height: 18px;
}

.best-site-button {
    background: #087F5B;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    height: 48px;
    width: 175px;
    font-size: 20px;
    border-radius: 10px;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: background .2s;
}

.best-site-button:hover {
    background: #0f936a;
    box-shadow: 0 4px 20px #959da940;
}

/* Footer */
.site-footer {
    background: #2d3748;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 25%;
    align-items: flex-start;
}

.footer-left img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.copyright {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #a0aec2;
}
.footer-links {
    display: flex;
    flex-direction: column;
}
.footer-links a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
    transition: color .2s;
}
.footer-links a:hover {
    color: #087F5B;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* Sticky Bottom Bar */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 0;
    display: flex;
    align-items: center;
    z-index: 1000;
    background: url(../assets/img/popup_blur_3.jpg) no-repeat center center;
    background-size: cover;
}

.sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 992px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding-left: 200px;
}
.popup-girl {
    position: absolute;
    width: 167px;
    height: 172px;
    bottom: -40px;
    left: 0;
}

.sticky-text {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    color: #333;
}

.sticky-button {
    border-radius: 5px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: #fff;
    max-width: 180px;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #087F5B;
    cursor: pointer;
}

.close-button {
    position: absolute;
    top: -10px;
    right: 90px;
    cursor: pointer;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    width: 100%;
    background: #f6faff;
    z-index: 1000;
}
.cookie-notice-wrapper {
    position: relative;
    max-width: 1170px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 10px 0;
}
.cookie-notice-text {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    display: flex;
    align-items: center;
    color: #333;
}
.learn-more {
    color: #087F5B;
    margin-left: 2px;
    cursor: pointer;
}

.cookies-modal {
    position: absolute;
    width: 580px;
    bottom: calc(100% + 10px);
    left: 0;
    padding: 25px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 9px 12px 3px #0003;
    z-index: 9999;
    font-size: 13px;
    line-height: 19px;
    color: #333;
}

.hide {
    display: none;
}

.cookies-modal-wrapper {
    position: relative;
}

.close-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
}

.close-cookie {
    cursor: pointer;
}

.close-icon:hover path,
.close-cookie:hover path {
    fill: #087F5B !important;
}

.cookies-modal-text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
}

/* Reviews Page Styles */
.reviews-page {
    display: block;
    width: 100%;
    margin: 0 auto;
    color: #333;
    background: url(../assets/img/reviews_bg.jpg) no-repeat top center;
    background-size: contain;
}

.reviews-page .main-title {
    font-weight: 600;
    font-size: 46px;
    line-height: 60px;
    color: #333;
}
.reviews-header {
    background: none;
    padding: 40px 0 0;
}

.reviews-intro {
    margin-top: 20px;
    max-width: 90%;
}

.reviews-intro p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #333;
}

.reviews-section {
    padding: 30px 0 128px;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
}

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 25px;
    box-shadow: 0 8px 20px #b4becd59;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.review-card-left {
    display: flex;
    flex-flow: column;
    align-items: center;
    max-width: 170px;
    width: 100%;
}

.site-icon {
    max-width: 100%;
    width: 100%;
    height: auto;
    text-align: center;
}

.site-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.review-card-left .site-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 170px;
    width: 100%;
}

.review-link {
    color: #087F5B;
}

.site-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.site-rating .stars {
    display: flex;
    gap: 3px;
}

.site-rating .stars img {
    width: 20px;
    height: 20px;
}

.votes {
    line-height: 18px;
    font-weight: 400;
    color: #2f3f54;
    font-size: 14px;
}

.review-card-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.review-card-right .review-description {
    padding: 0;
}

.review-description p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    margin-bottom: 10px;
    padding-right: 10%;
}

.review-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.read-review-link {
    color: #087F5B;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    margin-top: 15px;
}

.read-review-link:hover {
    color: #0c936b;
}

.visit-site-btn {
    background: #087F5B;
    padding: 12px 24px;
    text-decoration: none;
    transition: background 0.3s ease;
    text-align: center;
    white-space: nowrap;
    max-width: 100%;
    height: 46px;
    border-radius: 4px;
    font-family: Chivo;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.visit-site-btn:hover {
    background: #0c936b;
    transform: translateY(-1px);
}

/**************************/


/* Dating Advice Page Styles */
.dating-advice-page {
    display: block;
    width: 100%;
    margin: 0 auto;
    color: #333;
    background: url(../assets/img/reviews_bg.jpg) no-repeat top center;
    background-size: cover;
    min-height: calc(100vh - 100px);
}

.dating-advice-page .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dating-advice-header {
    background: none;
    padding: 40px 0 0;
}

.dating-advice-header .main-title {
    font-size: 40px;
    line-height: 60px;
    font-weight: 900;
    color: #333;
    text-transform: uppercase;
    font-variant: small-caps;
}



/**************************/

/* Tell Your Story Page Styles */
.tell-story-page {
    display: block;
    width: 100%;
    margin: 0 auto;
    color: #333;
    background: url(../assets/img/reviews_bg.jpg) no-repeat top center;
    background-size: cover;
    min-height: calc(100vh - 394px);
}

.tell-story-page .container {
    max-width: 850px;
    margin: 0 auto;
}

.tell-story-header {
    background: none;
    padding: 40px 0 0;
}

.tell-story-header .main-title {
    font-size: 40px;
    line-height: 60px;
    font-weight: 900;
    color: #333;
    text-transform: uppercase;
    font-variant: small-caps;
    margin-bottom: 32px;
    text-align: left;
}

.story-form-section {
    padding: 0 0 100px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.form-row {
    display: flex;
    gap: 20px;
}

.input-group {
    flex: 1;
    position: relative;
}

.story-input,
.story-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Chivo', sans-serif;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.story-input:focus,
.story-textarea:focus {
    outline: none;
    border-color: #087F5B;
}

.story-input.error,
.story-textarea.error {
    border-color: #dc3545;
}

.story-textarea {
    min-height: 160px;
    resize: vertical;
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin: 5px 0 10px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.error-message.hidden {
    opacity: 0;
    visibility: hidden;
}

.submit-container {
    text-align: center;
    margin-top: 10px;
}

.submit-button {
    background: #ccc;
    padding: 12px 30px;
    display: inline-block;
    width: 100%;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: background .2s;
    margin-bottom: 15px;
}

.submit-button.active {
    background: #087F5B;
    color: white;
}

.submit-button.active:hover {
    background: #065a42;
    transform: translateY(-1px);
}

/********************************/

/* To Top Button */
.to-top-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #087F5B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(8, 127, 91, 0.3);
    transition: all 0.3s ease;
}

.is-hidden {
    display: none !important;
}

.to-top-button:hover {
    background: #0f936a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(8, 127, 91, 0.4);
}

.to-top-button img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle img {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    min-height: 100vh;
    background: #fff;
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    position: absolute;
    right: 0;
}

.mobile-logo img {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-close img {
    width: 15px;
    height: 15px;
}

.mobile-menu-items {
    padding: 20px 0;
}

.mobile-menu-item {
    display: block;
    padding: 20px;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #e0e7f1;
    transition: background-color 0.3s ease;
}

.mobile-menu-item:hover {
    background-color: #f8f9fa;
    color: #087F5B;
}
.mobile-menu-item.active {
    text-decoration: underline;
}

/**************************/

/*privacy policy*/

/* Privacy Policy Page Styles */
.privacy-content {
    padding: 60px 0 128px;
}
.privacy-policy-page {
    background-color: #f0fff4;
}

.privacy-header {
    background: none;
    padding: 40px 0 0;
}

.privacy-header .main-title {
    font-size: 40px;
    line-height: 60px;
    font-weight: 900;
    color: #333;
    text-transform: uppercase;
    font-variant: small-caps;
    text-align: center;
}

.section-content {
    padding: 60px 0;
}

.section-content .container {
    max-width: 1200px;
}

.section-layout {
    display: grid;
    grid-template-columns: minmax(750px, 820px) 350px;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-main {
    width: 100%;
}

.section-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.section-sidebar {
    width: 100%;
}

.section-sidebar .sidebar-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.section-sidebar .sidebar-title {
    width: 100%;
    padding: 15px 0;
    font-size: 26px;
    line-height: 36px;
    font-weight: 900;
    color: #b4becd;
    text-align: center;
}

.platform-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
    border-bottom: 1px solid #F3F6FA;
}

.platform-item:last-child {
    border-bottom: none;
}


.section-sidebar .platform-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.platform-info img {
    width: 140px;
    height: auto;
}

.platform-stars {
    display: flex;
    gap: 2px;
}

.platform-stars img {
    width: 20px;
    height: 20px;
}

.platform-button {
    display: block;
    padding: 10px 0;
    background: #087F5B;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: background .2s;
    margin-bottom: 15px;
    width: 160px;
}

.platform-button:hover {
    background: #065a42;
}

.section-item {
    margin-bottom: 40px;
}

.section-item:last-child {
    margin-bottom: 0;
}

.section-item .section-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.last-revised {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.subsection {
    margin-bottom: 25px;
}

.subsection:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.sub-subsection {
    margin-bottom: 20px;
}

.sub-subsection:last-child {
    margin-bottom: 0;
}

.sub-subsection-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.section-item p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.section-item ul {
    margin-bottom: 13px;
    padding-left: 20px;
}

.section-item li {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 8px;
}

.section-item ul ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

.section-item .bold {
    font-weight: 600;
    color: #333;
}

.section-item a {
    color: #666;
    text-decoration: underline;
}

/**************************/

/*terms of use/ about us*/

.section-item ol {
    margin-bottom: 13px;
    padding-left: 20px;
}
.terms-content,
.about-us-content {
    padding: 60px 0 128px;
}
.terms-content .section-item p,
.about-us-content .section-item p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
}
.terms-content .section-item ul,
.about-us-content .section-item ul {
    margin-bottom: 30px;
    padding-left: 20px;
}
.terms-content .section-item .section-title,
.about-us-content .section-item .section-title {
    font-size: 26px;
    line-height: 36px;
    font-weight: 900;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

.terms-content .section-item li,
.about-us-content .section-item li {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
}

/**************************/



/* Responsive Design */
@media (max-width: 768px) {
    .top-navigation {
        display: none;
    }

    .logo img {
        max-height: 25px;
    }
    .logo-18 img {
        max-height: 20px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    .main-header {
        padding: 15px 0;
    }

    .main-title {
        font-size: 30px;
        line-height: 40px;
    }

    .main-content {
        padding-top: 5px;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
    }
    .top-section {
        grid-column: 1;
    }
    .top-sites-section,
    .sidebar,
    .ad-disclosure,
    .default .top-badge,
    .secondary-action  {
        display: none;
    }

    .review-block {
        flex-direction: column;
    }
    .score-row {
        display: flex;
        align-items: flex-end;
        justify-content: space-around;
        width: 100%;
    }
    .score {
        font-size: 26px;
        line-height: 26px;
    }
    .score-label {
        font-size: 16px;
        line-height: 20px;
    }

    .score-text {
        line-height: 15px;
    }
 
    .review-logo {
        padding: 0;
    }
    .review-logo a {
        margin: 0;
    }
    .review-description {
        order: 1;
        padding: 15px 0 0;
    }
    .review-score {
        width: 100%;
        padding: 15px 0 0;
    }

    .stories-title {
        width: 100%;
        font-size: 24px;
        line-height: 32px;
        text-align: left;
    }

    .stories-subtitle {
        font-size: 16px;
        line-height: 24px;
        text-align: left;
    }

    .story-card {
        padding: 15px;
    }

    .success-stories {
        padding-bottom: 0;
    }
    .stories-grid {
        overflow-x: auto;
        padding-top: 0;
        gap: 15px;
        grid-template-columns: repeat(3, minmax(270px, 1fr));
        width: calc(100% + 15px);
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Reviews page mobile styles */
        .reviews-page,
        .dating-advice-page {
            background-image: url(../assets/img/reviews_bg_mob.jpg);
        }
        
        .dating-advice-header .main-title {
            font-size: 32px;
        }
        
        .dating-advice-content {
            margin: 0 10px;
            padding: 40px 0;
        }
        
        .advice-intro {
            padding: 0 20px;
        }
        
        .advice-intro h2 {
            font-size: 28px;
        }
        
        .advice-intro p {
            font-size: 16px;
        }
        
        .advice-categories {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 0 20px;
        }
        
        .advice-category {
            padding: 20px;
        }
        
        .advice-category h3 {
            font-size: 20px;
        }
    
    .reviews-intro {
        padding: 0 20px;
    }
    
    .reviews-intro p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .reviews-section {
        padding: 30px 0 92px;
    }
    
    .reviews-grid {
        padding: 0 20px;
    }
    
    .review-card {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        position: relative;
    }
    
    .review-card-left {
        max-width: 40%;
    }
    .review-card-right .review-description {
        order: 0;
    }
    .review-card-right .review-description p {
        padding-right: 0;
    }
    .visit-site-btn {
        position: absolute;
        right: 10px;
    }
    .sticky-bottom-bar {
        display: none;
    }

    .offer-wrapper {
        padding: 20px 15px;
    }

    .faq-title {
        font-size: 24px;
        line-height: 32px;
    }

    .faq-question {
        font-size: 18px;
        line-height: 26px;
        padding: 15px;
    }
    .best-sites-section {
        padding-top: 0;
    }
    .best-site-item {
        padding: 15px 0;
    }
    .best-sites-card {
        padding: 15px 10px 10px;
    }
    .best-sites-title {
        font-size: 25px;
        line-height: 30px;
    }
    .best-site-logo-wrapper {
        flex-direction: column;
        gap: 0;
        flex: 1;
        max-width: 360px;
    }
    .best-site-rating {
        flex-direction: row;
    }
    .best-site-button {
        width: 115px;
        font-size: 15px;
    }
    .rating-score {
        font-weight: 400;
        font-size: 20px;
        line-height: 24px;
    }

    .footer-left {
        width: 100%;
    }
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    .footer-links {
        width: 100%;
        border-bottom: 1px solid #4c5b6d;
    }
    .footer-links:last-child {
        border-bottom: none;
    }

    .cookie-notice {
        padding: 0 15px;
    }
    .cookies-modal {
        width: 100%;
        padding: 15px;
    }
    .cookies-modal-text {
        font-size: 12px;
        line-height: 16px;
    }
    .close-icon {
        top: -5px;
        right: -5px;
        width: 10px;
        height: 10px;
    }

    /*dating advice*/

    .dating-advice-page .ad-disclosure {
        display: block;
    }
    .dating-advice-page .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .dating-advice-header .main-title {
        margin-bottom: 20px;
    }
    .dating-advice-page .ad-disclosure-modal-wrapper {
        width: 100%;
    }
    .dating-advice-page .ad-disclosure-modal-wrapper::before {
        display: none;
    }
    .ad-disclosure-modal-text {
        font-size: 11px;
        line-height: 16px;
    }
    
    /* Tell Your Story mobile styles */
    .tell-story-page {
        background-image: url(../assets/img/reviews_bg_mob.jpg);
    }
    
    .tell-story-header .main-title {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 0;
    }
    
    .form-row {
        gap: 15px;
    }
    
    .story-textarea {
        min-height: 100px;
    }
    
    .submit-button {
        width: 100%;
        padding: 15px;
    }
    
    /* Privacy Policy mobile styles */
    .section-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Privacy Policy mobile layout */
      .platform-item {
        flex-direction: column;
        width: 100%;
    }
    
    .section-sidebar .platform-info {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 25px;
    }
    
    .platform-button {
        width: 100%;
    }
    /****************/
    .score-explanation-modal-text {
        font-size: 14px;
        line-height: 20px;
    }

    .score-explanation-modal {
        width: 90vw;
        max-width: 350px;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .review-block:hover {
        margin-left: -2%;
        margin-right: -2%;
    }
    .monthly-offer .review-block:hover {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        overflow-x: scroll;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }
    .sidebar {
        display: none;
    }

    .content-layout {
        grid-template-columns: 1fr;
    } 
    .top-section {
        grid-column: 1;
    }

    .offer-wrapper {
        padding: 50px 15px;
    }

    .section-layout {
        grid-template-columns: 1fr;
    }
    .section-sidebar .platform-info {
        width: 60%;
        flex-direction: row;
        justify-content: space-between;
        flex: initial;
        margin-right: 20px;
    }
}

@media (max-width: 850px) { 
    .top-navigation {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

@media (max-width: 374px) {
    .rank-icon {
        width: 30px;
        height: 30px;
    }
    .best-site-rating .stars img {
        width: 12px;
        height: 12px;
    }

    .review-card-right {
        order: 1;
    }
    .visit-site-btn {
        position: initial;
        max-width: 140px;
    }
}

/* Score Explanation Modal */
.score-explanation-modal {
    position: absolute;
    width: 580px;
    top: calc(100% + 10px);
    right: 0;
    padding: 25px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 9px 12px 3px #0003;
    z-index: 9999;
}

.score-explanation-modal:before {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 60px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #ffffff transparent;
}

.score-explanation-modal.hide {
    display: none;
}

.close-score-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    width: 15px;
}

.close-score-modal:hover path {
    fill: #087F5B !important;
}

.score-explanation-modal-text {
    text-transform: none;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
}
