/* General Styles */
body {
	    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	        margin: 0;
		    padding: 0;
		        background-color: #f4f4f4;
			    color: #333;
		    }

		    header, footer {
			        background-color: #02457a;
				    color: #ffffff;
				        padding: 20px 10%;
					    text-align: center;
				    }

				    main {
					        padding: 0 10%;
					}

					h1, h2 {
						    font-weight: 300;
					    }

					    p {
						        line-height: 1.65;
						}

						/* Links */
						a {
							    color: #007bff;
							        text-decoration: none;
							}

							a:hover {
								    text-decoration: underline;
							    }

							    /* Header */
							    header h1 {
								        margin: 0;
									    font-size: 2.5em;
								    }

								    header p {
									        font-size: 1.2em;
										    font-weight: lighter;
									    }

									    /* Main Content */
									    h2 {
										        color: #02457a;
											    margin-top: 2em;
										    }

										    .safe-browsing-tips {
											        background-color: #ffffff;
												    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
												        padding: 20px;
													    border-radius: 8px;
													        margin-top: 20px;
													}

													.safe-browsing-tips h2 {
														    color: #333;
													    }

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

														    li {
															        padding: 10px 0;
																    border-bottom: 1px solid #eee;
															    }

															    li:last-child {
																        border-bottom: none;
																}

																/* Footer */
																footer {
																	    font-size: 0.8em;
																	        line-height: 1.5;
																		    margin-top: 40px;
																	    }

																	    footer p {
																		        margin: 5px 0;
																		}

																		footer a {
																			    color: #ffffff;
																		    }

																		    /* Responsive Design */
																		    @media (max-width: 768px) {
																			        header, footer {
																					        text-align: center;
																						    }

																						        main {
																								        padding: 0 5%;
																									    }
																								    }

