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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1f2937;
            background: #ffffff;
        }

        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #e5e7eb;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            height: 70px;
        }
        .logo-image {
            transition: filter 0.3s ease;
        }
        
        .logo-image.scrolled {
            filter: grayscale(100%);
        }
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: #3b82f6;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
            margin-right: 10px;
        }

        .logo-text {
            font-size: 22px;
            font-weight: 700;
            color: #1f2937;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 8px;
        }

        .nav-links a {
            color: #6b7280;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #3b82f6;
            background: #f1f5f9;
        }

        .hero {
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            padding: 120px 0 100px 0;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(16, 185, 129, 0.02));
            z-index: 1;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: start;
            position: relative;
            z-index: 2;
        }

        .trust-badge {
            background: linear-gradient(135deg, #ecfdf5, #f0f9ff);
            border: 1px solid #a7f3d0;
            color: #047857;
            padding: 10px 20px;
            border-radius: 25px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 24px;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        .trust-dot {
            width: 10px;
            height: 10px;
            background: #10b981;
            border-radius: 50%;
            animation: glow 1.5s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { box-shadow: 0 0 5px #10b981; }
            to { box-shadow: 0 0 15px #10b981; }
        }

        .hero-content h1 {
            font-size: 3.8rem;
            font-weight: 900;
            color: #1f2937;
            line-height: 1.05;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .hero-highlight {
            background: linear-gradient(135deg, #3b82f6, #10b981);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .hero-highlight::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #3b82f6, #10b981);
            border-radius: 2px;
            opacity: 0.3;
        }

        .hero-content .subheading {
            font-size: 1.3rem;
            color: #374151;
            margin-bottom: 40px;
            font-weight: 500;
            line-height: 1.5;
            max-width: 90%;
        }

        .social-proof {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 40px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .social-proof-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .social-proof-stars {
            color: #fbbf24;
            font-size: 1.2rem;
        }

        .social-proof-text {
            font-weight: 600;
            color: #1f2937;
            font-size: 0.95rem;
        }

        .value-props {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 40px;
        }

        .value-prop {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            padding: 16px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .value-prop::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg, #3b82f6, #10b981);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .value-prop:hover {
            border-color: #3b82f6;
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
            transform: translateY(-2px);
        }

        .value-prop:hover::before {
            opacity: 1;
        }

        .value-prop-title {
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 6px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .value-prop-desc {
            color: #6b7280;
            font-size: 0.8rem;
            line-height: 1.4;
        }

        .mega-cta {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 32px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(59, 130, 246, 0.25);
        }

        .mega-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
            pointer-events: none;
        }

        .mega-cta-header {
            text-align: center;
            margin-bottom: 24px;
        }

        .cta-title {
            font-size: 1.3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 8px;
        }

        .cta-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            margin-bottom: 0;
        }

        .urgency-badge {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #dc2626;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
            animation: urgencyPulse 2s infinite;
        }

        @keyframes urgencyPulse {
            0%, 100% { background: rgba(239, 68, 68, 0.1); }
            50% { background: rgba(239, 68, 68, 0.15); }
        }

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

        .btn-primary {
            background: #ffffff;
            color: #3b82f6;
            padding: 18px 36px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            background: #f1f5f9;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.8);
            padding: 16px 28px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
            transform: translateY(-2px);
        }

        .trust-indicators {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            color: #6b7280;
            font-size: 0.9rem;
            justify-content: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.9);
        }

        .check-icon {
            color: #10b981;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .hero-visual {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            padding: 36px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            margin-top: 60px;
            align-self: start;
        }

        .hero-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(16, 185, 129, 0.02));
            pointer-events: none;
        }

        .visual-header {
            text-align: center;
            margin-bottom: 28px;
            position: relative;
            z-index: 2;
        }

        .visual-title {
            font-size: 1.3rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 8px;
        }

        .visual-subtitle {
            color: #6b7280;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .service-options {
            display: grid;
            gap: 14px;
            margin-bottom: 28px;
            position: relative;
            z-index: 2;
        }

        .service-option {
            background: #ffffff;
            border: 2px solid #f1f5f9;
            padding: 20px;
            border-radius: 12px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
            transition: left 0.6s ease;
        }

        .service-option:hover::before {
            left: 100%;
        }

        .service-option:hover {
            border-color: #3b82f6;
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
            transform: translateX(6px) translateY(-2px);
        }

        .service-icon {
            font-size: 1.4rem;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .service-option:hover .service-icon {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            transform: scale(1.1);
        }

        .service-details {
            flex: 1;
        }

        .service-name {
            font-weight: 700;
            color: #1f2937;
            font-size: 1rem;
            margin-bottom: 4px;
            transition: color 0.3s ease;
        }

        .service-option:hover .service-name {
            color: #3b82f6;
        }

        .service-desc {
            color: #6b7280;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .service-arrow {
            color: #94a3b8;
            margin-left: auto;
            transition: all 0.3s ease;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .service-option:hover .service-arrow {
            color: #3b82f6;
            transform: translateX(4px);
        }

        .not-sure-section {
            padding-top: 24px;
            border-top: 1px solid #e5e7eb;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .not-sure-box {
            background: linear-gradient(135deg, #f1f5f9, #f8fafc);
            border: 1px solid #cbd5e1;
            padding: 20px;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }

        .not-sure-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), transparent);
            pointer-events: none;
        }

        .not-sure-title {
            color: #374151;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .not-sure-link {
            color: #3b82f6;
            font-size: 0.9rem;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 8px;
            background: rgba(59, 130, 246, 0.1);
        }

        .not-sure-link:hover {
            background: #3b82f6;
            color: white;
            transform: translateY(-1px);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            color: #374151;
        }

        .mobile-nav {
            display: none;
            flex-direction: column;
            gap: 0;
            background: white;
            border-top: 1px solid #e5e7eb;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .mobile-nav.active {
            display: flex;
        }

        .mobile-nav .nav-link {
            padding: 16px 20px;
            border-bottom: 1px solid #f3f4f6;
            font-weight: 500;
        }

        .mobile-nav .nav-link:hover {
            background: #f8fafc;
        }
        .services {
            padding: 80px 0;
            background: #f8fafc;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .services-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .services-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 16px;
        }

        .services-header p {
            font-size: 1.2rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

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

        .service-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 32px;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            border-color: #3b82f6;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
            transform: translateY(-4px);
        }

        .service-card-icon {
            width: 56px;
            height: 56px;
            background: #3b82f6;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 12px;
        }

        .service-card p {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .service-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .feature-tag {
            background: #eff6ff;
            color: #1d4ed8;
            padding: 4px 12px;
            border-radius: 16px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .service-link {
            color: #3b82f6;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.95rem;
        }

        .service-link:hover {
            text-decoration: underline;
        }

        .about {
            padding: 80px 0;
            background: white;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 24px;
        }

        .about-text p {
            font-size: 1.1rem;
            color: #6b7280;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .about-link {
            color: #3b82f6;
            font-weight: 600;
            text-decoration: none;
            font-size: 1.05rem;
        }

        .about-link:hover {
            text-decoration: underline;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .expertise-item {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-left: 4px solid #3b82f6;
            padding: 20px;
            border-radius: 8px;
        }

        .expertise-item h4 {
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .expertise-item p {
            color: #6b7280;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .final-cta {
            padding: 80px 0;
            background: #3b82f6;
            text-align: center;
        }

        .final-cta-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 16px;
        }

        .final-cta p {
            font-size: 1.2rem;
            color: #bfdbfe;
            margin-bottom: 40px;
        }

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

        .btn-white {
            background: white;
            color: #3b82f6;
            padding: 16px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .btn-white:hover {
            background: #f1f5f9;
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 14px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background: white;
            color: #3b82f6;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            text-decoration: none;
            font-size: 24px;
        }

        .whatsapp-float:hover {
            background: #128C7E;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        .scroll-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            background: #3b82f6;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            z-index: 1000;
            border: none;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
            font-size: 18px;
            font-weight: bold;
        }

        .scroll-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-top:hover {
            background: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
        }
        footer {
            background: #1f2937;
            color: white;
            padding: 60px 20px 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }

        .footer-section p {
            color: #9ca3af;
            line-height: 1.6;
            margin-bottom: 16px;
            font-size: 0.9rem;
        }

        .footer-contact {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            color: #d1d5db;
            font-size: 0.9rem;
        }

        .footer-services {
            list-style: none;
        }

        .footer-services li {
            margin-bottom: 10px;
        }

        .footer-services a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-services a:hover {
            color: #10b981;
        }

        .emergency-section {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 8px;
            padding: 16px;
            margin-top: 20px;
        }

        .emergency-title {
            color: #f87171;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .emergency-number {
            color: white;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            border-top: 1px solid #374151;
            padding-top: 20px;
            text-align: center;
            color: #9ca3af;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
                padding: 0 1rem;
            }

            .hero-content h1 {
                font-size: 2.6rem !important;
                line-height: 1.1;
            }

            .hero-content .subheading {
                font-size: 1.15rem !important;
                max-width: 100%;
            }

            .value-props {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .mega-cta {
                padding: 24px;
            }

            .cta-title {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 12px;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
                text-align: center;
            }

            .trust-indicators {
                justify-content: center;
                gap: 20px;
            }

            .hero-visual {
                padding: 24px;
                margin-top: 0;
            }

            .service-option {
                padding: 16px;
            }

            .service-option:hover {
                transform: translateY(-2px);
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .expertise-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .final-cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-white,
            .btn-outline {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }

            .social-proof {
                padding: 16px;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
                font-size: 22px;
            }

            .scroll-top {
                bottom: 85px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 100px 0 60px 0;
            }

            .hero-content h1 {
                font-size: 2.2rem !important;
            }

            .mega-cta {
                padding: 20px;
            }

            .urgency-badge {
                font-size: 0.8rem;
                padding: 6px 12px;
            }

            .btn-primary {
                padding: 14px 24px;
                font-size: 1rem;
            }

            .btn-secondary {
                padding: 12px 20px;
            }

            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .scroll-top {
                width: 42px;
                height: 42px;
                font-size: 14px;
            }
        }