
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f4f6f9;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}


.container {
  display: flex;
  flex-direction: column;  
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  max-width: 1200px;
  width: 90%;
  gap: 40px;
  margin-top: 40px;
  align-items: center;
}


.car-image {
  width: 80%;
  border-radius: 10px;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


.info {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: 36px;
  color: #2c3e50;
}

.desc {
  font-size: 18px;
  color: #555;
}

.btn-test {
  display: inline-block;
  padding: 15px 25px;
  background: #ff3b3b;
  color: white;
  font-size: 20px;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  transition: 0.3s;
  font-weight: bold;
}

.btn-test:hover {
  background: #d62828;
}


table {
  width: 80%;
  margin: 20px auto;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

th, td {
  padding: 15px 20px;
  text-align: left;
  font-size: 18px;
}

th {
  background: #2c3e50;
  color: white;
  font-weight: bold;
}

tr:nth-child(even) {
  background: #f4f6f9;
}

tr:hover {
  background: #e8ecf2;
}

.home-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    background: #1a1a1a;
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    z-index: 9999;
}

.home-btn:hover {
    background: #ff3b3b;
    padding-left: 25px;
}

