﻿<style>
        body {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f0f0;
        }

        .container {
            max-width: 1000px;
            margin: 20px auto;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
        }
        h1, h2, h3 {
            color: #333;
        }
        p {
            color: #666;
            line-height: 1.6;
        }
        .highlight {
            background-color: #e1e1e1;
            padding: 10px;
            margin-bottom: 20px;
            border-radius: 5px;
        }
        .important-point {
            background-color: #ffc107; /* Yellow background */
            border: 1px solid #ffc107; /* Yellow border */
            color: #333; /* Dark text color */
            padding: 20px; /* Padding around the content */
            margin: 20px 0; /* Margin to create space around the box */
            border-radius: 8px; /* Rounded corners */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Shadow for a subtle effect */
        }
        .important-heading {
            color: #333; /* Dark text color */
            margin-top: 0; /* Remove default margin */
        }
        .cta-button {
            display: inline-block;
            background-color: #4CAF50; /* Green */
            color: white;
            padding: 10px 20px;
            text-align: center;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .cta-button:hover {
            background-color: #45a049; /* Darker green on hover */
        }
        .contact-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 40px;
        }
        .contact-form, .map {
            width: 48%;
            background-color: #fff;
            padding: 20px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            box-sizing: border-box;
            margin-bottom: 20px;
        }
        .contact-form h3, .map h3 {
            margin-top: 0;
        }
        .contact-form form {
            display: flex;
            flex-direction: column;
        }
        .contact-form input, .contact-form textarea {
            margin-bottom: 10px;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .contact-form button {
            padding: 10px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .contact-form button:hover {
            background-color: #45a049;
        }
        .map iframe {
            width: 100%;
            height: 100%;
            border: 0;
            border-radius: 5px;
        }

        .features-section {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        .feature {
            display: flex;
            align-items: center;
            background-color: #e1e1e1;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 10px;
            flex: 0 0 48%;
        }
        .feature-icon {
            width: 50px;
            height: 50px;
            background-color: #4CAF50;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin-right: 10px;
            font-size: 24px;
        }

        @media (max-width: 768px) {
            .contact-form, .map, .feature {
                width: 100%;
            }
        }
      
      .container {
  max-width: 800px;
  margin: 0 auto;
}

.row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.box {
  flex-basis: calc(50% - 10px);
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
  text-align: center;
}

.icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.icon.fas.fa-check-circle {
  color: #28a745; /* green color */
}

.icon.fas.fa-car {
  color: #007bff; /* blue color */
}

.icon.fas.fa-handshake {
  color: #ffc107; /* yellow color */
}

.icon.fas.fa-calendar-alt {
  color: #dc3545; /* red color */
}
