/* Basic Reset and Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #fff;
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Introduction Section */
.intro {
    text-align: center;
    margin: 30px 0;
    padding: 0 20px;
}

.intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #60a5fa;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #a3a3a3;
    max-width: 800px;
    margin: 0 auto;
}

/* Products Grid */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Product Cards */
.product-card {
    background-color: #1e1e1e;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #0038b0;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

/* Button Styles */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #0951aa);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

/* Footer Styles */
.footer {
    background-color: #1e1e1e;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
}

.footer p {
    color: #a3a3a3;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #60a5fa;
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .products {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}