* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom, #f5f7fa, #c3cfe2);
    color: #333;
    line-height: 1.8;
    padding: 20px;
}
h2.heading {
    text-align: center;
    font-size: 2.5rem;
    color: #4b79a1;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    background: #ffffffcc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
form {
    max-width: 900px;
    margin: 20px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
form label {
    display: block;
    margin: 15px 0 5px;
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
}
form input[type="text"],
form input[type="email"],
form select,
form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-size: 1rem;
    transition: all 0.3s ease;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form select:focus,
form textarea:focus {
    border-color: #4b79a1;
    box-shadow: 0 0 10px rgba(75, 121, 161, 0.3);
    outline: none;
}
form input[type="radio"] {
    margin-right: 10px;
}

form input[type="radio"] + label {
    display: inline-block;
    margin-right: 20px;
    font-weight: normal;
    color: #555;
    font-size: 1rem;
}
form input[type="file"] {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    font-size: 1rem;
}
form input[type="submit"] {
    background: linear-gradient(to right, #4b79a1, #283e51);
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

form input[type="submit"]:hover {
    background: linear-gradient(to right, #283e51, #4b79a1);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
textarea {
    resize: vertical;
    min-height: 100px;
}
hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 30px 0;
}
@media (max-width: 768px) {
    h2.heading {
        font-size: 2rem;
    }

    p {
        padding: 15px;
        font-size: 0.95rem;
    }

    form {
        padding: 30px;
    }

    form label {
        font-size: 1rem;
    }

    form input[type="submit"] {
        font-size: 1rem;
        padding: 12px 25px;
    }
}
