* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #0a0e1a;
            color: white;
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 40px;
            background: rgba(10, 14, 26, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: bold;
            color: #3b82f6;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 16px;
        }

        .nav-links {
            display: flex;
            gap: 35px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
        }

        .nav-links a:hover {
            color: white;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-secondary {
            background: transparent;
            color: #94a3b8;
            border: 1px solid #374151;
        }

        .btn-secondary:hover {
            background: #374151;
            color: white;
        }

        .btn-primary {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 120px 40px 80px;
            background: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 100%);
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.3;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23374151" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
        }

        .chart-animation {
            position: absolute;
            top: 20%;
            left: 10%;
            right: 10%;
            bottom: 20%;
            opacity: 0.15;
            z-index: 1;
        }

        .hero-content {
            text-align: center;
            max-width: 800px;
            z-index: 2;
            position: relative;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #ffffff, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #94a3b8;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Features Section */
        .features {
            padding: 100px 40px;
            background: #f8fafc;
            position: relative;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 60px;
            align-items: start;
        }

        .feature-card {
            text-align: center;
            padding: 40px 30px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 24px;
            color: white;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 16px;
        }

        .feature-description {
            color: #64748b;
            line-height: 1.7;
            font-size: 1rem;
        }

        .chat-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1001;
        }

        .chat-button {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
            transition: all 0.3s ease;
            border: none;
            color: white;
            font-size: 24px;
        }

        .chat-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(59, 130, 246, 0.6);
        }

        .chat-box {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            height: 500px;
            background: #1e293b;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            display: none;
            flex-direction: column;
            overflow: hidden;
            border: 1px solid #374151;
        }

        .chat-box.active {
            display: flex;
        }

        .chat-header {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .chat-header h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
        }

        .close-chat {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .message {
            max-width: 80%;
            padding: 12px 16px;
            border-radius: 18px;
            font-size: 14px;
            line-height: 1.4;
        }

        .message.bot {
            background: #374151;
            align-self: flex-start;
        }

        .message.user {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            align-self: flex-end;
            color: white;
        }

        .chat-input {
            padding: 20px;
            border-top: 1px solid #374151;
            display: flex;
            gap: 10px;
        }

        .chat-input input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid #374151;
            border-radius: 20px;
            background: #0f172a;
            color: white;
            outline: none;
        }

        .chat-input input::placeholder {
            color: #64748b;
        }

        .send-btn {
            padding: 12px 16px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border: none;
            border-radius: 20px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .send-btn:hover {
            transform: translateY(-1px);
        }

        /* Candlestick Animation */
        .candlestick-container {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.15;
            z-index: 1;
            overflow: hidden;
        }

        .candlestick {
            position: absolute;
            width: 12px;
            animation: candleMove 8s linear infinite;
        }

        .candlestick-body {
            width: 12px;
            border-radius: 2px;
            position: relative;
        }

        .candlestick-wick {
            width: 2px;
            background: #64748b;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .candlestick-wick.top {
            top: -10px;
            height: 10px;
        }

        .candlestick-wick.bottom {
            bottom: -8px;
            height: 8px;
        }

        .candlestick.green .candlestick-body {
            background: #22c55e;
            border: 1px solid #16a34a;
        }

        .candlestick.red .candlestick-body {
            background: #ef4444;
            border: 1px solid #dc2626;
        }

        .candlestick.green .candlestick-wick {
            background: #16a34a;
        }

        .candlestick.red .candlestick-wick {
            background: #dc2626;
        }

        @keyframes candleMove {
            0% {
                transform: translateX(100vw);
                opacity: 0;
            }
            5% {
                opacity: 0.8;
            }
            95% {
                opacity: 0.8;
            }
            100% {
                transform: translateX(-50px);
                opacity: 0;
            }
        }

        /* Price line animation */
        .price-line {
            position: absolute;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #3b82f6, #3b82f6, transparent);
            animation: priceMove 6s ease-in-out infinite;
        }

        @keyframes priceMove {
            0%, 100% {
                top: 60%;
                opacity: 0.3;
            }
            25% {
                top: 40%;
                opacity: 0.8;
            }
            50% {
                top: 45%;
                opacity: 0.6;
            }
            75% {
                top: 35%;
                opacity: 0.9;
            }
        }

        /* Volume bars */
        .volume-bar {
            position: absolute;
            bottom: 20%;
            width: 6px;
            background: rgba(59, 130, 246, 0.4);
            border-radius: 3px;
            animation: volumePulse 3s ease-in-out infinite;
        }

        @keyframes volumePulse {
            0%, 100% {
                height: 20px;
                opacity: 0.3;
            }
            50% {
                height: 80px;
                opacity: 0.8;
            }
        }

        /* Statistics Section */
        .stats {
            padding: 100px 40px;
            background: #0a0e1a;
            color: white;
            position: relative;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="statsGrid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="%23374151" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23statsGrid)"/></svg>');
            opacity: 0.4;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .stats-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 80px;
            background: linear-gradient(135deg, #ffffff, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            align-items: center;
        }

        .stat-item {
            text-align: left;
            padding: 0;
            background: none;
            border-radius: 0;
            border: none;
            backdrop-filter: none;
            transition: none;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 80px;
            background: rgba(255, 255, 255, 0.1);
        }

        .stat-item:hover {
            transform: none;
            background: none;
            border-color: transparent;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: #3b82f6;
            margin-bottom: 8px;
            display: block;
        }

        .stat-label {
            color: #94a3b8;
            font-size: 1.1rem;
            font-weight: 500;
            line-height: 1.4;
        }

        /* fourth section styles start here*/
        .main-container {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f8f9fa;
            min-height: 200vh;
            padding: 40px 20px;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
        }

        .header h1 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .header p {
            font-size: 1.1rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

        .dashboard-container {
            max-width: 1200px;
            margin: 0 auto;
            background: #1e2128;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .search-bar {
            margin-bottom: 24px;
        }

        .search-input {
            background: #2d3139;
            border: 1px solid #3a3f47;
            border-radius: 8px;
            padding: 12px 16px;
            color: #ffffff;
            font-size: 14px;
            width: 250px;
            outline: none;
        }

        .search-input::placeholder {
            color: #9ca3af;
        }

        .search-input:focus {
            border-color: #4f46e5;
        }

        .filter-tabs {
            display: flex;
            gap: 20px;
            margin-bottom: 24px;
            float: right;
            margin-top: -48px;
        }

        .tab {
            background: none;
            border: none;
            color: #9ca3af;
            font-size: 14px;
            padding: 8px 12px;
            cursor: pointer;
            border-radius: 6px;
            transition: all 0.2s;
        }

        .tab.active {
            color: #ffffff;
            background: #374151;
        }

        .tab:hover {
            color: #ffffff;
            background: #374151;
        }

        .watchlist-section {
            clear: both;
            padding-top: 20px;
        }

        .section-title {
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .assets-table {
            width: 100%;
            border-collapse: collapse;
        }

        .table-header {
            border-bottom: 1px solid #374151;
        }

        .table-header th {
            color: #9ca3af;
            font-size: 12px;
            font-weight: 500;
            text-align: left;
            padding: 12px 16px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .asset-row {
            border-bottom: 1px solid #2d3139;
            transition: background-color 0.2s;
        }

        .asset-row:hover {
            background: #2d3139;
        }

        .asset-row td {
            padding: 16px;
            vertical-align: middle;
        }

        .asset-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .star-icon {
            color: #fbbf24;
            cursor: pointer;
            font-size: 16px;
        }

        .asset-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            color: white;
        }

        .btc { background: #f7931a; }
        .axs { background: #0052cc; }
        .sushi { background: #fa52a0; }
        .dai { background: #fac55a; }
        .avax { background: #e84142; }
        .amzn { background: #ff9900; }
        .fb { background: #1877f2; }
        .jnj { background: #cc0000; }
        .trip { background: #00af87; }

        .asset-name {
            color: #ffffff;
            font-weight: 500;
        }

        .asset-symbol {
            color: #9ca3af;
            font-size: 14px;
        }

        .asset-value {
            color: #ffffff;
            font-weight: 500;
        }

        .estimated-value {
            color: #9ca3af;
        }

        .trade-btn {
            background: #4f46e5;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .trade-btn:hover {
            background: #4338ca;
        }

        .notification-badge {
            position: absolute;
            top: -4px;
            right: -4px;
            background: #ef4444;
            color: white;
            font-size: 10px;
            font-weight: bold;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: white;
            padding: 100px 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #333;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 40px;
            z-index: 10;
            max-width: 600px;
        }

        .testimonials-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #333;
        }

        .testimonials-header p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
        }

        .slideshow-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            height: 600px;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .slideshow {
            display: flex;
            flex-direction: column;
            animation: slideUp 20s linear infinite;
            gap: 20px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-radius: 16px;
            padding: 30px;
            margin: 10px 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            min-height: 180px;
        }

        .testimonial-card:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .stars {
            display: flex;
            gap: 4px;
            margin-bottom: 15px;
        }

        .star {
            font-size: 20px;
            color: #00D4AA;
        }

        .star.empty {
            color: #E0E0E0;
        }

        .company-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 20px;
        }

        .author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 18px;
        }

        .author-info h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
        }

        .author-info p {
            font-size: 0.9rem;
            color: #888;
        }

        @keyframes slideUp {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-50%);
            }
        }

        .gradient-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
            pointer-events: none;
            z-index: 5;
        }

        /* Additional Footer Section */
        .final-hero-section {
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        }

        .final-hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            max-width: 800px;
            line-height: 1.2;
            color: white;
        }

        .final-hero-subtitle {
            font-size: 1.25rem;
            color: #b0b0b0;
            max-width: 600px;
            margin-bottom: 3rem;
            line-height: 1.5;
        }

        .cta-button {
            background: #3b82f6;
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
        }

        .footer {
            background: #0a0a0a;
            padding: 4rem 2rem 2rem;
            border-top: 1px solid #333;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            color: #888;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.75rem;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #3b82f6;
        }

        .logo-section {
            margin-bottom: 3rem;
        }

        .footer .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: #3b82f6;
            margin-bottom: 2rem;
        }

        .footer .logo::before {
            content: "📊";
            margin-right: 0.5rem;
            font-size: 1.8rem;
        }

        .risk-disclosure {
            color: #888;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 1000px;
        }

        .risk-disclosure p {
            margin-bottom: 1rem;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #666;
            font-size: 0.9rem;
        }

        .chat-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #ef4444;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }

            .nav-left {
                gap: 20px;
            }
            
            .nav-links {
                display: none;
            }

            .nav-buttons {
                gap: 10px;
            }

            .nav-buttons .btn {
                padding: 8px 16px;
                font-size: 14px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .final-hero-title {
                font-size: 2.5rem;
            }
            
            .final-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero {
                padding: 100px 20px 60px;
            }

            .features {
                padding: 60px 20px;
            }

            .features-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .feature-card {
                padding: 30px 20px;
            }
            
            .chat-box {
                width: 90vw;
                right: 5vw;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .testimonials-header h1 {
                font-size: 2rem;
            }
            
            .slideshow-container {
                max-width: 90%;
                height: 350px;
            }
            
            .testimonial-card {
                margin: 10px 10px;
                padding: 20px;
            }

            .header h1 {
                font-size: 2rem;
            }
            
            .dashboard-container {
                margin: 0 10px;
                padding: 16px;
            }
            
            .filter-tabs {
                float: none;
                margin-top: 16px;
                justify-content: center;
            }
            
            .search-input {
                width: 100%;
                margin-bottom: 16px;
            }
            
            .assets-table {
                font-size: 14px;
            }
            
            .table-header th,
            .asset-row td {
                padding: 12px 8px;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .final-hero-title {
                font-size: 2rem;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }