.tabs {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 10px;
    gap: 10px;
}

.tab-button {
    flex: 1;
    padding: 10px 16px;
    background: transparent;
    border: none;
    font-weight: 600;
    color: #fff;
    transition: all 0.2s ease;
    cursor: pointer;
}

.tab-button:hover {
    color: #fddba8;
    border-bottom: 1px solid #fddba8;
}


.tab-button.active {
    color: #fddba8;
    border-bottom: 1px solid #fddba8;
}

.tab-panel {
    display: none;
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
}

.tab-panel.active {
    display: block;
}

.investment-plan {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 10px;
    border: 1px solid #806948;
    margin-bottom: 15px;
}

.investment-plan span {
    font-size: 15px;
    font-weight: 600;
    color: #fccaa9;
    margin-bottom: 10px;
    display: block;
}

.investment-plan .plan {
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan .image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.plan .details {
    flex: 1;
    background: rgba(0, 0, 0, 0.065);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.063);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.details > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    margin-bottom: 6px;
}

.details > div > p {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
}

.details > div > span {
    color: white;
    font-size: 13px;
    font-weight: 400;
}

.details > div > span.rate {
    color: #4ade80;
    font-weight: 500;
}

@media (max-width: 768px) {
    .tabs-wrapper {
        width: 100%;
    }
}