* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

 

body {

    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    line-height: 1.6;

    color: #333;

    background: #2ba84c;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

}

 

.container {

    background: white;

    border-radius: 12px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

    max-width: 800px;

    width: 100%;

    padding: 60px 40px;

}

 

header {

    text-align: center;

    margin-bottom: 50px;

}

 

h1 {

    font-size: 2.5rem;

    color: #2d3748;

    margin-bottom: 10px;

}

 

.tagline {

    font-size: 1.2rem;

    color: #718096;

}

 

h2 {

    font-size: 1.8rem;

    color: #2d3748;

    margin-bottom: 30px;

    text-align: center;

}

 

.product-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 20px;

    margin-bottom: 40px;

}

 

.product-card {

    background: #48a82b;

    color: white;

    padding: 30px;

    border-radius: 8px;

    text-decoration: none;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}

 

.product-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);

}

 

.product-card h3 {

    font-size: 1.5rem;

    margin-bottom: 10px;

}

 

.product-card p {

    font-size: 1rem;

    opacity: 0.9;

}

 

footer {

    text-align: center;

    padding-top: 30px;

    border-top: 1px solid #e2e8f0;

    color: #718096;

    font-size: 0.9rem;

}

 

@media (max-width: 768px) {

    .container {

        padding: 40px 20px;

    }

 

    h1 {

        font-size: 2rem;

    }

 

    .tagline {

        font-size: 1rem;

    }

 

    h2 {

        font-size: 1.5rem;

    }

}
