@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* General Body Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f9fc;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #209cff 0%, #68e0cf 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

header h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Product Showcase Section */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: -5rem auto 0;
    position: relative;
    z-index: 10;
}

/* Product Card Styles */
.product-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #209cff;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Product Icon Styles */
.product-icon {
    font-size: 3.5rem;
    color: #209cff;
    margin-bottom: 1.5rem;
    line-height: 1;
}

/* Product Details Styles */
.product-details h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
    color: #333;
    font-weight: 600;
}

.product-details p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1rem;
}

/* Product Link Styles */
.product-link {
    display: inline-block;
    background: linear-gradient(135deg, #209cff 0%, #68e0cf 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(32, 156, 255, 0.4);
}

.product-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(32, 156, 255, 0.6);
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #343a40;
    color: #f8f9fa;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 3rem 1rem;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }
    
    header h1 {
        font-size: 2.5rem;
    }

    .product-showcase {
        padding: 2rem 1rem;
        margin-top: -4rem;
    }
}
