/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    color: #2e3d2f;
    min-height: 100vh;
    padding: 40px;
}

/* Container */
.container {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Heading */
h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1b5e20;
}

h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2e7d32;
}

/* Paragraph */
p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Form */
form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #c8e6c9;
    transition: 0.3s;
    font-size: 14px;
}

form input:focus,
form textarea:focus {
    border-color: #4caf50;
    outline: none;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.2);
}

/* Button */
button {
    background: #2e7d32;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

button:hover {
    background: #1b5e20;
    transform: translateY(-2px);
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th {
    background: #2e7d32;
    color: white;
    padding: 12px;
}

table td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
}

table tr:hover {
    background: #f1f8e9;
}

/* Link */
a {
    text-decoration: none;
    color: #2e7d32;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    .container {
        padding: 25px;
    }

    h1 {
        font-size: 24px;
    }
}