body {
    font-family: Arial, sans-serif;
    color: #222;
}

.hero-section {
    min-height: 70vh;
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('../images/hero/main.jpg') center center / cover no-repeat;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 600;
}

.spec-card {
    background: #f7f7f7;
    padding: 25px;
    border-radius: 10px;
}

img {
    transition: transform 0.2s ease;
}

img:hover {
    transform: scale(1.01);
}

footer {
    font-size: 0.95rem;
}