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

/* Ensure the body and html cover the full height */
html, body {
    height: 100%;
    background-color: #353434; /* Grey background */
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Container for welcome text */
.container {
    text-align: center;
    margin-bottom: 40px; /* Space between text and features */
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #d6bcfa, #6366f1); /* Purple-300 to Indigo-500 */
    -webkit-background-clip: text; /* Clip the background to the text */
    color: transparent; /* Make the text color transparent so gradient shows */
}

p {
    font-size: 24px;
}

/* Product Features Section */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 80%; /* Limit width to keep boxes nicely spaced */
    margin-top: 40px; /* Space between the main content and feature boxes */
    flex-wrap: wrap; /* Allow boxes to wrap on smaller screens */
}

/* Feature Box Styling */
.feature-box {
    background-color: #252525;
    padding: 20px;
    border-radius: 8px;
    width: 250px; /* Set width for each box */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #333; /* Text color for feature boxes */
    margin: 10px;
}

.feature-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(to right, #d6bcfa, #6366f1); /* Purple-300 to Indigo-500 */
    -webkit-background-clip: text; /* Clip the background to the text */
    color: transparent;
}

.feature-box p {
    font-size: 16px;
    color: #FFFFFF;
}

/* Responsive Design - Stacking feature boxes on small screens */
@media (max-width: 768px) {
    .features {
        flex-direction: column; /* Stack boxes vertically */
        align-items: center; /* Center the boxes */
    }

    .feature-box {
        width: 90%; /* Make the boxes wider on small screens */
        margin: 15px 0; /* Add space between the stacked boxes */
    }
}



