/* ✅ Indian Flag Tricolor Background */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, orange 33%, white 33%, white 66%, green 66%);
    text-align: center;
    margin: 0;
    padding: 0;
}

/* ✅ Main Content Box */
.content {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    margin: 20px auto;
    width: 50%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px gray;
}

/* ✅ Header */
header {
    background-color: #007bff;
    color: white;
    padding: 20px;
    font-size: 22px;
}

/* ✅ "अब हर किसी को मिलेगा न्याय" - Blue & Green Gradient */
h2 {
    background: linear-gradient(to right, blue, green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 26px;
    font-weight: bold;
}

/* ✅ Legal Info Articles */
.content h3 {
    color: #007bff;
    font-size: 20px;
    text-align: left;
}

.content ul {
    text-align: left;
    padding-left: 20px;
}

.content ul li {
    font-size: 16px;
    margin: 5px 0;
}

.content ul li a {
    color: #007bff;
    text-decoration: none;
}

.content ul li a:hover {
    text-decoration: underline;
}

/* ✅ Form Fields */
form input, form textarea {
    width: 90%;
    padding: 10px;
    margin: 5px 0;
    border: 2px solid orange;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

/* ✅ Submit Button */
button {
    background-color: green;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

button:hover {
    background-color: darkgreen;
}

/* ✅ Popup Message */
.popup {
    background-color: #28a745;
    color: white;
    padding: 15px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px gray;
    display: none;
    font-size: 16px;
    text-align: center;
    width: 250px;
}

/* ✅ AdSense Ad Spaces */
.ad-space {
    height: 90px;
    margin: 10px auto;
    text-align: center;
}

/* ✅ Footer */
footer {
    background-color: #007bff;
    text-align: center;
    padding: 15px;
    font-size: 12px;  
    color: white;
}

footer a {
    color: #f8f9fa;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ✅ Mobile Responsive */
@media screen and (max-width: 768px) {
    .content {
        width: 90%;
        padding: 15px;
    }

    .popup {
        bottom: 10px;
        right: 10px;
        width: 200px;
        font-size: 14px;
    }
}
