body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    min-height: 100vh;
    color: #333;
}

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

h1 {
    background: #00a650;
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin: 0 0 30px 0;
    font-size: 2.5em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    font-weight: 600;
}

h2 {
    color: #00a650;
    margin: 30px 0 15px 0;
    padding: 15px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    font-size: 1.5em;
    font-weight: 600;
    border-left: 4px solid #00a650;
}

.section {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul li {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

ul li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

button {
    background: #00a650;
    color: white;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    border-radius: 6px;
    margin: 10px 5px;
    font-size: 1em;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 166, 80, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

button:hover {
    background: #008f45;
    box-shadow: 0 4px 10px rgba(0, 166, 80, 0.4);
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 166, 80, 0.3);
}

input[type="text"],
input[type="number"],
input[type="date"] {
    padding: 12px 15px;
    margin: 10px 5px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    width: calc(100% - 30px);
    max-width: 300px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: white;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="date"]:focus {
    outline: none;
    border-color: #00a650;
    box-shadow: 0 0 8px rgba(0, 166, 80, 0.2);
}

input[type="file"] {
    padding: 10px;
    margin: 10px 5px;
    border: 2px dashed #00a650;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="file"]:hover {
    border-color: #008f45;
    background: #f9f9f9;
}

label {
    color: #333;
    font-weight: 600;
    margin: 0 10px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .section {
        padding: 15px;
        margin-bottom: 15px;
    }

    h1 {
        font-size: 1.8em;
        padding: 20px 15px;
    }

    h2 {
        font-size: 1.2em;
        padding: 10px 15px;
        margin: 20px 0 10px 0;
    }

    button {
        padding: 10px 20px;
        font-size: 0.9em;
        margin: 5px;
    }

    input[type="text"],
    input[type="number"],
    input[type="date"] {
        width: 100%;
        max-width: 100%;
        margin: 5px 0;
    }
}