body {
            background-color: #f4f1ea !important;
            margin: 0;
            padding: 0;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            color: #333;
        }

        .historio-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .content-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        @media (max-width: 900px) {
            .content-card { grid-template-columns: 1fr; }
        }

        .img-wrapper img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }

        .text-content h2 {
            color: #8b0000;
            font-size: 32px;
            margin-top: 0;
            border-bottom: 2px solid #d4af37;
            padding-bottom: 10px;
            font-weight: bold;
        }

        .text-content p {
            font-size: 17px;
            line-height: 1.9;
            text-align: justify;
            color: #444;
        }

        .hero-section {
            background: linear-gradient(135deg, #8b0000 0%, #4a0000 100%);
            color: white;
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
            margin-bottom: 50px;
        }

        .hero-section h1 {
            font-size: 44px;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 800;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .hero-item {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: 0.3s;
        }

        .hero-item:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }

        .hero-item strong {
            display: block;
            font-size: 20px;
            margin-bottom: 10px;
            color: #d4af37;
        }

        .video-wrapper {
            width: 100%;
            aspect-ratio: 16 / 9;
            background: #1a1a1a;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 50px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .learn-more-btn {
            display: inline-block;
            margin-top: 30px;
            padding: 15px 40px;
            background: #d4af37;
            color: #fff !important;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            transition: 0.4s;
        }

        .learn-more-btn:hover { background: #fff; color: #8b0000 !important; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
