/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #0055A2;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  margin-bottom: 10px;
}

nav {
  margin-top: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffd700;
}


/* Hero Section */
.hero {
  background-image: url('https://i.dailymail.co.uk/1s/2023/10/24/13/76934685-0-image-m-137_1698148883851.jpg');
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.hero h2 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.btn {
  background-color: #ffd700;
  color: #0055A2;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #ffc400;
}

/* Section styles */
section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #0055A2;
}

/* Card style for Careers */
.card {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 5px solid #0055A2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 15px;
}

/* Flights table */
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

table th, table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

table th {
  background-color: #0055A2;
  color: white;
}

table tr:hover {
  background-color: #f1f1f1;
}

/* Founders section */
.founders-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.founder {
  background: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  width: 220px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.founder img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin-bottom: 15px;
}

.founder h4 {
  margin-bottom: 5px;
  color: #0055A2;
}

.founder p {
  font-size: 0.95em;
  color: #666;
}
.about {
    background-color: #ffffff;
    padding: 80px 20px;
    color: #00205b;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00205b;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}



/* Footer */
footer {
  background-color: #0055A2;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 50px;
}

/* Responsive design */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2em;
  }

  .founders-container {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    display: inline-block;
    margin: 8px 10px;
  }
}
