.trials-wrapper {
    max-width: 1100px;
    margin: 40px 0 40px 0;
}

.trials-nav {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 0;
}

.trial-btn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    cursor: pointer;
    padding-bottom: 15px;
    position: relative;
    transition: color 0.3s;
}

.trial-btn:hover {
    color: #000;
}

.trial-btn.active {
    color: #000;
}

.trial-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: black;
}

.trial-content {
    display: none;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    animation: fadeIn 0.5s ease;
}

.trial-content.active {
    display: flex;
}

.trial-text-col {
    flex: 1;
    max-width: 600px;
}

.trial-title {
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
}

.trial-description {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    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-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-right: 5px;
}

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

.progress-fill {
    height: 100%;
    background-color: #0B1120;
    border-radius: 10px;
    width: 0;
}

.read-more-link {
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 2px;
    transition: border-color 0.2s;
}
.read-more-link:hover {
    border-color: #000;
}

.trial-img-col {
    width: 45%;
    max-width: 500px;
}

.trial-img-col-q{
    display: none;
}

.trial-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

@media (max-width: 1024px){
    .trials-wrapper {
        padding: 40px 0;
        margin: 0;
    }

    .trials-nav {
        gap: 10px;
    }

    .trial-content.active {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

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

    .trial-description {
        margin-bottom: 20px;
    }

    .trial-img-col {
        display: none;
    }

    .trial-img-col-q.mobile-view{
        display: block;
    }
}