/* Basic CSS for layout and styling (you can expand this for exact design) */
 body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #181C2F; /* Dark blue background from the image */
  color: #181C2F; /* White text */
  line-height: 1.6;
 }
 
 

 .header {
  background-color: rgb(206, 206, 204);
  color: #181C2F;
  padding: 10px 0;
  border-bottom: 1px solid #222;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
 }
 

 .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
 }
 

 .logo {
  width: 100px;
  height: auto;
  margin-left: 20px;
 }
 

 .nav-links {
  display: flex;
  gap: 30px;
 }
 

 .nav-links a {
  color: #A020F0; /* Deep purple color for links */
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
 }
 

 .nav-links a:hover {
  color: #DDA0DD; /* Light purple on hover */
 }
 

 .main-content {
  max-width: 1000px;
  margin: 50px auto;
  padding: 30px;
  text-align: center;
  background-color: #181C2F;
 }
 

 .main-content h1 {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 0.5em;
 }
 

 .main-content h2 {
  color: #DDA0DD; /* Light purple */
  font-size: 1.8em;
  margin-bottom: 1em;
 }
 

 .main-content p {
  font-size: 1.2em;
  color: #eee;
  line-height: 1.7;
  margin-bottom: 2em;
 }
 

 .contact-button {
  background-color: #A020F0; /* Deep purple button */
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.3s ease;
 }
 

 .contact-button:hover {
  background-color: #DDA0DD; /* Light purple on hover */
 }
 

 .features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 20px;
  background-color: #00001a;
 }

 .features img {
  display: block;
  width: 100%;
  margin: 0 auto;
 }

 .features h2 {
  color: #DDA0DD;
  text-align: center;
  font-size: 2.5em;
  width: 100%;
 }
 

 .feature {
  flex: 1 1 300px;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
 }
 

 .feature:hover {
  transform: translateY(-5px);
 }
 

 .feature i {
  color: #A020F0;
  margin-bottom: 15px;
 }
 

 .feature h3 {
  color: #fff;
  margin-bottom: 10px;
 }
 

 .feature ul {
  list-style: none;
  padding: 0;
 }
 

 .feature li {
  color: #ddd;
  margin: 5px 0;
 }
 

 .why-falcon {
  background-color: #00001a;
  padding: 50px 20px;
  text-align: center;
  color: #fff;
 }
 

 .why-falcon h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #DDA0DD; /* Light purple */
 }
 

 .why-falcon ul {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
 }
 

 .why-falcon li {
  font-size: 1.2em;
  margin: 10px 0;
  padding-left: 1.5em;
  text-indent: -1.5em;
 }
 

 .why-falcon li::before {
  content: "🚀";
  color: #A020F0;
  display: inline-block;
  margin-right: 0.5em;
 }
 

 footer {
  background-color: #00001a;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #222;
 }
 

 .top-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
 }
 

 .main-title {
  color: #DDA0DD; /* Light purple */
  font-size: 1.8em;
  margin-bottom: 0em;
  width: 60%;
  text-align: left;
 }
 

 .finance-arrows {
  width: 30%;
  height: auto;
 }
 

 .contact-us {
  background-color: #00001a;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #222;
  font-size: 1.2em;
 }
