    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    }
    
    body {
        background: 
        url("backgr.webp") center/cover no-repeat, 
        linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); 
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }
    
    .container {
        max-width: 1000px;
        width: 100%;
        background-color: rgb(239, 239, 239);
        border-radius: 30px;
        padding: 30px;
        margin-top: 20px;
    }
    
    h1 {
        text-align: center;
        color: #2c3e50;
        margin-bottom: 10px;
        font-size: 2.5rem;
    }
    
    .subtitle {
        text-align: center;
        color: #7f8c8d;
        margin-bottom: 30px;
        font-size: 1.1rem;
    }
    
    .products-table {
        width: 100%;
        border-collapse: collapse;
        margin: 30px 0;
    }
    
    .products-table th {
        background: linear-gradient(to right, #3498db, #2c3e50);
        color: white;
        padding: 15px;
        text-align: center;
        font-size: 1.2rem;
    }
    
    .products-table td {
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid #ecf0f1;
    }
    
    .product-image {
        width: 200px;
        height: 150px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .product-image-balius {
        width: 200px;
        height: 150px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }
    
    .product-image:hover {
        transform: scale(1.05);
    }
    
    .product-name {
        font-size: 1.4rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 10px;
    }
    
    .product-description {
        color: #7f8c8d;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .product-price {
        font-size: 1.5rem;
        font-weight: 700;
        color: #e74c3c;
        margin-bottom: 15px;
    }

    footer {
        text-align: center;
        padding: 20px;
        margin-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #212122;

    }
    
    .buy-button {
        background: linear-gradient(to right, #2ecc71, #27ae60);
        color: white;
        border: none;
        padding: 10px 25px;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
    }
    
    .buy-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(46, 204, 113, 0.4);
    }
    
    .features {
        list-style-type: none;
        text-align: left;
        display: inline-block;
        margin-top: 10px;
    }
    
    .features li {
        padding: 5px 0;
        color: #34495e;
    }
    
    .features li:before {
        content: "✓ ";
        color: #2ecc71;
        font-weight: bold;
    }
    
    @media (max-width: 768px) {
        .products-table {
            display: block;
            overflow-x: auto;
        }
        
        .container {
            padding: 20px 15px;
        }
        
        h1 {
            font-size: 2rem;
        }
    }