/* =========================================================
UNIQUE LEGAL PAGE DESIGN
GOOGLE ADSENSE FRIENDLY UI
ANTI DUPLICATE TEMPLATE STYLE
========================================================= */

.page-wrapper{
    padding:40px 0 70px;
    background:
    linear-gradient(180deg,#eef4ff 0%,#f8fbff 100%);
}

/* =========================================================
MAIN CONTAINER
========================================================= */

.article-card{
    background:#ffffff;
    border-radius:28px;
    padding:45px;
    box-shadow:
    0 10px 40px rgba(14,30,70,.08);
    border:1px solid #edf1f7;
    overflow:hidden;
    position:relative;
}

/* UNIQUE FLOAT SHAPE */

.article-card::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:320px;
    height:320px;
    background:
    radial-gradient(circle,
    rgba(99,102,241,.08),
    transparent 70%);
    border-radius:50%;
}

.article-card::after{
    content:"";
    position:absolute;
    bottom:-120px;
    left:-120px;
    width:260px;
    height:260px;
    background:
    radial-gradient(circle,
    rgba(236,72,153,.07),
    transparent 70%);
    border-radius:50%;
}

/* =========================================================
BREADCRUMB
========================================================= */

.breadcrumb-box{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:25px;
    font-size:14px;
    font-weight:600;
}

.breadcrumb-box a{
    color:#4f46e5;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb-box a:hover{
    color:#ec4899;
}

.breadcrumb-box span{
    color:#7b8794;
}

/* =========================================================
TITLE
========================================================= */

.article-title{
    font-size:54px;
    line-height:1.08;
    font-weight:900;
    margin-bottom:28px;
    color:#0f172a;
    letter-spacing:-1px;
    max-width:900px;
}

/* =========================================================
DESCRIPTION
========================================================= */

.article-description{
    font-size:22px;
    line-height:2;
    color:#475569;
    margin-bottom:42px;
    max-width:1100px;
}

/* =========================================================
HERO BOX
========================================================= */

.hero-box{
    background:
    linear-gradient(135deg,
    #07122f 0%,
    #172554 55%,
    #312e81 100%);
    border-radius:30px;
    padding:45px;
    margin-bottom:50px;
    position:relative;
    overflow:hidden;
    box-shadow:
    0 20px 50px rgba(15,23,42,.25);
}

/* UNIQUE OVERLAY */

.hero-box::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:340px;
    height:340px;
    border-radius:50%;
    background:
    radial-gradient(circle,
    rgba(255,255,255,.08),
    transparent 70%);
}

.hero-box::after{
    content:"";
    position:absolute;
    bottom:-120px;
    left:-120px;
    width:280px;
    height:280px;
    border-radius:50%;
    background:
    radial-gradient(circle,
    rgba(168,85,247,.18),
    transparent 70%);
}

/* =========================================================
HERO CONTENT
========================================================= */

.hero-content{
    position:relative;
    z-index:2;
}

.hero-content h2{
    font-size:40px;
    line-height:1.2;
    margin-bottom:22px;
    font-weight:800;
    color:#ffffff;
}

.hero-content p{
    font-size:18px;
    line-height:2;
    color:rgba(255,255,255,.86);
    margin-bottom:25px;
}

.hero-content ul{
    margin:0;
    padding-left:20px;
}

.hero-content ul li{
    color:#e0e7ff;
    margin-bottom:14px;
    font-size:16px;
}

/* =========================================================
BUTTONS
========================================================= */

.hero-btn,
.download-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:
    linear-gradient(135deg,
    #ec4899,
    #7c3aed);
    color:#fff;
    padding:15px 32px;
    border-radius:60px;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    transition:.35s;
    border:none;
    box-shadow:
    0 10px 25px rgba(124,58,237,.25);
}

.hero-btn:hover,
.download-btn:hover{
    transform:translateY(-3px) scale(1.02);
    color:#fff;
    box-shadow:
    0 16px 35px rgba(124,58,237,.35);
}

/* =========================================================
HERO IMAGE
========================================================= */

.hero-image{
    position:relative;
    z-index:2;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:340px;
    border-radius:18px;
    background:#fff;
    padding:12px;
    border:4px solid rgba(255,255,255,.18);
    box-shadow:
    0 25px 45px rgba(0,0,0,.35);
    transition:.4s;
}

.hero-image img:hover{
    transform:translateY(-8px) rotate(-1deg);
}

/* =========================================================
HEADINGS
========================================================= */

.content-heading{
    font-size:34px;
    line-height:1.4;
    font-weight:800;
    margin-top:55px;
    margin-bottom:22px;
    color:#111827;
    position:relative;
    padding-left:22px;
}

.content-heading::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:8px;
    height:36px;
    border-radius:20px;
    background:
    linear-gradient(180deg,
    #2563eb,
    #7c3aed);
}

/* =========================================================
TEXT
========================================================= */

.content-text{
    font-size:18px;
    line-height:2.05;
    color:#374151;
    margin-bottom:25px;
}

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

.custom-list{
    padding-left:22px;
    margin-bottom:30px;
}

