
    :root {
        --primary-color: #F1302B;
        --text-color: #222222;
        --bg-light: #f9f9f9;
        --border-color: #e5e5e5;
        --transition: all 0.35s ease;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: var(--text-color); padding: 20px; }
    .product-container { max-width: 1200px; margin: 0 auto; }
    
    /* Section Titles */
    h2.section-title { font-size: 26px; text-align: center; margin: 50px 0 30px; text-transform: uppercase; letter-spacing: 1.5px; position: relative; }
    h2.section-title::after { content: ''; width: 50px; height: 3px; background: var(--primary-color); position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); }

    /* Image Effect */
    .img-wrapper { overflow: hidden; border-radius: 6px; display: block; }
    .img-wrapper img { width: 100%; display: block; transition: transform 0.6s ease; }
    .img-wrapper:hover img { transform: scale(1.05); }

    /* Hero Section */
    .hero-section { display: flex; flex-direction: column; gap: 30px; margin-bottom: 50px; }
    .hero-text { background: var(--bg-light); padding: 30px; border-radius: 6px; border-left: 5px solid var(--primary-color); }

    /* Table */
    .table-responsive { border-radius: 6px; overflow: hidden; border: 1px solid var(--border-color); margin-bottom: 50px; }
    table { width: 100%; border-collapse: collapse; }
    th { background: #111; color: #fff; padding: 15px; text-transform: uppercase; font-size: 13px; }
    td { padding: 15px; border-bottom: 1px solid var(--border-color); }
    tr:nth-child(even) { background: #fafafa; }
    tr:hover { background: #fdf0f0; transition: var(--transition); }

    /* Features Grid */
    .features-grid { display: grid; gap: 20px; margin-bottom: 50px; }
    .feature-item { background: #fff; border: 1px solid var(--border-color); padding: 25px; border-radius: 6px; transition: var(--transition); }
    .feature-item:hover { border-color: var(--primary-color); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
    .feature-item strong { color: var(--primary-color); display: block; margin-bottom: 10px; }

    /* Components List */
    .components-list { display: grid; gap: 25px; }
    .component-card { border: 1px solid var(--border-color); padding: 20px; border-radius: 6px; transition: var(--transition); }
    .component-card:hover { border-color: var(--primary-color); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }

    @media (min-width: 768px) {
        .hero-section { flex-direction: row; align-items: center; }
        .hero-img { width: 50%; }
        .hero-text { width: 50%; }
        .features-grid { grid-template-columns: repeat(2, 1fr); }
        .components-list { grid-template-columns: repeat(3, 1fr); }
    }
