﻿body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f4f4f4;
    color: #333;
    text-align: center;
}

h1 {
    margin: 30px 0;
}

.motor-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

    .motor-gallery img {
        width: 200px;
        height: 130px;
        object-fit: cover;
        border-radius: 10px;
        transition: transform 0.3s, box-shadow 0.3s;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

        .motor-gallery img:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }

.motor-detail {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

    .motor-detail img {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        border-radius: 10px;
    }

.motor-text {
    margin-top: 20px;
    text-align: left;
}

    .motor-text h1 {
        font-size: 28px;
    }

    .motor-text p {
        font-size: 18px;
        line-height: 1.6;
    }

.back-btn {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: white;
    background: #007bff;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background 0.3s;
}

    .back-btn:hover {
        background: #0056b3;
    }
