/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Montserrat, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #0070C9;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.header-content {
    display: flex;
    align-items: center;
}

.header-content .learn-more{
    width: 50%;
}
.logo{
    width: 50%;
}
.logo img {
    height: 40px;
    width: auto;
}

.learn-more-btn {
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #0f0;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
    background-color: #0f0;

}

.learn-more-btn:hover {
    background-color: white;
    color: #0070C9;
    border: 2px solid #fff;
}

/* Emphasis for header CTA */
.learn-more .learn-more-btn {
    box-shadow: 0 8px 18px rgba(0, 255, 102, 0.35);
    font-weight: 800;
    letter-spacing: .2px;
    animation: ctaPulse 2s infinite ease-in-out;
}

@keyframes ctaPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

/* Banner Styles */
.banner {
    background-image: url('images/bg-main.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40%;
    right: 0;
    bottom: 0;
    background-image: url('images/banner-under.png');
    background-size: 700px auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 1;
}

.banner-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 50px;
    z-index: 1;
}

.banner-text {
    color: white;
    width: 50%;
    z-index: 1;
}


.about-h1 {
    color: #fff;
    padding-bottom: 0px;
    margin-bottom: 0px;
    text-align: left;
    font-size: 40px;
    line-height: 1.3em;
    font-weight: 800;
    font-family: Montserrat;
}

.dan-h1 {
    color: #fff;
    text-align: left;
    font-size: 75px;
    font-weight: 800;
    font-family: Montserrat;
}

.banner-text p {
    font-size: 20px;
    line-height: 1.8em;
    font-weight: 400;
    font-family: Montserrat;
}

.banner-image {
    width: 50%;
    position: relative;
    height: 456px;
    z-index: 4;
}

.banner-image img {
    position: absolute;
    height: auto;
    left: -60%;
    max-width: 1000px;
    top: 0;
    z-index: 4;
}

.compare {
    background-color: #E7F3FF;
    padding: 120px 0;
}

.p-com {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #0070C9;
    margin-bottom: 20px;
}

.compare-content {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.compare-text {
    width: 50%;
}

.compare-list {
    width: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
}

.compare-list-item {
    background-color: #FFFFFF;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    font-weight: 700;
    color: #0070C9;
    height: 100px;
    width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.compare-text h3 {
    font-family: "Montserrat", Sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.5em;
    letter-spacing: 0px;
}

.compare-result {
    margin-top: 30px;
}

.compare-result-item {
    background-color: #C4DFFB;
    border-radius: 8px 8px 8px 8px;
    display: flex;
    align-items: center;
}

.compare-result-item-text {
    width: 50%;
    font-size: 16px;
    font-weight: 700;
    padding: 20px 20px 20px 20px;
}

.compare-result-item-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 50%;
}

.compare-result-item-image .active {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33%;
    font-size: 14px;
    font-style: italic;
}

.compare-result-item--middle {
    border: 1px solid #0070C9;
    background-color: #fff;
}

.praise {
    font-size: 48px;
    text-align: center;
    margin-bottom: 30px;
}

.customer-reviews-section {
    padding: 60px 0;
}

.customer-review {
    display: flex;
    gap: 10px;
    padding-top: 20px;
}

.customer-review-item {
    width: 50%;
    display: flex;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.customer-review-item .customer-review-item-image {
    width: 22%;
    display: flex;
    align-items: start;
    justify-content: center;
}

.customer-review-item .customer-review-item-image img {
    width: 100%;
}

.customer-review-item-text {
    width: 78%;
    padding: 0 20px;
}

.star-item {
    display: flex;
    align-items: center;
}

.title-review {
    display: flex;
    justify-content: space-between;
}

.start {
    color: #006db3 !important;
    font-weight: bold;
}

.date {
    font-size: 16px !important;
    color: #999;
}

.star-item {
    margin-bottom: 5px;
}

.star-item img {
    width: 15px;
    height: auto;
}

.text-video {
    margin: 8px 0;
    color: #383838 !important;
    font-size: 16px !important;
}

.stamped-verified-label {
    color: #1cc286;
    font-weight: normal;
}

.stamped-verified-label[data-verified-type="2"]:after {
    content: ' \e904 Verified Buyer';
    font-family: 'stamped-font', 'Montserrat' !important;
    word-spacing: -5px;
    font-weight: normal;
}

/* Stamped Verified Label Styles */
.stamped-verified-label[data-verified-type="2"]:after {
    content: ' ✓ Verified Buyer';
    font-family: 'Montserrat', sans-serif !important;
    word-spacing: 0px;
    font-weight: 600;
    color: #1cc286;
    font-size: 16px;
    margin-left: 0px;
}

.mr-xx {
    margin-right: 5px;
}

/* Alternative styling for verified label */
.stamped-verified-label[data-verified-type="2"] {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.stamped-verified-label[data-verified-type="2"]:before {
    content: '✓';
    color: #1cc286;
    font-weight: bold;
    font-size: 16px;
}

.stamped-verified-label[data-verified-type="2"]:after {
    content: 'Verified Buyer';
    font-family: 'Montserrat', sans-serif !important;
    color: #1cc286;
    font-size: 16px;
}

.img-exemple {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.img-exemple-item img {
    width: 100px;
    display: inline-block !important;
    position: relative;
    margin-left: 0 !important;
    margin-right: 10px !important;
    box-shadow: 0px 0px 4px #CCB;
    padding: 3px;
    border-radius: 5px;
    text-align: center;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    right: 16px;
    bottom: 20px;
    z-index: 1100;
}

.floating-cta a {
    display: inline-block;
    background: linear-gradient(135deg, #ff8a00, #ff3d00);
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: .2px;
    box-shadow: 0 10px 24px rgba(255, 61, 0, 0.35);
    animation: pulse 1.6s infinite ease-in-out;
}
.learn-more{
    animation: pulse 1.6s infinite ease-in-out;
    letter-spacing: .2px;
}

.floating-cta a:hover { box-shadow: 0 12px 28px rgba(255, 61, 0, 0.45); }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        gap: 15px;
    }

    .banner-content {
        flex-direction: column;
        gap: 20px;
        padding: 10px 0;
    }

    .banner-text {
        width: 100%;
    }

    .banner-text h1 {
        font-size: 30px;
    }

    .banner-text p {
        font-size: 15px;
    }

    .banner-image {
        width: 100%;
        height: 150px;
    }

    .banner::before {
        background-size: 250px;
        top: 20px;
        left: 4%;
        right: 0;
        bottom: 0;
    }

    .banner-image img {
        position: absolute;
        height: auto;
        left: 0%;
        max-width: 350px;
        top: 0;
        z-index: 4;
    }

    .praise {
        font-size: 30px;
        line-height: 30px;
    }

    .customer-review {
        flex-direction: column;
    }

    .customer-review-item {
        width: 100%;
    }

    .img-exemple2 {
        display: flex;
        flex-wrap: wrap;
    }

    .compare-content {
        flex-direction: column;
    }

    .compare-text {
        width: 100%;
    }

    .compare-text h3 {
        font-size: 20px;
        line-height: 1em;
    }

    .compare-list {
        width: 100%;
    }

    .compare-list-item {
        text-align: center;
    }

    .compare-result-item-text {
        padding: 10px;
        font-size: 14px;
        font-weight: 700;
    }

    .compare-result-item-image .active {
        font-size: 10px;
    }

    .compare {
        padding: 60px 0;
    }
}