:root{

    --about-width:1100px;

    --about-radius:16px;

    --about-padding:48px;

    --about-border:#E5E7EB;

    --about-bg:#FFFFFF;

    --about-text:#1F2937;

    --about-muted:#6B7280;

}

.about-page{

    min-height:100vh;

    padding:80px 20px;

    border-radius:14px;

    overflow:hidden;

    display:flex;

    justify-content:center;

    align-items:flex-start;

    background:
        radial-gradient(circle at top right,#DDF7F6 0%,transparent 30%),
        radial-gradient(circle at bottom left,#EAF6FF 0%,transparent 35%),
        var(--signin-background);

}

.about-wrapper{

    width:min(100%,var(--about-width));

}

.about-card{

    position:relative;

    overflow:hidden;

    background:var(--about-bg);

    border:1px solid var(--about-border);

    border-radius:var(--about-radius);

    padding:var(--about-padding);

    box-shadow:
        0 20px 60px rgba(15,23,42,.08),
        0 5px 12px rgba(15,23,42,.04);

}

.about-card::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    top:-120px;

    right:-120px;

    border-radius:50%;

    background:rgba(10,147,150,.08);

}

.about-card::after{

    content:"";

    position:absolute;

    width:170px;

    height:170px;

    left:-90px;

    bottom:-90px;

    border-radius:50%;

    background:rgba(56,189,248,.08);

}

.about-header{

    text-align:center;

    margin-bottom:45px;

}

.about-icon{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--brand-gradient);

    color:#fff;

    font-size:28px;

}

.about-header h1{

    margin-top:22px;

    font-size:2rem;

    color:var(--primary);

    font-weight:700;

}

.about-subtitle{

    color:var(--about-muted);

    margin-top:10px;

}

.about-card h5{

    margin-top:35px;

    margin-bottom:15px;

    color:var(--primary);

    font-size:1.2rem;

}

.about-card p{

    color:var(--about-text);

    line-height:1.9;

}

.about-card ul{

    padding-left:25px;

}

.about-card li{

    margin-bottom:10px;

    line-height:1.8;

}

.about-card hr{

    margin:35px 0;

    border:none;

    border-top:1px solid #E5E7EB;

}

@media (min-width:1200px){

    :root{

        --about-width:1100px;

        --about-padding:50px;

    }

}

@media (max-width:1199.98px){

    :root{

        --about-width:760px;

        --about-padding:30px;

        --about-radius:22px;

    }

    .about-header h1{

        font-size:1.7rem;

    }

}
