.science-section {
    width: 100%;
    max-width: 1200px;
    padding-top: 60px;
}

.science-section.mobile-view{
    display: none;
}

.science-section .science-grid {
    width: 100%;
    display: block;
    padding: 0 20px;
    box-sizing: border-box;
}

.science-section .stats-col {
    width: 100%;
    max-width: 100%;
}

.science-section .cta-block {
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.science-section .cta-block .main-info-button {
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

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

.science-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.2;
}

.science-subtitle {
    font-size: 18px;
    color: #444;
    font-weight: 400;
}

.science-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.stats-col {
    flex: 1;
    max-width: 550px;
}

.stats-group {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.stat-item {
    width: 100%;
}

.stat-label {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.gold-num {
    color: #C19A6B;
    font-weight: 700;
    font-size: 22px;
    margin-right: 5px;
}

.progress-bg {
    width: 100%;
    height: 12px;
    background-color: #E0E0E0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #050b14;
    border-radius: 10px;
}

.cta-block {
    margin-top: 30px;
    text-align: center;
}

.stars-rating {
    color: #C19A6B;
    font-size: 18px;
    letter-spacing: 2px;
}
.reviews-count {
    color: #888;
    font-size: 14px;
    margin-left: 5px;
    letter-spacing: 0;
}

.img-col {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.product-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

.main-info-button {
    width: 100%;
}

@media (max-width: 1024px) {
    .science-section{
        display: none;
    }

    .science-section.mobile-view {
        display: flex;
        flex-direction: column;
        padding-top: 30px;
        width: 100%;
    }

    .science-section.mobile-view .science-grid {
        width: 100%;
        display: block;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .science-section.mobile-view .stats-col {
        width: 100%;
        max-width: 100%;
    }

    .science-section.mobile-view .cta-block {
        width: 100%;
        display: block;
        box-sizing: border-box;
    }

    .science-section.mobile-view .cta-block .main-info-button {
        width: 100% !important;
        max-width: 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }

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

    .science-title {
        font-size: 21px;
    }

    .science-subtitle {
        font-size: 16px;
    }
}