body  {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-color: #121212;
    color: #e0e0e0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    background-color: #1f1f1f;
    color: #e0e0e0;
}

header .logo a {
    font-size: 3em;
    color: #ff6347;
    text-decoration: none;
    font-family: Brush Script MT, italic;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 1em;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
}

header nav ul li a:hover {
    color: #ff6347;
    text-decoration: underline;
}

header .contact-info a {
    color: #ff6347;
    text-decoration: none;
    font-weight: bold;
}

#hero {
      background: url('car01.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

#hero h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

#hero p {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.cta-button {
    padding: 0.75em 1.5em;
    background-color: #ff6c52;
    color: #121212;
    text-decoration: none;
    font-size: 1em;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #ec4204;
}

#featured-cars {
    padding: 2em;
    background-color: #ff7e7ef6;
    text-align: center;
}

#featured-cars h2 {
    font-size: 2.5em;
    margin-bottom: 1em;
}

.car-carousel {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    flex-wrap: wrap;
}

.car-item {
    background-color: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    text-align: center;
    padding: 1em;
    width: 250px;
}

.car-item img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #444;
    padding-bottom: 1em;
}

.car-item h3 {
    font-size: 1.5em;
    margin: 1em 0 0.5em;
}

.car-item p {
    font-size: 1.2em;
    margin-bottom: 1em;
    color: #e0e0e0;
}

.car-item .view-details {
    padding: 0.5em 1em;
    background-color: #ff6347;
    color: #121212;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.car-item .view-details:hover {
    background-color: #ff4500;
}

/* Common styles for sections */
section {
    padding: 2em;
}

h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 1em;
}

/* About Us Section */
#about .about-content {
    display: flex;
    align-items: center;
    gap: 1em;
    text-align: justify;
}

#about img {
    max-width: 100%;
}

#about .learn-more {
    padding: 0.5em 1em;
    background-color: #ff6347;
    color: #121212;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#about .learn-more:hover {
    background-color: #ff4500;
}

/* Inventory Highlights Section */
#inventory-highlights .inventory-grid {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    flex-wrap: wrap;
}

#inventory-highlights .car-item {
    background-color: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    text-align: center;
    padding: 1em;
    width: 250px;
}

#inventory-highlights .car-item img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #444;
    padding-bottom: 1em;
}

#inventory-highlights .car-item h3 {
    font-size: 1.5em;
    margin: 1em 0 0.5em;
}

#inventory-highlights .car-item p {
    font-size: 1.2em;
    margin-bottom: 1em;
    color: #e0e0e0;
}

#inventory-highlights .car-item .view-details {
    padding: 0.5em 1em;
    background-color: #ff6347;
    color: #121212;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#inventory-highlights .car-item .view-details:hover {
    background-color: #ff4500;
}

/* Special Offers Section */
#special-offers .offers-content {
    display: flex;
    justify-content: space-around;
    gap: 2em;
    flex-wrap: wrap;
}

#special-offers .offer {
    background-color: #2c2c2c;
    border-radius: 10px;
    padding: 1em;
    text-align: center;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

#special-offers .offer h3 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

#special-offers .offer p {
    font-size: 1.2em;
    margin-bottom: 1em;
}

#special-offers .offer .view-offer {
    padding: 0.5em 1em;
    background-color: #ff6347;
    color: #121212;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#special-offers .offer .view-offer:hover {
    background-color: #ff4500;
}

/* Services Section */
#services {
    padding: 2em;
    text-align: center;
    background-color: #1e1e1e;
}

#services h2 {
    font-size: 2em;
    margin-bottom: 1em;
}

.services-list {
    display: flex;
    justify-content: center;
    gap: 2em;
    flex-wrap: wrap;
}

.service {
    background-color: #2c2c2c;
    border-radius: 10px;
    padding: 1em;
    text-align: center;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.service i {
    font-size: 3em;
    margin-bottom: 0.5em;
    color: #ff6347;
}

.service h3 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

.service p {
    font-size: 1.2em;
    margin-bottom: 1em;
}

/* Footer Section */
footer {
    background-color: #1f1f1f;
    color: #e0e0e0;
    padding: 2em 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2em;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.footer-section.about .contact span {
    display: block;
    margin-bottom: 0.5em;
}

.footer-section.about .contact span i {
    margin-right: 0.5em;
}

.footer-section.links ul {
    list-style: none;
    padding: 0;
}

.footer-section.links ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section.links ul li a:hover {
    color: #ff6347;
}

.footer-section.contact-form form .text-input {
    padding: 0.5em;
    margin-bottom: 1em;
    border-radius: 5px;
    border: 1px solid #444;
    background-color: #2c2c2c;
    color: #e0e0e0;
}

.footer-section.contact-form form .btn {
    padding: 0.5em;
    background-color: #ff6347;
    color: #121212;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0s;
}

.footer-section.contact-form form .btn:hover {
    background-color: #ff4500;
}

.footer-bottom {
    background-color: #222;
    text-align: center;
    padding: 0.5em 0;
}