.pgo-container-c0bbb3e9 {
    font-family: inherit;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pgo-header {
    margin-bottom: 40px;
}

.pgo-subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.pgo-main-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.pgo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.pgo-banner-card {
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.pgo-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    padding: 30px;
}

.pgo-banner-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.pgo-features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pgo-feature-card {
    display: flex;
    gap: 20px;
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pgo-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pgo-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(0, 82, 255, 0.08);
    flex-shrink: 0;
}

.pgo-icon-wrapper i {
    font-size: 24px;
}

.pgo-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.pgo-feature-content {
    flex-grow: 1;
}

.pgo-feature-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.pgo-feature-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #555555;
    margin: 0;
}