.custom-list li{
    margin-bottom:14px;
    color:#1f2937;
    font-size:17px;
    line-height:1.9;
}

/* =========================================================
INFO GRID
========================================================= */

.info-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(240px,1fr));
    gap:24px;
    margin-top:40px;
}

/* =========================================================
INFO CARD
========================================================= */

.info-card{
    background:#ffffff;
    border-radius:24px;
    padding:30px;
    border:1px solid #e5e7eb;
    position:relative;
    overflow:hidden;
    transition:.35s;
    box-shadow:
    0 8px 25px rgba(15,23,42,.05);
}

.info-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:
    linear-gradient(90deg,
    #2563eb,
    #7c3aed,
    #ec4899);
}

.info-card:hover{
    transform:translateY(-8px);
    box-shadow:
    0 20px 40px rgba(15,23,42,.12);
}

.info-icon{
    width:68px;
    height:68px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    background:
    linear-gradient(135deg,
    #4f46e5,
    #7c3aed);
    color:#fff;
    font-size:28px;
}

.info-card h3{
    font-size:24px;
    margin-bottom:16px;
    color:#111827;
    font-weight:800;
}

.info-card p{
    font-size:16px;
    line-height:1.9;
    color:#4b5563;
}

/* =========================================================
LEGAL BOX
========================================================= */

.legal-box{
    background:
    linear-gradient(135deg,
    #fff7ed,
    #fff1f2);
    border-left:6px solid #f97316;
    padding:34px;
    border-radius:22px;
    margin-top:50px;
    margin-bottom:50px;
}

.legal-box h2{
    font-size:30px;
    margin-bottom:18px;
    font-weight:800;
    color:#9a3412;
}

.legal-box p{
    font-size:17px;
    line-height:2;
    color:#7c2d12;
}

/* =========================================================
DOWNLOAD BOX
========================================================= */

.download-box{
    background:
    linear-gradient(135deg,
    #1d4ed8,
    #6d28d9);
    border-radius:30px;
    padding:45px;
    margin-top:60px;
    text-align:center;
    position:relative;
    overflow:hidden;
    box-shadow:
    0 20px 45px rgba(79,70,229,.28);
}

.download-box::before{
    content:"";
    position:absolute;
    right:-90px;
    top:-90px;
    width:220px;
    height:220px;
    border-radius:50%;
    background:
    rgba(255,255,255,.08);
}

.download-box h2{
    font-size:40px;
    color:#fff;
    margin-bottom:18px;
    font-weight:900;
}

.download-box p{
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:1.9;
    margin-bottom:25px;
}

/* =========================================================
FAQ
========================================================= */

.faq-box{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:22px;
    padding:28px;
    margin-bottom:20px;
    transition:.3s;
    box-shadow:
    0 6px 18px rgba(15,23,42,.04);
}

.faq-box:hover{
    transform:translateY(-4px);
    box-shadow:
    0 15px 30px rgba(15,23,42,.08);
}

.faq-box h3{
    font-size:22px;
    margin-bottom:14px;
    color:#111827;
    font-weight:800;
}

.faq-box p{
    font-size:16px;
    line-height:1.9;
    color:#4b5563;
}

/* =========================================================
AUTHOR BOX
========================================================= */

.author-box{
    margin-top:60px;
    padding-top:25px;
    border-top:2px dashed #d1d5db;
}

.author-box h4{
    font-size:24px;
    margin-bottom:10px;
    font-weight:800;
    color:#111827;
}

.author-box p{
    color:#6b7280;
    font-size:15px;
}

/* =========================================================
RELATED LINKS
========================================================= */

.related-links-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(230px,1fr));
    gap:18px;
    margin-top:30px;
}

.related-link{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:20px;
    text-decoration:none;
    color:#111827;
    font-weight:700;
    transition:.3s;
    display:flex;
    align-items:center;
    gap:12px;
}

.related-link:hover{
    background:#eef2ff;
    color:#4f46e5;
    transform:translateY(-3px);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:991px){

.article-card{
    padding:28px;
}

.article-title{
    font-size:42px;
}

.hero-box{
    padding:30px;
}

.hero-content h2{
    font-size:32px;
}

.download-box h2{
    font-size:32px;
}

}

@media(max-width:767px){

.page-wrapper{
    padding:20px 0 50px;
}

.article-card{
    padding:20px;
    border-radius:22px;
}

.article-title{
    font-size:32px;
    line-height:1.2;
}

.article-description{
    font-size:17px;
    line-height:1.9;
}

.hero-box{
    padding:24px;
    border-radius:24px;
}

.hero-content h2{
    font-size:26px;
}

.hero-content p{
    font-size:16px;
}

.hero-image img{
    margin-top:25px;
    max-width:260px;
}

.content-heading{
    font-size:25px;
}

.content-text{
    font-size:16px;
}

.custom-list li{
    font-size:15px;
}

.download-box{
    padding:30px 22px;
}

.download-box h2{
    font-size:26px;
}

.download-box p{
    font-size:16px;
}

.hero-btn,
.download-btn{
    width:100%;
    justify-content:center;
}

}