/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3 {
  color: #333;
}

a {
  text-decoration: none;
  color: #333;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff6600;
  color: #fff;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e65c00;
}

/* Header */
header {
  background: #333;
  color: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  margin: 0;
  font-size: 24px;
}

header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #ff6600;
}

/* Hero Section */
.hero {
  background: url('towing-truck.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 150px 0;
}

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

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

/* Services Section */
.services {
  padding: 80px 0;
  text-align: center;
  background: #f9f9f9;
}

.services h2 {
  margin-bottom: 20px;
}

.service-line {
  width: 100px;
  height: 3px;
  background: #ff6600;
  margin: 0 auto 40px auto;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 20px;
  justify-content: center;
}

.service-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item i {
  font-size: 40px;
  color: #ff6600;
  margin-bottom: 15px;
}

.service-item h3 {
  margin-bottom: 10px;
}

/* About Section */
.about {
  padding: 80px 0;
  text-align: center;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  text-align: center;
  background: #f9f9f9;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.info-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 30%;
}

.info-item i {
  font-size: 30px;
  color: #ff6600;
  margin-bottom: 10px;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact form input, .contact form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.contact form button {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.contact form button:hover {
  background: #e65c00;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}