/* Honda Passport Page Styles */

/* Base styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #212121;
  background: #fff;
  line-height: 1.6;
}

/* Typography */
h1 {
  background: #007dc3;
  color: #ffffff !important;
  padding: 20px;
  text-align: center;
  margin: 0;
}

h2 {
  color: #007dc3;
  padding: 10px 0 5px;
  border-bottom: 2px solid #007dc3;
}

h3 {
  color: #444;
  margin-top: 15px;
}

.lead-form-title {
  color: #007dc3 !important;
  font-size: 24px !important;
  font-weight: 600 !important;
}

p {
  margin: 10px 0;
  line-height: 1.6;
}

ul {
  margin: 10px 0 10px 20px;
}

ul li {
  margin: 5px 0;
}

/* Images */
.image-container {
  max-width: 600px;
  width: 100%;
  margin: 15px auto;
}

.image-container img {
  width: 100%;
  height: auto;
  border: 1px solid #eee;
}

.image-right {
  float: right;
  margin: 5px 0 15px 20px;
  max-width: 45%;
}

.image-left {
  float: left;
  margin: 5px 20px 15px 0;
  max-width: 45%;
}

/* Table styles */
.trim-table-container {
  overflow-x: auto;
  margin: 15px 0;
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 600px;
}

th, td {
  border: 1px solid #ccc;
  padding: 8px 12px;
  text-align: center;
}

th {
  background: #007dc3;
  color: #fff;
}

td {
  background: #f9f9f9;
}

td.feature {
  text-align: left;
  font-weight: bold;
  background: #f1f1f1;
}

/* CTA section */
.cta-container {
  text-align: center;
  padding: 20px 10px;
  background: #f7f7f7;
  margin: 30px 0 0;
}

.cta-button {
  display: inline-block;
  background: #007dc3;
  color: #fff !important;
  text-decoration: none !important;
  padding: 12px 20px;
  margin: 5px 10px;
  border-radius: 4px;
  font-weight: bold;
}

.cta-button:hover {
  background: #005d93;
}

/* Responsive styles */
@media (max-width: 768px) {
  .image-right, .image-left {
    float: none;
    max-width: 100%;
    margin: 15px auto;
  }
  
  h1 {
    font-size: 24px;
    padding: 15px 10px;
  }
  
  .cta-button {
    display: block;
    margin: 10px auto;
    max-width: 80%;
  }
}