body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
    padding: 20px;
    background: linear-gradient(135deg, #67e168, #ffcc67);
        }
/* Spam Message Styling */
.spam-message {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    font-style: italic;
}
h1 {
    font-size: 1.8rem;
    text-align: center;
    color: #007BFF;
}

h2 {
    font-size: 1.4rem;
    margin-top: 20px;
    color: #0056b3;
}

p, ul {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
    line-height:1.25em;
}

ul {
    margin-left: 20px;
    list-style-type: disc;
    line-height:1.25em;
}
/* Contact Form Styling */
        .container {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
        }
.container h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
}

.container p {
    text-align: left;
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
    line-height:1.25em;
}
        #header img {
            width: 100%;
            display: block;
        }

        header {
            font-size: 1.8rem;
            font-weight: bold;
            text-align: center;
            margin-top: 20px;
            margin-bottom: 15px;
            color: #333;
        }

        benefits {
            display: block;
            background-color: #f9f9f9;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #555;
        }

        benefits strong {
            color: #ff7e5f;
        }
benefits strong:before {
    content: "✔️ ";
    color: #2FC332;
    margin-right: 5px;
}
        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

.form-group input[type="checkbox"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

.form-group a {
    color: #007bff;
    text-decoration: none;
    margin-left: 4px;
}

.form-group a:hover {
    text-decoration: underline;
}

        .form-group input, 
        .form-group select, 
        .form-group button {
            width: 97%;
            padding: 10px;
            font-size: 1rem;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        .form-group button {
            background-color: #007BFF;
            color: #fff;
            border: none;
            cursor: pointer;
            font-weight: bold;
        }

        .form-group button:hover {
            background-color: #0056b3;
        }

        .form-group label a {
            color: #007BFF;
            text-decoration: none;
        }

        .form-group label a:hover {
            text-decoration: underline;
        }

button[type="submit"] {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    color: white;
    background-color: #2f3140;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #5f627a;
}

#notification {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
}
input {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
    font-size: 1rem;
}

input:focus {
    outline: none;
}

input.success {
    border-color: green;
}

input.error {
    border-color: red;
}

#username-feedback {
    display: block;
    margin-top: 5px;
}
@media (max-width: 768px) {
    .container {
        padding: 10px;
        max-width: 97%;
    }
    header {
        font-size: 1.5rem;
    }
    .form-group input, .form-group button {
        width: 95%;
    }


}