:root {
            --navy: #1a2a6c;
            --blue: #b21f1f;
            --accent: #fdbb2d;
            --light-bg: #f8fbff;
            --text: #333;
        }

        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--light-bg);
            margin: 0;
            padding: 0;
        }

        header {
            background: linear-gradient(to right, #1a2a6c, #2a4858);
            color: white;
            padding: 60px 20px;
            text-align: center;
        }

        .container {
            max-width: 1000px;
            margin: auto;
            padding: 20px;
        }

        .badge {
            background: var(--accent);
            color: #000;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 20px;
        }

        h1 {
            font-size: 3.5rem;
            margin: 0;
            letter-spacing: -1px;
        }

        .price-tag {
            font-size: 1.5rem;
            margin-top: 10px;
            opacity: 0.9;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: -40px;
        }

        .card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            border-bottom: 4px solid var(--navy);
        }

        .card h3 {
            color: var(--navy);
            margin-top: 0;
        }

        .analysis-section {
            margin: 60px 0;
        }

        .stats-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .stats-table td, .stats-table th {
            padding: 15px 20px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .stats-table th {
            background: #f1f1f1;
            color: var(--navy);
        }

        .cta-box {
            background: #fff;
            border: 2px dashed var(--navy);
            padding: 40px;
            text-align: center;
            border-radius: 12px;
            margin-top: 40px;
        }

        .btn-main {
            background: var(--navy);
            color: white;
            padding: 18px 40px;
            font-size: 1.3rem;
            text-decoration: none;
            border-radius: 8px;
            display: inline-block;
            transition: all 0.3s;
            font-weight: bold;
        }

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

        .market-highlight {
            color: #b21f1f;
            font-weight: bold;
        }

        @media (max-width: 600px) {
            h1 { font-size: 2rem; }
        }