        /* Base Styles */
        :root {
            --primary-color: #1a1a1a;
            --accent-color: #ff5e14;
            --text-color: #333;
            --bg-color: #f9f9f9;
        }

        body {
            margin: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Header */
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 20px 50px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo {
			width: 34vw; /* 80% of the screen width */
			height: auto; /* Maintains aspect ratio */
        }

        .logo span {
            color: var(--accent-color);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/weights.png') center/cover;

            color: white;
            text-align: center;
            padding: 80px 20px;
        }

        .hero h1 {
            font-size: 50px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero p {
            font-size: 24px;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            margin: 60px 0 40px;
            font-size: 36px;
            color: var(--primary-color);
        }

        /* Products Grid */
        .products {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            padding: 0 20px 60px;
            max-width: 2100px;
            margin: 0 auto;
        }

        .product-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            width: 650px;
            overflow: hidden;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-image {
            width: 100%;
            /* height: 600px; */ 
            background-color: #eaeaea;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
            font-size: 14px;
            object-fit: cover;
        }

        .product-info {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
 
        .product-title {
            font-size: 24px;
            font-weight: 700;
            margin: 0 0 6px 0;
            color: var(--primary-color);
        }

        .product-desc {
            font-size: 20px;
            color: #666;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .btn {
            background-color: var(--accent-color);
            color: white;
            text-align: center;
            padding: 12px 15px;
            border-radius: 4px;
            font-weight: bold;
            transition: background 0.3s;
            display: block;
			width: 50%;
			margin: 0 auto;
			
        }

        .btn:hover {
            background-color: #e5540e;
        }

        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            padding: 20px;
            font-size: 16px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }
			        .hero p {
            font-size: 20px;
            max-width: 768p;
            margin: 0 auto;
        }

			.logo {
				width: 70vw; /* 80% of the screen width */
				height: auto; /* Maintains aspect ratio */	
			}
            header {
                flex-direction: column;
                padding: 20px;
            }
			        .section-title {
            margin: 40px 0 40px;
            font-size: 30px;
        }

			
        }
