*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background:#f5f5f5;
    color:#333;
}

header{
    background:linear-gradient(90deg,#000,#d90000);
    padding:15px 0;
    position:sticky;
    top:0;
    z-index:1000;
}

nav{
    width:90%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav h2{
    color:white;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#ffd700;
}

.hero{
    height:85vh;
    background:url('images/pajero.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    position:relative;
}

.hero::after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}

.hero-content{
    position:relative;
    z-index:1;
}

.hero h1{
    font-size:48px;
    margin-bottom:15px;
}

.btn{
    display:inline-block;
    padding:12px 20px;
    background:#25D366;
    color:white;
    text-decoration:none;
    border-radius:30px;
    margin-top:15px;
    transition:0.3s;
}

.btn:hover{
    background:#1ebe5d;
}

.container{
    width:90%;
    margin:auto;
    padding:60px 0;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.card{
    background:white;
    border:1px solid #e6e6e6;
    border-radius:6px;
    overflow:hidden;
    transition:transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.card-body{
    padding:28px;
}

.card-body h3{
    margin-bottom:12px;
    color:#222;
    font-size:22px;
    line-height:1.2;
}

.post-meta{
    color:#888;
    font-size:14px;
    margin-bottom:14px;
}

.price{
    font-weight:bold;
    color:#000;
    margin:5px 0;
}

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px;
}

/* Promo page: center promo image and card */
.promo-wrapper{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:20px;
    min-height:60vh;
}

.promo-image{
    width:100%;
    max-width:900px;
    height:auto;
    border-radius:10px;
    box-shadow:0 8px 30px rgba(0,0,0,0.15);
}

.promo-wrapper .card{
    width:100%;
    max-width:900px;
}

/* Contact avatar styles */
.contact-avatar{
    display:flex;
    justify-content:center;
    margin-bottom:14px;
}
.contact-avatar img{
    width:110px;
    height:110px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid rgba(217,4,4,0.12);
    box-shadow:0 10px 30px rgba(217,4,4,0.12);
}

/* Center contact card body content */
.contact-card .card-body{
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
}