*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,Arial,sans-serif;
    background:#f8fafc;
    color:#0f172a;
}

.container{
    max-width:1000px;
    margin:auto;
    padding:0 20px;
}

header{
    background:white;
    border-bottom:1px solid #e2e8f0;
}

.logo{
    font-weight:700;
    font-size:22px;
    padding:20px 0;
}

.hero{
    padding:80px 0;
    text-align:center;
}

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

.hero p{
    color:#64748b;
    max-width:600px;
    margin:auto;
    line-height:1.6;
}

.search-card{
    background:white;
    margin-top:40px;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

select{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #cbd5e1;
    border-radius:12px;
    font-size:16px;
}

button{
    width:100%;
    border:none;
    padding:15px;
    background:#2563eb;
    color:white;
    font-size:16px;
    border-radius:12px;
    cursor:pointer;
}

button:hover{
    background:#1d4ed8;
}

.result-card{
    margin-top:25px;
    background:white;
    border-radius:20px;
    padding:25px;
    text-align:left;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.result-card h2{
    margin-bottom:15px;
}

.port-badge{
    display:inline-block;
    background:#dbeafe;
    color:#1d4ed8;
    padding:8px 14px;
    border-radius:999px;
    font-weight:600;
    margin-bottom:15px;
}

.supported{
    padding:60px 0;
}

.supported h2{
    text-align:center;
    margin-bottom:30px;
}

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

.make-grid span{
    background:white;
    padding:15px;
    text-align:center;
    border-radius:12px;
    border:1px solid #e2e8f0;
}

footer{
    padding:40px 0;
    text-align:center;
    color:#64748b;
}

.result-card{
    background:white;
    border-radius:20px;
    padding:30px;
    margin-top:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.result-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    flex-wrap:wrap;
    gap:15px;
}

.truck-title{
    font-size:32px;
    font-weight:700;
}

.truck-subtitle{
    color:#64748b;
    margin-top:4px;
}

.port-tag{
    background:#2563eb;
    color:white;
    padding:10px 18px;
    border-radius:999px;
    font-weight:600;
}

.detail-row{
    display:flex;
    justify-content:space-between;
    padding:15px 0;
    border-bottom:1px solid #e2e8f0;
}

.detail-row:last-of-type{
    border-bottom:none;
}

.recommendation-box{
    margin-top:25px;
    background:#eff6ff;
    border:1px solid #bfdbfe;
    padding:20px;
    border-radius:14px;
}

.recommendation-box strong{
    display:block;
    margin-bottom:10px;
}

.recommendation-box p{
    margin:0;
    line-height:1.6;
}
