/* ================= ABOUT SECTION ================= */

.about{

padding:120px 80px;
background:white;

}

.about-container{

max-width:1200px;
margin:0 auto;

display:flex;
gap:80px;
align-items:center;

}


/* ================= LEFT GRID ================= */

.about-cards{

width:50%;

display:grid;

grid-template-columns:1fr 1fr;

gap:24px;

}

.about-card{

padding:32px;

border-radius:20px;

background:white;

border:1px solid #e5e7eb;

transition:.3s;

}

.about-card:hover{

transform:translateY(-6px);

box-shadow:
0 20px 40px rgba(0,0,0,0.06);

}

.about-card h3{

margin-top:18px;
margin-bottom:10px;

font-size:18px;
font-weight:600;

}

.about-card p{

color:#64748b;
line-height:1.6;

}


/* ================= ICONS ================= */

.about-icon{

width:48px;
height:48px;

border-radius:12px;

display:flex;
align-items:center;
justify-content:center;

}

.about-icon.purple{

background:#eef2ff;
color:#6366f1;

}

.about-icon.blue{

background:#eef2ff;
color:#4f46e5;

}

.about-icon.green{

background:#ecfdf5;
color:#10b981;

}

.about-icon.gray{

background:#f1f5f9;
color:#475569;

}


/* ================= RIGHT SIDE ================= */

.about-content{

width:50%;

}

.about-label{

color:#f97316;

font-size:13px;

font-weight:600;

letter-spacing:1px;

margin-bottom:16px;

}

.about-content h2{

font-size:48px;

line-height:1.2;

margin-bottom:20px;

}

.about-description{

color:#475569;

line-height:1.7;

margin-bottom:24px;

}


/* ================= LIST ================= */

.about-points{

list-style:none;

margin-bottom:24px;

}

.about-points li{

margin-bottom:12px;

position:relative;

padding-left:20px;

color:#475569;

}

.about-points li::before{

content:"";

position:absolute;

left:0;
top:8px;

width:8px;
height:8px;

border-radius:50%;

background:#6366f1;

}


/* ================= TAGS ================= */

.about-tags{

display:flex;

gap:12px;

flex-wrap:wrap;

margin-bottom:30px;

}

.about-tags span{

background:#f1f5f9;

padding:8px 14px;

border-radius:20px;

font-size:12px;

font-weight:600;

color:#475569;

}


/* ================= BUTTON ================= */

.about-btn{

margin-top:10px;

}