body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background: #000000; /* Black */
    color: #FFFFFF; /* White */
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 30px 0;
    background: #000000; /* Black */
    border-bottom: 2px solid #F28C38; /* Orange */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

header h1 {
    margin: 0;
    font-family: 'Futura', 'Orbitron', sans-serif;
    font-size: 2.5em;
    color: #FFCC00; /* Yellow */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

nav {
    background: #000000; /* Black */
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #F28C38; /* Orange */
    border-bottom: 1px solid #F28C38; /* Orange */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 25px;
}

nav ul li a {
    text-decoration: none;
    font-family: 'Futura', sans-serif;
    font-weight: bold;
    color: #FFFFFF; /* White */
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #F28C38; /* Orange */
    transform: scale(1.1);
    display: inline-block;
}

main {
    max-width: 850px;
    margin: 30px auto;
    padding: 0 20px;
}

section {
    background: rgba(255, 255, 255, 0.1); /* Subtle white translucency */
    padding: 30px;
    border: 1px solid #F28C38; /* Orange */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(242, 140, 56, 0.2); /* Orange glow */
    margin-bottom: 20px;
}

section p {
    margin: 15px 20px;
    text-align: justify;
    font-size: 1.2em;
}

.car-content {
    text-align: left;
    margin-top: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1); /* Subtle white translucency */
    border: 1px solid #F28C38; /* Orange */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(242, 140, 56, 0.2); /* Orange glow */
    min-height: 1200px; 
    display: flex;
    flex-direction: column;
}

.car-content .brand-logo {
    display: block;
    max-width: 150px;
    height: auto;
    margin: 20px auto;
    border: 2px solid #F28C38; /* Orange */
    border-radius: 5px;
}

.car-content h2 {
    font-family: 'Futura', sans-serif;
    color: #FFCC00; /* Yellow */
    margin-top: 30px;
    font-size: 1.8em;
    text-transform: uppercase;
    border-bottom: 1px solid #F28C38; /* Orange */
    padding-bottom: 10px;
}

.car-content h3 {
    font-family: 'Georgia', serif;
    color: #FFFFFF; /* White */
    margin-top: 20px;
    font-size: 1.4em;
}

.car-content p {
    margin: 15px 20px;
    text-align: justify;
    font-size: 1.2em;
}

.car-content img {
    max-width: 100%;
    max-height: 400px; /* Standardize image height */
    height: auto;
    margin: 15px 0;
    border-radius: 10px;
    border: 2px solid #F28C38; /* Orange */
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease;
}

.car-content img:hover {
    transform: scale(1.05);
}

a {
    color: #FFCC00; /* Yellow */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
    color: #F28C38; /* Orange */
}