﻿
.container2 {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
    gap: 30px;
}

.left-column {
    flex: 1;
    min-width: 280px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    /* box-shadow: 0 5px 15px rgba(67, 97, 238, 0.08); */
}

.right-column {
    flex: 1;
    min-width: 280px;
    padding-top: 25px;
    /*display: flex;*/
    align-items: center;
}

    .right-column img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }



.description {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 0.85rem;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(67, 97, 238, 0.2), transparent);
    margin: 20px 0;
}

.tabs {
    display: flex;
    margin-bottom: 20px;
    gap: 8px;
}

.tab-btn {
    padding: 8px 16px;
    background: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    transition: var(--transition);
}

    .tab-btn:hover {
        color: #1b46c0;
        background: rgba(67, 97, 238, 0.05);
    }

    .tab-btn.active {
        color: #1b46c0;
        background: rgba(67, 97, 238, 0.1);
    }

.tab-content {
    display: none;
    padding: 18px;
    background: rgba(248, 249, 250, 0.6);
    border-radius: 8px;
    font-size: 0.9rem;
    border: 1px solid rgba(67, 97, 238, 0.08);
}

    .tab-content.active {
        display: block;
        animation: fadeIn 0.4s ease;
    }

    .tab-content p {
        margin-bottom: 12px;
    }

    .tab-content ul {
        margin: 12px 0;
        padding-left: 20px;
    }

    .tab-content li {
        margin-bottom: 6px;
        position: relative;
        padding-left: 22px;
        font-size: 0.9rem;
    }

        .tab-content li:before {
            content: '•';
            position: absolute;
            left: 8px;
            color: var(--primary);
            font-weight: bold;
        }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.gradient-line {
    width: 20%;
    height: 3px;
    background: linear-gradient(90deg, #3964ff, #65daff);
    border-radius: 10px;
    margin: 5px 0; /* adjust as needed */
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 20px;
        margin: 20px auto;
    }

    .left-column {
        padding: 20px;
    }

    h1 {
        font-size: 1.6rem;
    }

    .tabs {
        flex-wrap: wrap;
    }
}


