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

body{

font-family:'Inter',sans-serif;
background:#f6f8fb;
color:#2b2b2b;
line-height:1.8;

}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

.container{

width:min(1180px,92%);
margin:auto;

}

.about-hero{

padding:90px 0;
background:linear-gradient(135deg,#0B6EF3,#1C89FF);
color:#fff;

}

.about-grid{

display:grid;
grid-template-columns:520px 1fr;
gap:70px;
align-items:center;

}

.about-image{

background:#fff;
padding:12px;
border-radius:24px;
box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.about-image img{

width:100%;
height:auto;
border-radius:18px;

}

.owner-badge{

display:inline-flex;
align-items:center;
gap:10px;
padding:10px 18px;
background:rgba(255,255,255,.15);
backdrop-filter:blur(15px);
border-radius:50px;
font-weight:600;
margin-bottom:25px;

}

.owner-badge span{

font-size:20px;

}

.about-content h1{

font-size:48px;
font-weight:800;
line-height:1.2;
margin-bottom:20px;

}

.about-content h1 strong{

color:#FFD54A;

}

.about-content p{

font-size:18px;
opacity:.95;
margin-bottom:22px;

}

.owner-box{

margin-top:35px;
padding:25px;
background:#fff;
color:#222;
border-radius:18px;

}

.owner-box h2{

font-size:28px;
margin-bottom:8px;

}

.owner-box small{

display:block;
color:#0B6EF3;
font-weight:700;
margin-bottom:15px;

}

.owner-box p{

color:#555;
margin:0;

}

@media(max-width:900px){

.about-grid{

grid-template-columns:1fr;
gap:40px;

}

.about-content{

order:2;

}

.about-image{

order:1;

}

.about-content h1{

font-size:34px;

}

.about-content p{

font-size:16px;

}

}
.about-button{
margin-bottom: 50px;
margin-top:40px;
text-align: center;

}

.about-button a{

display:inline-block;

padding:16px 34px;

background:#0B6EF3;

color:#fff;

font-size:17px;

font-weight:700;

border-radius:50px;

transition:.3s;

box-shadow:0 15px 35px rgba(11,110,243,.25);

}

.about-button a:hover{

background:#0858c4;

transform:translateY(-3px);

box-shadow:0 20px 40px rgba(11,110,243,.35);

}

@media(max-width:768px){

.about-button a{

display:block;

width:100%;

text-align:center;

}

}