.gb2-section {
    padding: 60px 20px;
    background-color: #fff;
}

.gb2-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gb2-main-title {
    color: #cc0000;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.gb2-main-subtitle {
    color: #2d8cff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.gb2-content-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.gb2-column p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.gb2-benefits-title {
    color: #333;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.gb2-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.gb2-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gb2-benefit-item:hover {
    transform: translateY(-5px);
}

.gb2-benefit-icon {
    font-size: 1.5rem;
    color: #cc0000;
}

.gb2-benefit-text {
    font-size: 1.1rem;
    color: #333;
}

@media (max-width: 768px) {
    .gb2-content-columns {
        grid-template-columns: 1fr;
    }

    .gb2-main-title {
        font-size: 2rem;
    }

    .gb2-main-subtitle {
        font-size: 1.5rem;
    }

    .gb2-benefits-grid {
        grid-template-columns: 1fr;
    }
}