
    :root {
        --primary-color: #F1302B;
        --text-color: #222222;
        --bg-light: #f9f9f9;
        --border-color: #e5e5e5;
        --transition: all 0.35s ease;
    }

    .product-container { max-width: 1200px; margin: 0 auto; padding: 20px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
    
    /* Section Titles */
    h2.section-title { font-size: 26px; color: var(--text-color); 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-color: var(--primary-color); position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); }

    /* Hero Section */
    .hero-section { display: flex; flex-direction: column; gap: 30px; margin-bottom: 50px; }
    .hero-img { width: 100%; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
    .hero-text { background-color: var(--bg-light); padding: 30px; border-radius: 8px; border-left: 6px solid var(--primary-color); }
    
    /* Table Styling */
    .table-responsive { border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; margin-bottom: 50px; }
    table { width: 100%; border-collapse: collapse; text-align: left; }
    th { background-color: #111; color: white; padding: 16px; text-transform: uppercase; font-size: 13px; letter-spacing: 0.5px; }
    td { padding: 15px; border-bottom: 1px solid var(--border-color); font-size: 14px; }
    tr:nth-child(even) { background-color: #fafafa; }
    tr:hover { background-color: #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: 8px; transition: var(--transition); }
    .feature-item:hover { transform: translateY(-5px); border-color: var(--primary-color); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
    .feature-item strong { color: var(--primary-color); display: block; margin-bottom: 10px; font-size: 16px; }

    /* Components List */
    .components-list { display: grid; gap: 25px; }
    .component-card { border: 1px solid var(--border-color); padding: 20px; border-radius: 8px; transition: var(--transition); }
    .component-card img { width: 100%; border-radius: 4px; margin-bottom: 15px; }
    .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); }
    }
