:root {
            --primary-blue: #0066FF;
            --deep-blue: #0047AB;
            --electric-blue: #00D4FF;
            --dark-blue: #001A3D;
            --light-blue: #E6F2FF;
            --accent-cyan: #00FFC8;
            --gradient-1: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
            --gradient-2: linear-gradient(135deg, #001A3D 0%, #0047AB 100%);
            --gradient-mesh: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
                             radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
            --shadow-sm: 0 2px 8px rgba(0, 102, 255, 0.1);
            --shadow-md: 0 4px 20px rgba(0, 102, 255, 0.2);
            --shadow-lg: 0 8px 40px rgba(0, 102, 255, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 100%);
            color: #1A1A2E;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-mesh);
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* Navigation */
        nav {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 102, 255, 0.1);
            z-index: 1000;
            animation: slideDown 0.6s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 36px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #1A1A2E;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-blue);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient-1);
        }

        .btn-primary {
            background: var(--gradient-1);
            color: white;
            padding: 12px 28px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Page Sections */
        .page-section {
            display: none;
            animation: fadeIn 0.6s ease;
        }

        .page-section.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Homepage Hero */
        .hero {
            padding: 100px 0 80px;
            text-align: center;
        }

        .hero h1 {
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideUp 0.8s ease 0.2s backwards;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero p {
            font-size: 20px;
            color: #4A4A5E;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: slideUp 0.8s ease 0.4s backwards;
        }

        .download-box {
            background: white;
            padding: 48px;
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
            margin: 60px auto;
            max-width: 700px;
            border: 1px solid rgba(0, 102, 255, 0.1);
            animation: slideUp 0.8s ease 0.6s backwards;
        }

        .input-group {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
        }

        .input-group input {
            flex: 1;
            padding: 18px 24px;
            border: 2px solid rgba(0, 102, 255, 0.2);
            border-radius: 12px;
            font-size: 16px;
            font-family: 'JetBrains Mono', monospace;
            transition: all 0.3s ease;
        }

        .input-group input:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
        }

        .format-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 12px;
            margin-top: 24px;
        }

        .format-option {
            padding: 16px;
            border: 2px solid rgba(0, 102, 255, 0.2);
            border-radius: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
        }

        .format-option:hover {
            border-color: var(--primary-blue);
            background: var(--light-blue);
            transform: translateY(-2px);
        }

        .format-option.selected {
            border-color: var(--primary-blue);
            background: var(--gradient-1);
            color: white;
        }

        .format-option .quality {
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 4px;
        }

        .format-option .size {
            font-size: 12px;
            opacity: 0.8;
        }

        /* Features */
        .features {
            padding: 80px 0;
        }

        .features h2 {
            font-size: 48px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 60px;
            color: var(--dark-blue);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .feature-card {
            padding: 40px 32px;
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            border: 1px solid rgba(0, 102, 255, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            background: var(--gradient-1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 24px;
        }

        .feature-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--dark-blue);
        }

        .feature-card p {
            color: #4A4A5E;
            line-height: 1.6;
        }

        /* FAQ Page */
        .faq-header {
            padding: 80px 0 40px;
            text-align: center;
        }

        .faq-header h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--dark-blue);
        }

        .faq-container {
            padding: 40px 0 80px;
        }

        .faq-item {
            background: white;
            border-radius: 16px;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 102, 255, 0.1);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            padding: 28px 32px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
            color: var(--dark-blue);
        }

        .faq-question::after {
            content: '+';
            font-size: 28px;
            color: var(--primary-blue);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 32px;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 32px 28px;
        }

        .faq-answer p {
            color: #4A4A5E;
            line-height: 1.8;
        }

        /* Dashboard */
        .dashboard {
            padding: 60px 0 80px;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .dashboard-header h1 {
            font-size: 42px;
            font-weight: 800;
            color: var(--dark-blue);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            margin-bottom: 48px;
        }

        .stat-card {
            background: white;
            padding: 32px;
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 102, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-1);
        }

        .stat-value {
            font-size: 36px;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .stat-label {
            color: #4A4A5E;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .downloads-table {
            background: white;
            border-radius: 20px;
            padding: 32px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 102, 255, 0.1);
        }

        .downloads-table h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--dark-blue);
        }

        .table-header, .table-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 120px;
            gap: 16px;
            padding: 16px;
            align-items: center;
        }

        .table-header {
            font-weight: 600;
            color: #4A4A5E;
            border-bottom: 2px solid rgba(0, 102, 255, 0.1);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .table-row {
            border-bottom: 1px solid rgba(0, 102, 255, 0.05);
            transition: all 0.3s ease;
        }

        .table-row:hover {
            background: var(--light-blue);
        }

        .status-badge {
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            text-align: center;
        }

        .status-completed {
            background: #E6F9F0;
            color: #00A86B;
        }

        .status-processing {
            background: #FFF4E6;
            color: #FF8C00;
        }

        /* Premium Page */
        .premium-header {
            padding: 80px 0 60px;
            text-align: center;
        }

        .premium-header h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 16px;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .premium-header p {
            font-size: 20px;
            color: #4A4A5E;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            padding: 60px 0 80px;
        }

        .pricing-card {
            background: white;
            border-radius: 24px;
            padding: 48px 40px;
            box-shadow: var(--shadow-md);
            border: 2px solid rgba(0, 102, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-lg);
        }

        .pricing-card.featured {
            border-color: var(--primary-blue);
            background: linear-gradient(180deg, #FFFFFF 0%, #F0F7FF 100%);
        }

        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-1);
            color: white;
            padding: 8px 24px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .plan-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--dark-blue);
        }

        .plan-price {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 8px;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .plan-price span {
            font-size: 20px;
            font-weight: 400;
        }

        .plan-billing {
            color: #4A4A5E;
            margin-bottom: 32px;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .plan-features li {
            padding: 12px 0;
            color: #4A4A5E;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .plan-features li::before {
            content: '✓';
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 18px;
        }

        .btn-secondary {
            background: white;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 600;
            width: 100%;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .btn-secondary:hover {
            background: var(--primary-blue);
            color: white;
        }

        /* Cookie Policy */
        .policy-content {
            padding: 80px 0;
            max-width: 800px;
            margin: 0 auto;
        }

        .policy-content h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--dark-blue);
        }

        .policy-content .last-updated {
            color: #4A4A5E;
            margin-bottom: 40px;
            font-style: italic;
        }

        .policy-content h2 {
            font-size: 28px;
            font-weight: 700;
            margin: 40px 0 16px;
            color: var(--dark-blue);
        }

        .policy-content p {
            color: #4A4A5E;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .policy-content ul {
            margin: 16px 0;
            padding-left: 24px;
        }

        .policy-content li {
            color: #4A4A5E;
            line-height: 1.8;
            margin-bottom: 8px;
        }

        .cookie-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .cookie-modal.show {
            opacity: 1;
            visibility: visible;
        }

        .cookie-modal-content {
            background: white;
            border-radius: 24px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.4s ease;
        }

        @keyframes modalSlideIn {
            from {
                transform: translateY(-50px) scale(0.9);
                opacity: 0;
            }
            to {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }

        .cookie-modal-header {
            padding: 32px 32px 24px;
            border-bottom: 2px solid var(--light-blue);
        }

        .cookie-modal-header h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--dark-blue);
            margin: 0;
        }

        .cookie-modal-body {
            padding: 24px 32px;
        }

        .cookie-modal-body > p {
            color: #4A4A5E;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .cookie-categories {
            margin: 24px 0;
        }

        .cookie-category {
            margin-bottom: 20px;
            padding: 16px;
            background: var(--light-blue);
            border-radius: 12px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .cookie-category:hover {
            border-color: var(--primary-blue);
        }

        .cookie-category-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 8px;
        }

        .cookie-category-header input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: var(--primary-blue);
        }

        .cookie-category-header input[type="checkbox"]:disabled {
            cursor: not-allowed;
            opacity: 0.6;
        }

        .cookie-category-header label {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            color: var(--dark-blue);
        }

        .required-badge {
            background: var(--primary-blue);
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }

        .cookie-description {
            color: #4A4A5E;
            font-size: 14px;
            line-height: 1.5;
            margin: 0;
            padding-left: 32px;
        }

        .cookie-links {
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid rgba(0, 102, 255, 0.1);
            display: flex;
            gap: 24px;
        }

        .cookie-links a {
            color: var(--primary-blue);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
        }

        .cookie-links a:hover {
            text-decoration: underline;
        }

        .cookie-modal-footer {
            padding: 24px 32px;
            border-top: 2px solid var(--light-blue);
            display: flex;
            gap: 12px;
        }

        .cookie-modal-footer button {
            flex: 1;
        }

        .btn-secondary {
            background: white;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .btn-secondary:hover {
            background: var(--primary-blue);
            color: white;
        }

        /* Policy Modal */
        .policy-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .policy-modal.show {
            opacity: 1;
            visibility: visible;
        }

        .policy-modal-content {
            background: white;
            border-radius: 24px;
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .policy-modal-header {
            padding: 32px 32px 24px;
            border-bottom: 2px solid var(--light-blue);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .policy-modal-header h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--dark-blue);
            margin: 0;
        }

        .policy-modal-body {
            padding: 24px 32px;
            overflow-y: auto;
        }

        .policy-modal-body h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark-blue);
            margin: 24px 0 12px;
        }

        .policy-modal-body p {
            color: #4A4A5E;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .policy-modal-body ul {
            margin: 16px 0;
            padding-left: 24px;
        }

        .policy-modal-body li {
            color: #4A4A5E;
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .policy-modal-body a {
            color: var(--primary-blue);
            text-decoration: none;
        }

        .policy-modal-body a:hover {
            text-decoration: underline;
        }

        .policy-modal-footer {
            padding: 24px 32px;
            border-top: 2px solid var(--light-blue);
        }

        .last-updated {
            background: var(--light-blue);
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 24px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 42px;
            }

            .nav-links {
                gap: 20px;
                font-size: 14px;
            }

            .download-box {
                padding: 32px 24px;
            }

            .input-group {
                flex-direction: column;
            }

            .cookie-modal-content,
            .policy-modal-content {
                margin: 20px;
            }

            .cookie-modal-header,
            .cookie-modal-body,
            .cookie-modal-footer,
            .policy-modal-header,
            .policy-modal-body,
            .policy-modal-footer {
                padding: 20px;
            }

            .cookie-links {
                flex-direction: column;
                gap: 12px;
            }

            .cookie-modal-footer {
                flex-direction: column;
            }
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(0, 102, 255, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary-blue);
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Notification System */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: white;
            padding: 16px 24px;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            z-index: 10000;
            transform: translateX(400px);
            transition: transform 0.3s ease;
            max-width: 400px;
            border-left: 4px solid;
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification-success {
            border-left-color: #00A86B;
            background: #E6F9F0;
        }

        .notification-error {
            border-left-color: #C00000;
            background: #FFE6E6;
        }

        .notification-info {
            border-left-color: var(--primary-blue);
            background: var(--light-blue);
        }

        /* Download Modal */
        .download-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 20px;
        }

        .download-modal.show {
            opacity: 1;
        }

        .download-modal-content {
            background: white;
            border-radius: 24px;
            max-width: 500px;
            width: 100%;
            box-shadow: var(--shadow-lg);
            animation: modalSlide 0.4s ease;
        }

        @keyframes modalSlide {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .download-modal-header {
            padding: 24px 32px;
            border-bottom: 2px solid rgba(0, 102, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .download-modal-header h3 {
            font-size: 24px;
            color: var(--dark-blue);
            font-weight: 700;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 28px;
            color: #4A4A5E;
            cursor: pointer;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background: #F5F5F5;
            color: var(--primary-blue);
        }

        .download-modal-body {
            padding: 24px 32px;
        }

        .download-modal-body p {
            margin: 12px 0;
            color: #1A1A2E;
            line-height: 1.6;
        }

        .download-modal-body strong {
            color: var(--dark-blue);
            margin-right: 8px;
        }

        .demo-note {
            background: #FFF4E6;
            padding: 12px 16px;
            border-radius: 8px;
            margin-top: 16px !important;
            border-left: 4px solid #FF8C00;
            color: #FF8C00 !important;
        }

        .download-modal-footer {
            padding: 24px 32px;
            border-top: 2px solid rgba(0, 102, 255, 0.1);
            display: flex;
            gap: 12px;
        }

        .download-modal-footer .btn-primary,
        .download-modal-footer .btn-secondary {
            flex: 1;
            text-align: center;
            text-decoration: none;
            display: inline-block;
        }

        .download-modal-footer .btn-secondary {
            background: #F5F5F5;
            color: #4A4A5E;
            border: none;
        }

        .download-modal-footer .btn-secondary:hover {
            background: #E0E0E0;
            transform: none;
            box-shadow: none;
        }
