/* Grow Smart Website Theme */

/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Body Styling */
body {
    background: linear-gradient(to bottom, #f7fbe9, #e6f5d0);
    color: #acf5a7;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Main content centered */
center {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px 60px;
    max-width: 500px;
    text-align: center;
}

/* Headings */
h2 {
    font-size: 28px;
    color: #1b5e20; /* Dark green */
    font-weight: 600;
}

h1 {
    font-size: 34px;
    color: #2e7d32; /* Fresh green */
    margin: 10px 0 20px;
    line-height: 1.3;
}

/* Paragraphs */
p {
    font-size: 16px;
    color: #4f4f4f;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* About Section Title */
h3 {
    font-size: 22px;
    color: #1b5e20;
    margin-bottom: 10px;
}

/* Button Styling */
button {
    background-color: #4caf50; /* Vibrant green */
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #43a047; /* Slightly darker on hover */
    transform: scale(1.05);
}

/* Link styling */
a {
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 600px) {
    center {
        padding: 30px;
        max-width: 90%;
    }

    h1 {
        font-size: 28px;
    }

    p {
        font-size: 15px;
    }

    button {
        padding: 10px 25px;
        font-size: 15px;
    }
}