	@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
	* {
	  margin: 0;
	  padding: 0;
	  box-sizing: border-box;
	}
	body {
	  font-family: "Poppins", sans-serif;
	  background-color: #f4f7fc;
	  color: #333;
	  margin: 0;
	}
	header,
	footer {
	  background-color: #003366;
	  color: white;
	  padding: 30px 20px;
	  text-align: center;
	}
	header h1 {
	  font-size: 2.5em;
	  font-weight: 600;
	}
	nav {
	  background-color: #00254d;
	  padding: 15px 20px;
	  text-align: center;
	}
	nav a {
	  color: white;
	  margin: 0 15px;
	  text-decoration: none;
	  font-weight: 500;
	}
	nav a:hover {
	  text-decoration: underline;
	}
	.hero {
	  background-image: url("shakinghands.jpg");
	  background-size: cover;
	  background-position: center;
	  padding: 60px 20px;
	  color: white;
	  text-align: center;
	}
	.hero h2 {
	  font-size: 2.5em;
	  margin-bottom: 20px;
	}
	.hero p {
	  font-size: 1.2em;
	}
	.hero1 {
	  background-image: url("bank.jpeg");
	  background-size: cover;
	  background-position: center;
	  padding: 60px 20px;
	  color: white;
	  text-align: center;
	}
	.hero1 h2 {
	  font-size: 2.5em;
	  margin-bottom: 20px;
	}
	.hero1 p {
	  font-size: 1.2em;
	}
	.hero2 {
	  background-image: url("3.webp");
	  background-size: cover;
	  background-position: center;
	  padding: 60px 20px;
	  color: white;
	  text-align: center;
	}
	.hero2 h2 {
	  font-size: 2.5em;
	  margin-bottom: 20px;
	}
	.hero2 p {
	  font-size: 1.2em;
	}
	table {
	  width: 100%;
	  border-collapse: collapse;
	  margin-top: 20px;
	  font-size: 1em;
	  text-align: left;
	}
	th,
	td {
	  padding: 15px;
	  border: 1px solid #ddd;
	}
	th {
	  background-color: #003366;
	  color: white;
	}
	td {
	  text-align: center;
	}
	td:first-child {
	  text-align: left;
	}
	.content {
	  padding: 40px 20px;
	  max-width: 82%;
	  margin: 0 auto;
	}
	.section {
	  background-color: white;
	  border-radius: 10px;
	  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	  padding: 40px;
	  margin-bottom: 20px;
	}
	.section h3 {
	  font-size: 1.5em;
	  margin-bottom: 15px;
	  color: #00254d;
	}
	.section p {
	  line-height: 1.6;
	}
	.contact-form input,
	.contact-form textarea,
	.contact-form button {
	  width: 100%;
	  padding: 15px;
	  margin-bottom: 10px;
	  border-radius: 5px;
	  border: 1px solid #ccc;
	  font-size: 1em;
	}
	.contact-form button {
	  background-color: #003366;
	  color: white;
	  border: none;
	  cursor: pointer;
	  font-weight: 600;
	  transition: background-color 0.3s ease;
	}
	.contact-form button:hover {
	  background-color: #004080;
	}
	footer {
	  background-color: #00254d;
	  color: white;
	  text-align: center;
	  padding: 20px;
	  margin-top: 40px;
	}
	footer p {
	  margin: 0;
	  font-size: 0.9em;
	}
	.grid {
	  display: grid;
	  grid-template-columns: repeat(2, 1fr);
	  grid-gap: 20px;
	}
	@media (max-width: 768px) {
	  .content {
	  	max-width:100%
	  }
	  .grid {
	    grid-template-columns: 1fr;
	  }
	}
