.narma-settings-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.narma-settings-main-title {
    font-weight: 800;
    color: #0f172a;
    font-size: 1.75rem;
}

.narma-settings-subtitle {
    font-size: 0.95rem;
}

.narma-settings-section-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.2rem;
}

.narma-settings-privacy-box {
    background-color: #f8fafc;
    border-color: #e2e8f0 !important;
    transition: all 0.2s ease;
}

.narma-settings-privacy-box:hover {
    border-color: #cbd5e1 !important;
    background-color: #f1f5f9;
}

.narma-settings-feature-title {
    font-weight: 600;
    color: #334155;
}

.narma-settings-feature-desc {
    max-width: 80%;
    line-height: 1.4;
}

.narma-premium-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    margin: 0;
}

.narma-premium-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.narma-premium-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 34px;
}

.narma-premium-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.narma-premium-switch input:checked + .narma-premium-slider {
    background-color: #0d6efd;
}

.narma-premium-switch input:checked + .narma-premium-slider:before {
    transform: translateX(24px);
}

.narma-settings-redirect-btn {
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.2s ease;
}