:root {
    --primary-color: #0d6efd;
    --primary-dark: #0b5ed7;
    --primary-light: #6ea8fe;
    --dark-color: #0a1929;
    --dark-gradient: linear-gradient(135deg, #0a1929 0%, #1a2942 100%);
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --text-muted: #6c757d;
}

* {
    scroll-behavior: smooth;
}

body {
    padding-top: 56px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1f2937;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--dark-gradient);
    padding: 120px 0 180px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(13, 110, 253, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-badge {
    animation: slideDown 0.8s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    letter-spacing: -2px;
    animation: slideUp 0.8s ease-out;
    text-shadow: 0 2px 20px rgba(13, 110, 253, 0.3);
}

.hero-feature-item {
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-screenshot {
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

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

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

/* ===== BUTTONS ===== */
.btn {
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-animated {
    position: relative;
    overflow: hidden;
}

.btn-animated::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-animated:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* ===== BADGES ===== */
.bg-primary-soft {
    background: rgba(13, 110, 253, 0.1);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6366f1 100%);
}

/* ===== STATS SECTION ===== */
.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
}

/* ===== COMPARISON BOXES ===== */
.comparison-box {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.comparison-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-box-danger {
    width: 50px;
    height: 50px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ef4444;
}

.icon-box-light {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #6366f1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color) 0%, #6366f1 100%);
    color: white;
}

/* ===== MINI FEATURE CARDS ===== */
.mini-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.mini-feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.mini-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.mini-feature-card:hover i {
    transform: scale(1.2);
}

/* ===== HOW IT WORKS SECTION ===== */
.bg-gradient-dark {
    background: var(--dark-gradient);
}

.number-badge {
    width: 50px;
    height: 50px;
    background: rgba(13, 110, 253, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
}

.process-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.process-circle {
    position: relative;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse-ring 3s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* ===== VIDEO CONTAINER ===== */
.video-container {
    position: relative;
}

.video-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(99, 102, 241, 0.1));
    border-radius: 30px;
    z-index: -1;
}

/* ===== SCREENSHOT CARDS ===== */
.screenshot-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.screenshot-card:hover img {
    transform: scale(1.05);
}

.screenshot-card:hover .screenshot-overlay {
    transform: translateY(0);
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.avatar-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

/* ===== ACCORDION ===== */
.accordion-item {
    background: white;
    border: 1px solid #e5e7eb !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(13, 110, 253, 0.05);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
}

/* ===== SPECS CARD ===== */
.specs-card {
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.spec-item {
    padding: 0.75rem;
    border-radius: 8px;
    background: #f9fafb;
}

/* ===== DOWNLOAD SECTION ===== */
.download-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.download-feature-item {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* ===== PRICING CARDS ===== */
.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid #e5e7eb;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.pricing-card-featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(13, 110, 253, 0.2);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-top: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin: 0 0.2rem;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
}

.amount-custom {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ===== CTA BOX ===== */
.cta-box {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05), rgba(99, 102, 241, 0.05));
    border: 2px dashed var(--primary-color);
}

/* ===== MODULE DETAIL CARDS ===== */
.module-detail-card {
    background: white;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.4s ease;
}

.module-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.module-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    flex-shrink: 0;
}

.protection-techniques {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 12px;
}

.technique-badge {
    background: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.technique-badge:hover {
    border-color: var(--primary-color);
    background: rgba(13, 110, 253, 0.05);
    transform: translateX(3px);
}

.demo-stat {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.demo-stat:hover {
    background: white !important;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== TRUST BADGES ===== */
.trust-badge {
    padding: 1rem;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.trust-badge:hover {
    background: #f9fafb;
    transform: translateY(-3px);
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table thead th {
    padding: 1.2rem;
    font-weight: 700;
    border: none;
}

.comparison-table tbody td {
    padding: 1rem;
    vertical-align: middle;
}

.comparison-table tbody tr:hover {
    background: rgba(13, 110, 253, 0.05);
}

/* ===== LIVE STATS ===== */
.live-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.live-stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

.threat-feed-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.threat-feed-list {
    max-height: 300px;
    overflow-y: auto;
}

.threat-feed-item {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
    animation: slideInFeed 0.5s ease-out;
}

.threat-feed-item:last-child {
    border-bottom: none;
}

.threat-feed-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

@keyframes slideInFeed {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Custom scrollbar for threat feed */
.threat-feed-list::-webkit-scrollbar {
    width: 6px;
}

.threat-feed-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.threat-feed-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.threat-feed-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .module-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .technique-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .feature-card .small ul {
        font-size: 0.8rem !important;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table thead th {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .comparison-table tbody td {
        padding: 0.75rem 0.5rem;
    }
    
    .threat-feed-item {
        font-size: 0.85rem;
    }
    
    .threat-feed-item .float-end {
        float: none !important;
        display: block;
        margin-top: 0.5rem;
    }
}

/* ===== PROMOTIONAL BANNER ===== */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 0;
    z-index: 1050;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.5s ease-out;
}

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

.promo-banner.hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease-out;
}

.promo-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.promo-banner .promo-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-banner .promo-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.promo-banner .promo-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.promo-banner .btn-promo {
    background: white;
    color: #667eea;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.promo-banner .btn-promo:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.promo-banner .close-promo {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.promo-banner .close-promo:hover {
    opacity: 1;
}

/* ===== ENHANCED CTA SECTIONS ===== */
.cta-box-enhanced {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 50px;
    margin: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.cta-box-content {
    position: relative;
    z-index: 1;
}

.cta-box-enhanced h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-box-enhanced p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-cta-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-cta-secondary {
    background: white;
    color: #667eea;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* ===== FLOATING ACTION BUTTON ===== */
.fab-download {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.fab-download:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
    color: white;
}

.fab-download i {
    font-size: 2rem;
}

/* ===== RESPONSIVE ADJUSTMENTS FOR NEW ELEMENTS ===== */
@media (max-width: 768px) {
    .promo-banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-box-enhanced {
        padding: 30px 20px;
    }
    
    .cta-box-enhanced h3 {
        font-size: 1.75rem;
    }
    
    .cta-box-enhanced p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        padding: 15px 30px;
    }
    
    .fab-download {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .fab-download i {
        font-size: 1.5rem;
    }
}
