body{

margin:0;

font-family:Arial,sans-serif;

background:#f6f8fb;

}

.agent-cover{

height:220px;

background:linear-gradient(135deg,#2563eb,#1d4ed8);

border-radius:0 0 25px 25px;

}

.agent-box{

max-width:1200px;

margin:auto;

margin-top:-80px;

background:#fff;

border-radius:20px;

padding:25px;

box-shadow:0 6px 20px rgba(0,0,0,.08);

}

.agent-top{

display:flex;

gap:25px;

align-items:center;

flex-wrap:wrap;

}

.agent-photo{

width:120px;

height:120px;

border-radius:50%;

object-fit:cover;

border:5px solid #fff;

box-shadow:0 5px 15px rgba(0,0,0,.2);

}

.agent-name{

font-size:28px;

font-weight:bold;

}

.agent-location{

margin-top:8px;

color:#666;

}

.agent-rating{

margin-top:8px;

color:#f59e0b;

font-weight:bold;

}

.verified-badge{

background:#16a34a;

color:#fff;

padding:4px 10px;

border-radius:20px;

font-size:11px;

margin-left:10px;

}

.agent-stats{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

margin:30px 0;

text-align:center;

}

.agent-stats div{

background:#f8fafc;

padding:20px;

border-radius:15px;

}

.agent-buttons{

display:flex;

gap:15px;

flex-wrap:wrap;

margin-bottom:35px;

}

.agent-buttons a,

.agent-buttons button{

padding:12px 18px;

border:none;

border-radius:10px;

text-decoration:none;

cursor:pointer;

font-weight:bold;

}

.btn-call{

background:#16a34a;

color:#fff;

}

.btn-chat{

background:#2563eb;

color:#fff;

}

.btn-web{

background:#7c3aed;

color:#fff;

}

.btn-share{

background:#0f172a;

color:#fff;

}

.section-title{

margin:35px 0 20px;

}

.property-grid{

display:grid;

grid-template-columns:repeat(auto-fill,minmax(260px,1fr));

gap:20px;

}

.property-card{

background:#fff;

border-radius:15px;

overflow:hidden;

text-decoration:none;

color:#111;

box-shadow:0 4px 15px rgba(0,0,0,.08);

}

.property-card img{

width:100%;

height:200px;

object-fit:cover;

}

.property-title{

padding:12px;

font-weight:bold;

}

.property-price{

padding:0 12px;

color:#16a34a;

font-size:20px;

font-weight:bold;

}

.property-location{

padding:12px;

color:#666;

}

@media(max-width:768px){

.agent-stats{

grid-template-columns:1fr;

}

.agent-buttons{

display:grid;

grid-template-columns:repeat(2,1fr);

}

.property-grid{

grid-template-columns:1fr;

}

}