/* ============================================
       FILE DECRYPTION TOOL - SCOPED STYLES
       These styles won't affect header/footer
       ============================================ */
    
    .file-decryption-wrapper {
        font-family: 'Poppins', sans-serif;
        --fd-primary: #48772c;
        --fd-primary-light: #5a9636;
        --fd-primary-dark: #3a6023;
        --fd-secondary: #5f5f5f;
        --fd-white: #ffffff;
        --fd-light-bg: #f8faf6;
        --fd-dark: #2c2c2c;
        --fd-success: #28a745;
        --fd-danger: #dc3545;
        --fd-warning: #ffc107;
        --fd-info: #17a2b8;
        --fd-gradient: linear-gradient(135deg, #48772c 0%, #5a9636 50%, #48772c 100%);
        --fd-gradient-dark: linear-gradient(135deg, #3a6023 0%, #48772c 100%);
        --fd-shadow: 0 10px 40px rgba(72, 119, 44, 0.15);
        --fd-shadow-lg: 0 20px 60px rgba(72, 119, 44, 0.2);
    }
    
    .file-decryption-wrapper * {
        box-sizing: border-box;
    }
    
    /* Hero Section */
    .file-decryption-wrapper .fd-hero {
        background: var(--fd-gradient);
        padding: 70px 0 120px;
        position: relative;
        overflow: hidden;
    }
    
    .file-decryption-wrapper .fd-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    }
    
    .file-decryption-wrapper .fd-hero::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: 0;
        right: 0;
        height: 100px;
        background: var(--fd-light-bg);
        transform: skewY(-2deg);
    }
    
    .file-decryption-wrapper .fd-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--fd-white);
    }
    
    .file-decryption-wrapper .fd-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255,255,255,0.2);
        backdrop-filter: blur(10px);
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.9rem;
        margin-bottom: 20px;
        border: 1px solid rgba(255,255,255,0.3);
    }
    
    .file-decryption-wrapper .fd-hero-title {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 20px;
        text-shadow: 2px 4px 8px rgba(0,0,0,0.2);
        line-height: 1.2;
    }
    
    .file-decryption-wrapper .fd-hero-subtitle {
        font-size: 1.2rem;
        opacity: 0.95;
        max-width: 700px;
        margin: 0 auto 25px;
        line-height: 1.7;
        font-weight: 300;
    }
    
    .file-decryption-wrapper .fd-rating-box {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        padding: 12px 25px;
        border-radius: 60px;
        border: 1px solid rgba(255,255,255,0.2);
    }
    
    .file-decryption-wrapper .fd-rating-stars {
        display: flex;
        gap: 3px;
    }
    
    .file-decryption-wrapper .fd-rating-stars i {
        color: #ffc107;
        font-size: 1.1rem;
    }
    
    .file-decryption-wrapper .fd-rating-text {
        font-size: 0.95rem;
        font-weight: 500;
    }
    
    /* Main Content Area */
    .file-decryption-wrapper .fd-main-section {
        background: var(--fd-light-bg);
        padding: 0 0 60px;
        position: relative;
        z-index: 5;
    }
    
    /* Ad Containers */
    .file-decryption-wrapper .fd-ad-sidebar {
        background: linear-gradient(180deg, #f0f4ed 0%, #e8ece5 100%);
        border: 2px dashed #c5d4bb;
        border-radius: 16px;
        min-height: 600px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--fd-secondary);
        padding: 20px;
        position: sticky;
        top: 20px;
    }
    
    .file-decryption-wrapper .fd-ad-sidebar i {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: var(--fd-primary);
        opacity: 0.5;
    }
    
    .file-decryption-wrapper .fd-ad-sidebar span {
        font-weight: 500;
        margin-bottom: 5px;
    }
    
    .file-decryption-wrapper .fd-ad-sidebar small {
        opacity: 0.7;
    }
    
    .file-decryption-wrapper .fd-ad-horizontal {
        background: linear-gradient(180deg, #f0f4ed 0%, #e8ece5 100%);
        border: 2px dashed #c5d4bb;
        border-radius: 12px;
        min-height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--fd-secondary);
        margin: 40px 0;
        padding: 20px;
    }
    
    /* Tool Card */
    .file-decryption-wrapper .fd-tool-card {
        background: var(--fd-white);
        border-radius: 24px;
        box-shadow: var(--fd-shadow-lg);
        padding: 45px;
        margin-top: -70px;
        position: relative;
        z-index: 10;
        border: 1px solid rgba(72, 119, 44, 0.1);
    }
    
    .file-decryption-wrapper .fd-tool-header {
        text-align: center;
        margin-bottom: 35px;
    }
    
    .file-decryption-wrapper .fd-tool-icon {
        width: 90px;
        height: 90px;
        background: var(--fd-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        box-shadow: 0 15px 35px rgba(72, 119, 44, 0.3);
    }
    
    .file-decryption-wrapper .fd-tool-icon i {
        font-size: 2.5rem;
        color: var(--fd-white);
    }
    
    .file-decryption-wrapper .fd-tool-title {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--fd-dark);
        margin-bottom: 10px;
    }
    
    .file-decryption-wrapper .fd-tool-desc {
        color: var(--fd-secondary);
        font-size: 1rem;
    }
    
    /* Upload Zone */
    .file-decryption-wrapper .fd-upload-zone {
        border: 3px dashed var(--fd-primary);
        border-radius: 20px;
        padding: 50px 30px;
        text-align: center;
        background: linear-gradient(180deg, rgba(72,119,44,0.03) 0%, rgba(72,119,44,0.08) 100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }
    
    .file-decryption-wrapper .fd-upload-zone::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(72,119,44,0.1), transparent);
        transition: left 0.5s;
    }
    
    .file-decryption-wrapper .fd-upload-zone:hover::before {
        left: 100%;
    }
    
    .file-decryption-wrapper .fd-upload-zone:hover {
        border-color: var(--fd-primary-light);
        background: linear-gradient(180deg, rgba(72,119,44,0.08) 0%, rgba(72,119,44,0.12) 100%);
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(72, 119, 44, 0.15);
    }
    
    .file-decryption-wrapper .fd-upload-zone.fd-dragover {
        border-color: var(--fd-primary-dark);
        background: linear-gradient(180deg, rgba(72,119,44,0.12) 0%, rgba(72,119,44,0.18) 100%);
        transform: scale(1.02);
    }
    
    .file-decryption-wrapper .fd-upload-icon {
        width: 100px;
        height: 100px;
        background: var(--fd-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 2.8rem;
        color: var(--fd-white);
        box-shadow: 0 15px 40px rgba(72, 119, 44, 0.35);
        position: relative;
    }
    
    .file-decryption-wrapper .fd-upload-icon::after {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border-radius: 50%;
        border: 2px solid var(--fd-primary);
        opacity: 0.3;
        animation: fd-pulse 2s infinite;
    }
    
    @keyframes fd-pulse {
        0% { transform: scale(1); opacity: 0.3; }
        50% { transform: scale(1.1); opacity: 0.1; }
        100% { transform: scale(1); opacity: 0.3; }
    }
    
    .file-decryption-wrapper .fd-upload-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--fd-dark);
        margin-bottom: 10px;
    }
    
    .file-decryption-wrapper .fd-upload-subtitle {
        color: var(--fd-secondary);
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .file-decryption-wrapper .fd-upload-formats {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .file-decryption-wrapper .fd-format-badge {
        background: rgba(72,119,44,0.1);
        color: var(--fd-primary);
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    .file-decryption-wrapper .fd-file-input {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }
    
    /* Selected File Display */
    .file-decryption-wrapper .fd-selected-file {
        display: none;
        background: linear-gradient(135deg, #f8faf6 0%, #f0f4ed 100%);
        border-radius: 16px;
        padding: 25px;
        margin-top: 25px;
        border-left: 5px solid var(--fd-primary);
        animation: fd-slideIn 0.3s ease;
    }
    
    @keyframes fd-slideIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .file-decryption-wrapper .fd-selected-file.fd-show {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .file-decryption-wrapper .fd-file-icon-box {
        width: 65px;
        height: 65px;
        background: var(--fd-gradient);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--fd-white);
        font-size: 1.6rem;
        flex-shrink: 0;
        box-shadow: 0 8px 20px rgba(72, 119, 44, 0.25);
    }
    
    .file-decryption-wrapper .fd-file-info {
        flex: 1;
        min-width: 0;
    }
    
    .file-decryption-wrapper .fd-file-name {
        font-weight: 600;
        color: var(--fd-dark);
        font-size: 1.1rem;
        word-break: break-all;
        margin-bottom: 5px;
    }
    
    .file-decryption-wrapper .fd-file-meta {
        display: flex;
        gap: 15px;
        font-size: 0.85rem;
        color: var(--fd-secondary);
    }
    
    .file-decryption-wrapper .fd-file-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .file-decryption-wrapper .fd-remove-file {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: rgba(220, 53, 69, 0.1);
        color: var(--fd-danger);
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }
    
    .file-decryption-wrapper .fd-remove-file:hover {
        background: var(--fd-danger);
        color: var(--fd-white);
        transform: rotate(90deg);
    }
    
    /* Password Section */
    .file-decryption-wrapper .fd-password-section {
        margin-top: 30px;
    }
    
    .file-decryption-wrapper .fd-input-label {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        color: var(--fd-dark);
        margin-bottom: 12px;
        font-size: 1rem;
    }
    
    .file-decryption-wrapper .fd-input-label i {
        color: var(--fd-primary);
        font-size: 1.2rem;
    }
    
    .file-decryption-wrapper .fd-password-wrapper {
        position: relative;
    }
    
    .file-decryption-wrapper .fd-password-input {
        width: 100%;
        padding: 18px 55px 18px 20px;
        border: 2px solid #e0e5dc;
        border-radius: 14px;
        font-size: 1rem;
        font-family: inherit;
        transition: all 0.3s ease;
        background: var(--fd-white);
    }
    
    .file-decryption-wrapper .fd-password-input:focus {
        border-color: var(--fd-primary);
        outline: none;
        box-shadow: 0 0 0 5px rgba(72, 119, 44, 0.1);
    }
    
    .file-decryption-wrapper .fd-password-input::placeholder {
        color: #aaa;
    }
    
    .file-decryption-wrapper .fd-toggle-password {
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: var(--fd-secondary);
        cursor: pointer;
        font-size: 1.3rem;
        padding: 5px;
        transition: color 0.3s;
    }
    
    .file-decryption-wrapper .fd-toggle-password:hover {
        color: var(--fd-primary);
    }
    
    /* Action Button */
    .file-decryption-wrapper .fd-action-section {
        margin-top: 35px;
    }
    
    .file-decryption-wrapper .fd-decrypt-btn {
        width: 100%;
        padding: 20px 40px;
        background: var(--fd-gradient);
        border: none;
        border-radius: 14px;
        color: var(--fd-white);
        font-size: 1.2rem;
        font-weight: 700;
        font-family: inherit;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        box-shadow: 0 15px 40px rgba(72, 119, 44, 0.35);
        position: relative;
        overflow: hidden;
    }
    
    .file-decryption-wrapper .fd-decrypt-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }
    
    .file-decryption-wrapper .fd-decrypt-btn:hover:not(:disabled)::before {
        left: 100%;
    }
    
    .file-decryption-wrapper .fd-decrypt-btn:hover:not(:disabled) {
        transform: translateY(-4px);
        box-shadow: 0 20px 50px rgba(72, 119, 44, 0.45);
    }
    
    .file-decryption-wrapper .fd-decrypt-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }
    
    .file-decryption-wrapper .fd-decrypt-btn i {
        font-size: 1.4rem;
    }
    
    /* Progress Section */
    .file-decryption-wrapper .fd-progress-section {
        display: none;
        margin-top: 30px;
        padding: 30px;
        background: linear-gradient(135deg, #f8faf6 0%, #f0f4ed 100%);
        border-radius: 16px;
        border: 1px solid rgba(72, 119, 44, 0.15);
    }
    
    .file-decryption-wrapper .fd-progress-section.fd-show {
        display: block;
        animation: fd-slideIn 0.3s ease;
    }
    
    .file-decryption-wrapper .fd-progress-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 18px;
    }
    
    .file-decryption-wrapper .fd-progress-title {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 600;
        color: var(--fd-dark);
    }
    
    .file-decryption-wrapper .fd-spinner {
        width: 24px;
        height: 24px;
        border: 3px solid rgba(72, 119, 44, 0.2);
        border-top-color: var(--fd-primary);
        border-radius: 50%;
        animation: fd-spin 1s linear infinite;
    }
    
    @keyframes fd-spin {
        to { transform: rotate(360deg); }
    }
    
    .file-decryption-wrapper .fd-progress-percent {
        font-weight: 700;
        color: var(--fd-primary);
        font-size: 1.1rem;
    }
    
    .file-decryption-wrapper .fd-progress-bar {
        height: 14px;
        background: #e0e5dc;
        border-radius: 7px;
        overflow: hidden;
        position: relative;
    }
    
    .file-decryption-wrapper .fd-progress-fill {
        height: 100%;
        background: var(--fd-gradient);
        border-radius: 7px;
        transition: width 0.3s ease;
        position: relative;
    }
    
    .file-decryption-wrapper .fd-progress-fill::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        animation: fd-shimmer 1.5s infinite;
    }
    
    @keyframes fd-shimmer {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }
    
    .file-decryption-wrapper .fd-progress-status {
        margin-top: 12px;
        font-size: 0.9rem;
        color: var(--fd-secondary);
        text-align: center;
    }
    
    /* Security Notice */
    .file-decryption-wrapper .fd-security-notice {
        margin-top: 30px;
        padding: 20px 25px;
        background: linear-gradient(135deg, rgba(72,119,44,0.05) 0%, rgba(72,119,44,0.1) 100%);
        border-radius: 14px;
        border-left: 5px solid var(--fd-primary);
        display: flex;
        gap: 15px;
        align-items: flex-start;
    }
    
    .file-decryption-wrapper .fd-security-icon {
        width: 50px;
        height: 50px;
        background: var(--fd-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--fd-white);
        font-size: 1.4rem;
        flex-shrink: 0;
    }
    
    .file-decryption-wrapper .fd-security-content h5 {
        color: var(--fd-primary);
        font-weight: 700;
        margin-bottom: 5px;
        font-size: 1rem;
    }
    
    .file-decryption-wrapper .fd-security-content p {
        color: var(--fd-secondary);
        font-size: 0.9rem;
        margin: 0;
        line-height: 1.6;
    }
    
    /* Stats Section */
    .file-decryption-wrapper .fd-stats-section {
        background: var(--fd-gradient);
        padding: 50px 0;
        margin-top: 60px;
    }
    
    .file-decryption-wrapper .fd-stat-item {
        text-align: center;
        color: var(--fd-white);
        padding: 20px;
    }
    
    .file-decryption-wrapper .fd-stat-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
        display: block;
    }
    
    .file-decryption-wrapper .fd-stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        display: block;
        margin-bottom: 5px;
    }
    
    .file-decryption-wrapper .fd-stat-label {
        font-size: 1rem;
        opacity: 0.9;
    }
    
    /* Features Section */
    .file-decryption-wrapper .fd-features-section {
        padding: 70px 0;
        background: var(--fd-white);
    }
    
    .file-decryption-wrapper .fd-section-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .file-decryption-wrapper .fd-section-title {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--fd-dark);
        margin-bottom: 15px;
    }
    
    .file-decryption-wrapper .fd-section-subtitle {
        color: var(--fd-secondary);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .file-decryption-wrapper .fd-feature-card {
        background: var(--fd-light-bg);
        border-radius: 20px;
        padding: 35px 30px;
        height: 100%;
        transition: all 0.4s ease;
        border: 1px solid rgba(72, 119, 44, 0.1);
        text-align: center;
    }
    
    .file-decryption-wrapper .fd-feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--fd-shadow-lg);
        border-color: var(--fd-primary);
    }
    
    .file-decryption-wrapper .fd-feature-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, rgba(72,119,44,0.1) 0%, rgba(72,119,44,0.2) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 2rem;
        color: var(--fd-primary);
        transition: all 0.3s;
    }
    
    .file-decryption-wrapper .fd-feature-card:hover .fd-feature-icon {
        background: var(--fd-gradient);
        color: var(--fd-white);
        transform: scale(1.1);
    }
    
    .file-decryption-wrapper .fd-feature-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--fd-dark);
        margin-bottom: 12px;
    }
    
    .file-decryption-wrapper .fd-feature-text {
        color: var(--fd-secondary);
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* How It Works Section */
    .file-decryption-wrapper .fd-how-it-works {
        padding: 70px 0;
        background: var(--fd-light-bg);
    }
    
    .file-decryption-wrapper .fd-step-card {
        text-align: center;
        padding: 30px 20px;
        position: relative;
    }
    
    .file-decryption-wrapper .fd-step-number {
        width: 70px;
        height: 70px;
        background: var(--fd-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--fd-white);
        margin: 0 auto 25px;
        box-shadow: 0 15px 35px rgba(72, 119, 44, 0.35);
        position: relative;
    }
    
    .file-decryption-wrapper .fd-step-connector {
        position: absolute;
        top: 65px;
        right: -50%;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--fd-primary), transparent);
    }
    
    .file-decryption-wrapper .fd-step-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--fd-dark);
        margin-bottom: 10px;
    }
    
    .file-decryption-wrapper .fd-step-text {
        color: var(--fd-secondary);
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Content Section */
    .file-decryption-wrapper .fd-content-section {
        padding: 70px 0;
        background: var(--fd-white);
    }
    
    .file-decryption-wrapper .fd-content-block {
        background: var(--fd-light-bg);
        border-radius: 20px;
        padding: 40px;
        margin-bottom: 30px;
        border: 1px solid rgba(72, 119, 44, 0.1);
    }
    
    .file-decryption-wrapper .fd-content-block h2 {
        color: var(--fd-primary);
        font-size: 1.7rem;
        font-weight: 700;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .file-decryption-wrapper .fd-content-block h2 i {
        font-size: 1.5rem;
    }
    
    .file-decryption-wrapper .fd-content-block h3 {
        color: var(--fd-dark);
        font-size: 1.3rem;
        font-weight: 600;
        margin: 25px 0 15px;
    }
    
    .file-decryption-wrapper .fd-content-block p {
        color: var(--fd-secondary);
        line-height: 1.8;
        margin-bottom: 15px;
        font-size: 1rem;
    }
    
    .file-decryption-wrapper .fd-content-block ul {
        padding-left: 25px;
        margin-bottom: 20px;
    }
    
    .file-decryption-wrapper .fd-content-block li {
        color: var(--fd-secondary);
        line-height: 1.8;
        margin-bottom: 10px;
        position: relative;
    }
    
    .file-decryption-wrapper .fd-content-block li::marker {
        color: var(--fd-primary);
    }
    
    /* FAQ Section */
    .file-decryption-wrapper .fd-faq-section {
        padding: 70px 0;
        background: var(--fd-light-bg);
    }
    
    .file-decryption-wrapper .fd-accordion-item {
        background: var(--fd-white);
        border: 1px solid rgba(72, 119, 44, 0.15);
        border-radius: 14px;
        margin-bottom: 15px;
        overflow: hidden;
    }
    
    .file-decryption-wrapper .fd-accordion-btn {
        width: 100%;
        padding: 22px 25px;
        background: var(--fd-white);
        border: none;
        text-align: left;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--fd-dark);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s;
        font-family: inherit;
    }
    
    .file-decryption-wrapper .fd-accordion-btn:hover {
        background: rgba(72, 119, 44, 0.05);
    }
    
    .file-decryption-wrapper .fd-accordion-btn.active {
        background: linear-gradient(135deg, rgba(72,119,44,0.08) 0%, rgba(72,119,44,0.12) 100%);
        color: var(--fd-primary);
    }
    
    .file-decryption-wrapper .fd-accordion-btn i {
        transition: transform 0.3s;
        font-size: 1.2rem;
    }
    
    .file-decryption-wrapper .fd-accordion-btn.active i {
        transform: rotate(180deg);
    }
    
    .file-decryption-wrapper .fd-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .file-decryption-wrapper .fd-accordion-content.active {
        max-height: 500px;
    }
    
    .file-decryption-wrapper .fd-accordion-body {
        padding: 0 25px 25px;
        color: var(--fd-secondary);
        line-height: 1.8;
    }
    
    /* Related Tools */
    .file-decryption-wrapper .fd-related-section {
        padding: 70px 0;
        background: var(--fd-white);
    }
    
    .file-decryption-wrapper .fd-tool-link {
        display: block;
        background: var(--fd-light-bg);
        border-radius: 16px;
        padding: 30px;
        text-align: center;
        text-decoration: none;
        transition: all 0.4s ease;
        border: 1px solid rgba(72, 119, 44, 0.1);
        height: 100%;
    }
    
    .file-decryption-wrapper .fd-tool-link:hover {
        transform: translateY(-8px);
        box-shadow: var(--fd-shadow-lg);
        border-color: var(--fd-primary);
    }
    
    .file-decryption-wrapper .fd-tool-link i {
        font-size: 3rem;
        color: var(--fd-primary);
        margin-bottom: 20px;
        display: block;
        transition: transform 0.3s;
    }
    
    .file-decryption-wrapper .fd-tool-link:hover i {
        transform: scale(1.1);
    }
    
    .file-decryption-wrapper .fd-tool-link h5 {
        color: var(--fd-dark);
        font-weight: 700;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }
    
    .file-decryption-wrapper .fd-tool-link p {
        color: var(--fd-secondary);
        font-size: 0.9rem;
        margin: 0;
    }
    
    /* CTA Section */
    .file-decryption-wrapper .fd-cta-section {
        background: var(--fd-gradient);
        padding: 70px 0;
        text-align: center;
        color: var(--fd-white);
        position: relative;
        overflow: hidden;
    }
    
    .file-decryption-wrapper .fd-cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    
    .file-decryption-wrapper .fd-cta-content {
        position: relative;
        z-index: 2;
    }
    
    .file-decryption-wrapper .fd-cta-title {
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 15px;
    }
    
    .file-decryption-wrapper .fd-cta-text {
        font-size: 1.1rem;
        opacity: 0.95;
        max-width: 600px;
        margin: 0 auto 30px;
    }
    
    .file-decryption-wrapper .fd-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--fd-white);
        color: var(--fd-primary);
        padding: 18px 40px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    
    .file-decryption-wrapper .fd-cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        color: var(--fd-primary-dark);
    }
    
    /* Modal Styles */
    .file-decryption-wrapper .fd-modal .modal-content {
        border: none;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 25px 80px rgba(0,0,0,0.2);
    }
    
    .file-decryption-wrapper .fd-modal .modal-header {
        border-bottom: none;
        padding: 25px 30px 0;
    }
    
    .file-decryption-wrapper .fd-modal .modal-body {
        padding: 20px 30px 35px;
        text-align: center;
    }
    
    .file-decryption-wrapper .fd-modal-icon {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.8rem;
        margin: 0 auto 25px;
    }
    
    .file-decryption-wrapper .fd-modal-icon.success {
        background: linear-gradient(135deg, rgba(72,119,44,0.1) 0%, rgba(72,119,44,0.2) 100%);
        color: var(--fd-primary);
    }
    
    .file-decryption-wrapper .fd-modal-icon.error {
        background: linear-gradient(135deg, rgba(220,53,69,0.1) 0%, rgba(220,53,69,0.2) 100%);
        color: var(--fd-danger);
    }
    
    .file-decryption-wrapper .fd-modal-icon.warning {
        background: linear-gradient(135deg, rgba(255,193,7,0.1) 0%, rgba(255,193,7,0.2) 100%);
        color: var(--fd-warning);
    }
    
    .file-decryption-wrapper .fd-modal-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--fd-dark);
        margin-bottom: 12px;
    }
    
    .file-decryption-wrapper .fd-modal-text {
        color: var(--fd-secondary);
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    .file-decryption-wrapper .fd-modal-btn {
        padding: 14px 35px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .file-decryption-wrapper .fd-modal-btn-primary {
        background: var(--fd-gradient);
        color: var(--fd-white);
        box-shadow: 0 10px 25px rgba(72, 119, 44, 0.3);
    }
    
    .file-decryption-wrapper .fd-modal-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(72, 119, 44, 0.4);
    }
    
    .file-decryption-wrapper .fd-modal-btn-secondary {
        background: #f0f4ed;
        color: var(--fd-secondary);
    }
    
    .file-decryption-wrapper .fd-modal-btn-secondary:hover {
        background: #e0e5dc;
    }
    
    /* Responsive Design */
    @media (max-width: 1199px) {
        .file-decryption-wrapper .fd-ad-sidebar {
            min-height: 300px;
            margin-bottom: 30px;
            position: static;
        }
    }
    
    @media (max-width: 991px) {
        .file-decryption-wrapper .fd-hero-title {
            font-size: 2.3rem;
        }
        
        .file-decryption-wrapper .fd-tool-card {
            padding: 30px;
            margin-top: -50px;
        }
        
        .file-decryption-wrapper .fd-step-connector {
            display: none;
        }
    }
    
    @media (max-width: 767px) {
        .file-decryption-wrapper .fd-hero {
            padding: 50px 0 100px;
        }
        
        .file-decryption-wrapper .fd-hero-title {
            font-size: 1.9rem;
        }
        
        .file-decryption-wrapper .fd-hero-subtitle {
            font-size: 1rem;
        }
        
        .file-decryption-wrapper .fd-upload-zone {
            padding: 35px 20px;
        }
        
        .file-decryption-wrapper .fd-upload-icon {
            width: 80px;
            height: 80px;
            font-size: 2.2rem;
        }
        
        .file-decryption-wrapper .fd-section-title {
                            font-size: 1.8rem;
        }
        
        .file-decryption-wrapper .fd-content-block {
            padding: 25px;
        }
        
        .file-decryption-wrapper .fd-selected-file.fd-show {
            flex-direction: column;
            text-align: center;
        }
        
        .file-decryption-wrapper .fd-file-meta {
            justify-content: center;
        }
        
        .file-decryption-wrapper .fd-stat-number {
            font-size: 2rem;
        }
    }
    
    @media (max-width: 575px) {
        .file-decryption-wrapper .fd-tool-card {
            padding: 25px 20px;
            border-radius: 18px;
        }
        
        .file-decryption-wrapper .fd-decrypt-btn {
            padding: 16px 30px;
            font-size: 1.1rem;
        }
        
        .file-decryption-wrapper .fd-upload-formats {
            display: none;
        }
    }