* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

header {
    background: #07486f;
    color: white;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-img {
    max-width: 250px;
    height: auto;
    border-radius: 50%;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a.active,
nav ul li a:hover {
    color: #00b7eb;
}

.hero {
    position: relative;
    text-align: center;
    padding: 0;
    margin-bottom: 2rem;
}

.hero-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: brightness(70%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #07486f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
    border: 1px solid white;
}

.cta-button:hover {
    background: #0073b1;
}

.features {
    padding: 3rem 2rem;
    text-align: center;
    background: #fff;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    padding: 1.5rem;
    background: #f4f4f4;
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.testimonials {
    padding: 3rem 2rem;
    background: #f4f4f4;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
}

.testimonial .author {
    margin-top: 1rem;
    font-weight: bold;
    color: #003087;
}

.cta-banner {
    text-align: center;
    padding: 3rem 2rem;
    background: #07486f;
    color: white;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.about, .services, .contact {
    padding: 3rem 2rem;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.section-img {
    width: 100%;
    max-width: 800px;
    height: 600px; 
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.contract-img {
    width: 100%;
    max-width: 800px;
    height: 800px; 
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.about h2, .services h2, .contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about h2, .services h2, .contact h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.about-item {
    display: flex;
    justify-content:space-around;
    align-items: center;
    gap: 2rem;
    background: #f4f4f4;
    padding: 6rem;
    margin: 2rem 0;
    border-radius: 8px;
    font-size: 1.2rem;
}

.vehicle-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.about-text h1 {
    text-align: center;
}

.about-text ul > li{
    list-style-type: none;
    padding: 0.5rem;
}

.about-img {
    flex: 1;
}

.about-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
    margin: 1rem auto;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: #f4f4f4;
    padding: 1.5rem;
    border-radius: 8px;
}

.service-text {
    flex: 2;
    text-align: left;
    font-size: 1.2rem;
    padding: 1.5rem;
}

.service-img {
    flex: 1;
}

.services ul {
    margin: 1rem auto;
    display: grid;
    grid-template-columns: auto auto auto;
    color: #07486f;
}

.services ul li {
    margin: 0;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 600px;
    margin: 2rem auto;
}

.contact form label {
    font-weight: bold;
    text-align: left;
}

.contact form input,
.contact form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.contact form textarea {
    height: 200px;
}

.contact form button {
    padding: 1rem;
    background: #00b7eb;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
}

.contact form button:hover {
    background: #0073b1;
}

footer {
    background: #07486f;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

.footer-links a {
    color: white;
    margin: 0 1.5rem;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    color: #00b7eb;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-img {
        height: 300px;
    }
    .feature-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
}