/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body */
body {
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

header .logo img {
    height: 50px;
}

header .call-btn a {
    background-color: #004288; /* Delta Blue */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

header .call-btn a:hover {
    background-color: #002f5c;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 120px 20px 50px;
    background: #e5f0fa;
}

.hero .promo-banner p {
    font-size: 18px;
    font-weight: bold;
    color: #004288;
    margin-bottom: 20px;
}

.hero .hero-content h1 {
    font-size: 32px;
    color: #004288;
    margin-bottom: 15px;
}

.hero .hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero .hero-btn {
    background-color: #004288;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.hero .hero-btn:hover {
    background-color: #002f5c;
}

/* Car Categories */
.car-categories {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
}

.car-categories h2 {
    font-size: 28px;
    color: #004288;
    margin-bottom: 30px;
}

.car-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.car-card {
    background-color: #f5f5f5;
    border-radius: 8px;
    width: 220px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.car-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.car-card h3 {
    font-size: 20px;
    color: #004288;
    margin-bottom: 5px;
}

.car-card p {
    font-size: 16px;
    font-weight: bold;
}

/* Top Car Brands */
.brand-links {
    padding: 40px 20px;
    background-color: #e5f0fa;
    text-align: center;
}

.brand-links h2 {
    font-size: 28px;
    color: #004288;
    margin-bottom: 20px;
}

.brand-links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.brand-links-container a {
    text-decoration: none;
    background-color: #004288;
    color: #fff;
    padding: 10px 18px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.brand-links-container a:hover {
    background-color: #002f5c;
}

/* Features Section */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 20px;
    gap: 30px;
    background-color: #fff;
}

.feature {
    width: 260px;
    text-align: center;
}

.feature h2 {
    font-size: 20px;
    color: #004288;
    margin-bottom: 10px;
}

.feature p {
    font-size: 16px;
}

/* Why Choose Us */
.why-choose {
    background-color: #e5f0fa;
    padding: 50px 20px;
    text-align: center;
}

.why-choose h2 {
    font-size: 28px;
    color: #004288;
    margin-bottom: 20px;
}

.why-choose ul {
    list-style-type: disc;
    display: inline-block;
    text-align: left;
    margin-top: 20px;
}

.why-choose ul li {
    font-size: 16px;
    margin-bottom: 8px;
}

/* Short Disclaimer */
.short-disclaimer {
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #004288;
    color: #fff;
    padding: 30px 20px 10px;
    position: relative;
    z-index: 1;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-pages a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
    font-size: 14px;
}

.footer-pages a:hover {
    text-decoration: underline;
}

.footer-contact p, .footer-contact a {
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
}

/* Sticky TFN Bar */
.sticky-tfn {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #004288;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-size: 18px;
    z-index: 9999;
}

.sticky-tfn a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .car-cards {
        flex-direction: column;
        align-items: center;
    }
    .features {
        flex-direction: column;
        align-items: center;
    }
    .brand-links-container {
        flex-direction: column;
    }
}
