/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  line-height: 1.6;
  font-size: 16px;
  background-color: #f9f9f9;
  color: #222;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Header */
header {
  background-color: #0077b6;
  color: white;
  padding: 15px 0;
  text-align: center;
}

header h1 {
  font-size: 2em;
}

/* Hero Section */
.hero {
  background-color: #023e8a;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.hero h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  background-color: #00b4d8;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
}

.btn:hover {
  background-color: #90e0ef;
  color: #000;
}

/* Sections */
section {
  padding: 40px 0;
  text-align: center;
}

.car-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.car {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.car:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.car h3 {
  margin-bottom: 10px;
  color: #0077b6;
}

/* Booking Form */
.booking form {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.booking input, 
.booking select, 
.booking button {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1em;
}

.booking button {
  background-color: #0077b6;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.booking button:hover {
  background-color: #00b4d8;
}

/* Footer */
footer {
  background-color: #023e8a;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9em;
}

footer a {
  color: #90e0ef;
  text-decoration: none;
  margin: 0 5px;
}

footer a:hover {
  text-decoration: underline;
}

/* TFN Bar */
.tfn-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #0077b6;
  text-align: center;
  padding: 12px 0;
  z-index: 1000;
}

.tfn-bar a {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1em;
  text-decoration: none;
}

.tfn-bar a:hover {
  color: #90e0ef;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .car-grid {
    flex-direction: column;
    align-items: center;
  }

  .hero h2 {
    font-size: 1.5em;
  }

  .hero p {
    font-size: 1em;
  }

  .booking form {
    width: 90%;
  }
}
