/* Puri website ki basic settings */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
}

/* Header Section */
header {
    background-color: #007bff;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

header h1 { margin: 0; font-size: 2.5rem; }

/* Main Container (Saara content center mein rakhne ke liye) */
.container {
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

/* Services Section */
.services h2 { color: #007bff; border-bottom: 2px solid #eee; padding-bottom: 10px; }
.services ul { list-style: none; padding: 0; }
.services li { padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.services li:before { content: "✔ "; color: green; font-weight: bold; }

/* Form Design */
form { display: flex; flex-direction: column; }
label { font-weight: bold; margin-bottom: 5px; margin-top: 15px; }
input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background-color: #28a745;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 25px;
    transition: 0.3s;
}

button:hover { background-color: #218838; }

/* Footer */
footer { text-align: center; padding: 20px; color: #777; font-size: 14px; }

/* Mobile Friendly Settings */
@media (max-width: 600px) {
    .container { margin: 10px; padding: 20px; }
    header h1 { font-size: 1.8rem; }
}