﻿ 

.about-page {
    margin: 0 auto;
    padding: 0 16px 32px;
}


.top-navbar {
    height: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000;
}
.nav-title {
    font-size: 20px;
    font-weight: 700;
}
.legal-banner {
    background: linear-gradient(90deg,#5c3c0a 0%, #1a1207 25%, #000 70%);
    min-height: 175px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,184,77,.2);
}

    .legal-banner::before {
        content: "";
        position: absolute;
        left: -60px;
        top: -30px;
        width: 170px;
        height: 170px;
        background: rgba(255,184,77,.08);
        border-radius: 50%;
    }

    .legal-banner h2 {
        font-size: 22px;
        font-weight: 700;
        color: #fff;
    }

    .legal-banner p {
        font-size: 14px;
        color: #d0d0d0;
        line-height: 1.8;
        max-width: 500px;
    }
.back-btn {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* Cards */
.legal-card {
    background: #050505;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
    overflow: hidden;
}

.legal-item {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: .3s;
}

    .legal-item:hover {
        background: #0d0d0d;
        color: #fff;
    }

    .legal-item + .legal-item {
        border-top: 1px solid rgba(255,255,255,.08);
    }

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,184,77,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a14a;
    font-size: 24px;
}

.item-title {
    font-size: 14px;
    font-weight: 600;
    margin-left: 15px;
}

.arrow {
    color: #bdbdbd;
    font-size: 16px;
}

@media(max-width:768px) {
   
    .legal-banner h2 {
        padding-top: 25px;
        font-size: 18px;
    }
    .legal-banner p {
        font-size: 12px;
    }

    .item-title {
        font-size: 12px;
    }
    .legal-banner {
        background: linear-gradient(90deg,#5c3c0a 0%, #1a1207 25%, #000 70%);
        min-height: 130px;
        position: relative;
        overflow: hidden;
        border-top: 1px solid rgba(255,184,77,.2);
    }
    .legal-card {
        margin-left: -3px;
        margin-right: -3px;
    }
}