.oleng-help-container {
    max-width: 900px;
    margin: 40px auto;
    font-family: inherit;
    color: #1a1a1a;
    background: transparent;
    --c-1: #D8F3DC;
    --c-2: #B7E4C7;
    --c-3: #95D5B2;
    --c-4: #74C69D;
    --c-5: #52B788;
    --c-6: #40916C;
    --c-7: #2D6A4F;
    --c-8: #1B4332;
    --c-9: #081C15;
}

.oleng-help-header {
    text-align: center;
    margin-bottom: 40px;
}

.oleng-help-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--c-7) 0%, var(--c-5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.oleng-help-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Actions Grid */
.oleng-help-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.oleng-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.oleng-action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
    color: var(--c-7);
}

.oleng-action-btn .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* FAQ Section */
.oleng-faq-section {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(20px);
}

.oleng-faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #222;
}

.oleng-faq-group {
    margin-bottom: 30px;
}

.oleng-faq-category-title {
    font-size: 1.25rem;
    color: var(--c-7);
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--c-2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.oleng-faq-item {
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.oleng-faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.oleng-faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    font-size: 1.05rem;
    font-weight: 600;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--c-9) !important;
    -webkit-text-fill-color: var(--c-9) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: color 0.3s ease;
}

.oleng-faq-question:hover {
    color: var(--c-7);
}

.icon-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.oleng-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fafafa;
}

.oleng-faq-answer p {
    margin: 0;
    padding: 0 20px;
    color: #555;
    line-height: 1.6;
}

.oleng-faq-item.active .oleng-faq-answer {
    max-height: 200px;
    padding: 0 0 18px 0;
}

.oleng-faq-item.active .oleng-faq-answer p {
    padding: 0 20px;
}

.oleng-faq-item.active .icon-toggle {
    transform: rotate(45deg);
}

/* Modal */
.oleng-contact-modal {
    display: none; 
    position: fixed; 
    z-index: 10000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.4); 
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.oleng-contact-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.oleng-modal-content {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.oleng-contact-modal.show .oleng-modal-content {
    transform: translateY(0);
}

.oleng-close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.oleng-close-modal:hover,
.oleng-close-modal:focus {
    color: #333;
    text-decoration: none;
}

.oleng-modal-content h2 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #222;
}

/* Form Styles */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-5);
    box-shadow: 0 0 0 3px var(--c-1);
}

.oleng-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--c-8) 0%, var(--c-6) 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 10px;
}

.oleng-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(64, 145, 108, 0.3);
}

.oleng-form-status {
    margin-top: 15px;
    text-align: center;
    font-size: 0.95rem;
    min-height: 20px;
}

.oleng-form-status.success { color: #28a745; }
.oleng-form-status.error { color: #dc3545; }

/* Responsive */
@media (max-width: 768px) {
    .oleng-faq-section {
        padding: 25px;
    }
    .oleng-help-header h1 {
        font-size: 2rem;
    }
    .oleng-modal-content {
        padding: 30px 20px;
    }
}
