.wpbs-faq-accordion {
    margin: 20px 0;
}

.wpbs-faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}

.wpbs-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: background 0.3s;
}

.wpbs-faq-question:hover {
    background: #e9ecef;
}

.wpbs-faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.wpbs-faq-item.is-open .wpbs-faq-icon {
    transform: rotate(180deg);
}

.wpbs-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.wpbs-faq-item.is-open .wpbs-faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.wpbs-service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.wpbs-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.wpbs-service-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.wpbs-service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.wpbs-service-card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.wpbs-service-card-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.wpbs-service-card-link:hover {
    text-decoration: underline;
}

.wpbs-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.wpbs-cta-button.style-primary {
    background: linear-gradient(135deg, #00a0e9 0%, #0073aa 100%);
    color: #fff;
}

.wpbs-cta-button.style-primary:hover {
    box-shadow: 0 8px 25px rgba(0,160,233,0.4);
    transform: translateY(-2px);
}

.wpbs-cta-button.style-secondary {
    background: #fff;
    color: #00a0e9;
    border: 2px solid #00a0e9;
}

.wpbs-cta-button.style-secondary:hover {
    background: #00a0e9;
    color: #fff;
}

.wpbs-cta-button.style-dark {
    background: #1a1a2e;
    color: #fff;
}

.wpbs-cta-button.style-dark:hover {
    background: #2a2a4e;
}

.wpbs-cta-button.style-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.wpbs-cta-button.style-gradient:hover {
    box-shadow: 0 8px 25px rgba(102,126,234,0.4);
}

.wpbs-cta-button.size-small {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.wpbs-cta-button.size-medium {
    padding: 16px 40px;
    font-size: 1rem;
}

.wpbs-cta-button.size-large {
    padding: 20px 56px;
    font-size: 1.125rem;
}

.wpbs-cta-button .wpbs-btn-icon {
    display: inline-flex;
    align-items: center;
}

.wpbs-info-box {
    padding: 24px;
    border-radius: 8px;
    margin: 20px 0;
}

.wpbs-info-box.style-info {
    background: #e7f5ff;
    border-left: 4px solid #00a0e9;
}

.wpbs-info-box.style-warning {
    background: #fff9db;
    border-left: 4px solid #fab005;
}

.wpbs-info-box.style-success {
    background: #d3f9d8;
    border-left: 4px solid #40c057;
}

.wpbs-info-box.style-error {
    background: #ffe3e3;
    border-left: 4px solid #fa5252;
}

.wpbs-info-box-title {
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wpbs-info-box.style-info .wpbs-info-box-title { color: #1971c2; }
.wpbs-info-box.style-warning .wpbs-info-box-title { color: #e67700; }
.wpbs-info-box.style-success .wpbs-info-box-title { color: #2f9e44; }
.wpbs-info-box.style-error .wpbs-info-box-title { color: #e03131; }

.wpbs-info-box-content {
    color: #333;
    line-height: 1.7;
}

.wpbs-info-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.wpbs-info-box-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.wpbs-info-box.style-info .wpbs-info-box-icon { color: #1971c2; }
.wpbs-info-box.style-warning .wpbs-info-box-icon { color: #e67700; }
.wpbs-info-box.style-success .wpbs-info-box-icon { color: #2f9e44; }
.wpbs-info-box.style-error .wpbs-info-box-icon { color: #e03131; }

.wpbs-info-box-content-wrapper {
    flex: 1;
}

.wpbs-tab-panel {
    margin: 30px 0;
}

.wpbs-tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.wpbs-tab-button {
    padding: 12px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    position: relative;
    transition: color 0.3s;
}

.wpbs-tab-button:hover {
    color: #00a0e9;
}

.wpbs-tab-button.is-active {
    color: #00a0e9;
}

.wpbs-tab-button.is-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #00a0e9;
}

.wpbs-tab-content {
    display: none;
    padding: 20px 0;
}

.wpbs-tab-content.is-active {
    display: block;
}

.wpbs-step-list {
    margin: 30px 0;
}

.wpbs-step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.wpbs-step-item:last-child {
    border-bottom: none;
}

.wpbs-step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00a0e9 0%, #0073aa 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-right: 20px;
}

.wpbs-step-content {
    flex: 1;
}

.wpbs-step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.wpbs-step-description {
    color: #666;
    line-height: 1.7;
}

.wpbs-banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.wpbs-banner-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.wpbs-banner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.wpbs-banner-item img {
    width: 100%;
    height: auto;
    display: block;
}

.wpbs-feature-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.wpbs-feature-item {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #00a0e9;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.wpbs-feature-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00a0e9;
    margin-bottom: 10px;
}

.wpbs-feature-item-description {
    color: #666;
    line-height: 1.6;
}

.wpbs-icon-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.wpbs-icon-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.wpbs-icon-list-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    color: #00a0e9;
}

.wpbs-icon-list-content {
    flex: 1;
    color: #333;
    line-height: 1.5;
}

.wpbs-notice-box {
    padding: 20px 24px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.wpbs-notice-box.style-important {
    background: linear-gradient(135deg, #fff9db 0%, #fff3bf 100%);
    border: 1px solid #fab005;
}

.wpbs-notice-box.style-note {
    background: linear-gradient(135deg, #e7f5ff 0%, #d0ebff 100%);
    border: 1px solid #339af0;
}

.wpbs-notice-box.style-tip {
    background: linear-gradient(135deg, #d3f9d8 0%, #b2f2bb 100%);
    border: 1px solid #51cf66;
}

.wpbs-notice-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.wpbs-notice-content {
    flex: 1;
}

.wpbs-notice-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.wpbs-notice-box.style-important .wpbs-notice-title { color: #e67700; }
.wpbs-notice-box.style-note .wpbs-notice-title { color: #1971c2; }
.wpbs-notice-box.style-tip .wpbs-notice-title { color: #2f9e44; }

.wpbs-notice-text {
    color: #333;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .wpbs-tab-nav {
        flex-direction: column;
    }
    
    .wpbs-tab-button {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .wpbs-tab-button.is-active::after {
        display: none;
    }
    
    .wpbs-step-item {
        flex-direction: column;
    }
    
    .wpbs-step-number {
        margin-bottom: 15px;
        margin-right: 0;
    }
}
