/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #F5F5F5;
  color: #37474F;
}

.header{
  height: 50px;
  width: 100%;
  /* border: 2px black solid; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 25px;
  font-weight: 700;
  color: 37474f;
  font-family: Arial, sans-serif;
  background-color: #2e8b57;
  color: white;
  padding: 20px 0;
  text-align: center;
  
}
a {
  text-decoration: none;
  color: white;
}
a:hover {
  text-decoration: underline; 
  color: white;
}



.links{
  display: flex;
  align-items: center;
  /* margin-left: 360px; */
  justify-content: space-evenly;
  width: 70%;
  text-decoration: none;
  
}
.logo{
  font-size: 75px;
  margin-left: 10px;
}
.others{
  display: flex;
  align-items: center;
  margin-right: 30px;
  /* justify-content: space-between; */
}

/* Main Content Styles */
.transport-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.transport-container h2 {
  font-size: 2rem;
  color: #4CAF50;
  margin-bottom: 1.5rem;
  text-align: center;
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.transport-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.transport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.transport-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.transport-card h3 {
  font-size: 1.5rem;
  color: #4CAF50;
  margin-top: 1rem;
}

.transport-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #616161;
  font-weight: 600;
}
.choose-now{
  background-color: green;
  text-decoration: none;
  border-radius: 5px;
  font-size: 20px;
  color: #F5F5F5;
  padding: 10px;
  border: 2px solid green;
}
.choose-now:hover{
  background-color: rgb(65, 156, 65);
}

/* Footer Styles */
footer {
  background-color: #2e8b57;
  color: #ffffff;
  /* padding: 20px 0; */
  font-family: Arial, sans-serif;
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 20px;
  flex-wrap: wrap;
  text-align: left;
}

.footer-section {
  flex: 1;
  margin: 10px;
  min-width: 200px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 16px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #555;
  font-size: 14px;
  color: #b0bec5;
}

.footer-section.inspiration p {
  font-style: italic;
  color: #cfd8dc;
}