/* General styles */
body {
  font-family: Arial, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

/* Header styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #066699;
  color: white;
  padding: 24px 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.logo {
  height: 180px;
  width: auto;
  flex-shrink: 0;
}

.header-title {
  text-align: center;
  flex: 1;
}

.header-title h1 {
  font-size: 2.4em;
  margin: 0;
}

.header-title p {
  font-size: 1.44em;
  margin: 6px 0 0;
}

.header-title a.phone-link {
  color: white !important;
  text-decoration: none;
}

.header-title a.phone-link:hover {
  text-decoration: underline;
}

/* ✅ Repair Service Section */
.repair-service-info p {
  margin-bottom: 4px; /* Reduce space below paragraph */
}

.repair-form-button {
  margin: 0; /* Removes any extra space around the button */
  padding: 10px 20px; /* Adjust padding for button size */
  display: inline-block; /* Ensures proper alignment */
}



/* ✅ Global button styling */
.button {
  display: inline-block;
  background-color: #d32f2f;
  color: white;
  padding: 12px 24px;
  font-size: 1.2em;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #b71c1c;
}

.repair-form-images {
  text-align: center;
  margin-top: 20px;
}

.repair-form-images img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
}

/* Main content */
main {
  padding: 240px 20px 40px;
  text-align: center;
  flex: 1;
}

main h2 {
  color: #d32f2f;
  font-size: 2em;
  margin-bottom: 10px;
}

main p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

main ul {
  text-align: left;
  margin: 20px auto;
  max-width: 800px;
  padding-left: 20px;
  list-style-type: disc;
}

main li {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Responsive image */
.responsive-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
}

/* Buttons */
button {
  background-color: #d32f2f;
  color: white;
  padding: 10px 20px;
  border: none;
  font-size: 1.1em;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 20px;
}

button:hover {
  background-color: #b71c1c;
}

/* Pre-footer */
.pre-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 40px;
  background-color: #f9f9f9;
  border-top: 2px solid #ccc;
  flex-wrap: wrap;
}

.contact-us {
  max-width: 600px;
}

.contact-us h2 {
  color: #d32f2f;
  font-size: 1.6em;
}

.social-icons a {
  margin-right: 10px;
  font-size: 1.4em;
  color: #066699;
}

.social-icons a:hover {
  color: #d32f2f;
}

/* ✅ Mobile-specific adjustments */
@media (max-width: 768px) {
  .mobile-hide {
    display: none !important;
  }

  .header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-title h1 {
    font-size: 2em;
  }

  .header-title p {
    font-size: 1.2em;
  }
}
