* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

:root {
    --background-start: #fff;
    --background-end: #f8f9fa;
    --text-primary: #333;
    --text-secondary: #666;
    --card-background: white;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-hover: rgba(214, 51, 132, 0.1);
    --accent-primary: #207FAC;
    --accent-secondary: #5AB1D8;
    --accent-dark: #155A7A;
    --badge-color: #0dcaf0;
    --white: white;
}

body {
    background: linear-gradient(to bottom, var(--background-start), var(--background-end));
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--card-background);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--badge-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
} */

h2 {
    font-size: 1.8rem;
    color: var(--accent-primary);
    margin-bottom: 15px;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin-top: 20px;
}

.features-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.features-list li::before {
    content: "•";
    color: var(--accent-primary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-dark));
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }
}