/* =====================================================
   PRIVACY POLICY – GLASSMORPHISM (FINAL STABLE)
   AVM NETWORKS LIMITED
===================================================== */

.privacy-page {
    min-height: auto;
    padding: 110px 16px 70px 16px;
    display: block;
}

/* MAIN LEGAL CONTAINER */
.privacy-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;

    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-radius: 18px;
    padding: 46px 42px;

    box-shadow: 0 22px 55px rgba(0,0,0,0.35);
    color: #E5E7EB;
}

/* Headings */
.privacy-container h1 {
    font-size: 32px;
    margin-bottom: 26px;
    letter-spacing: 0.4px;
}

.privacy-container h2 {
    font-size: 20px;
    margin-top: 38px;
    margin-bottom: 12px;
    color: #38BDF8;
}

/* Text */
.privacy-container p,
.privacy-container li {
    font-size: 14.8px;
    line-height: 1.8;
    color: #E5E7EB;
}

.privacy-container ul {
    padding-left: 22px;
    margin-top: 8px;
}

/* Links inside legal text */
.privacy-container a {
    color: #38BDF8;
    text-decoration: underline;
}

/* =====================================================
   CTA SECTION (SEPARATE FROM GLASS BOX)
===================================================== */

.legal-cta-wrapper{
    max-width:1200px;
    margin:80px auto 70px auto;
    padding:0 16px;
    display:flex;
    justify-content:center;
    position:relative;
}

/* separator glow line */
.legal-cta-wrapper::before{
    content:"";
    position:absolute;
    top:-35px;
    left:0;
    right:0;
    height:1px;
    background:linear-gradient(90deg,
        transparent,
        rgba(56,189,248,0.45),
        transparent
    );
}

/* CTA CARD */
.legal-cta-card{
    width:100%;
    max-width:920px;
    padding:42px 36px;
    border-radius:20px;

    background:linear-gradient(135deg,
        rgba(15,23,42,0.92),
        rgba(2,132,199,0.30)
    );

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border:1px solid rgba(255,255,255,0.14);
    box-shadow:0 18px 55px rgba(0,0,0,0.45);

    text-align:center;
}

/* CTA TEXT */
.legal-cta-card h2{
    color:#ffffff;
    font-size:26px;
    margin-bottom:14px;
}

.legal-cta-card p{
    color:#cbd5e1;
    line-height:1.7;
    margin-bottom:30px;
    font-size:16px;
}

/* BUTTON GROUP */
.legal-cta-buttons{
    display:flex;
    gap:14px;
    justify-content:center;
    flex-wrap:wrap;
}

/* BASE BUTTON */
.legal-btn{
    padding:13px 24px;
    border-radius:12px;
    font-weight:600;
    font-size:15px;
    text-decoration:none !important;
    transition:all .25s ease;
    display:inline-block;
}

/* CONTACT BUTTON */
.legal-btn.primary{
    background:#06b6d4;
    color:#02131f;
}
.legal-btn.primary:hover{
    background:#22d3ee;
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(34,211,238,0.35);
}

/* SERVICES BUTTON */
.legal-btn.secondary{
    background:rgba(255,255,255,0.08);
    color:#e2e8f0;
    border:1px solid rgba(255,255,255,0.20);
}
.legal-btn.secondary:hover{
    background:rgba(255,255,255,0.16);
}

/* NETWORK BUTTON */
.legal-btn.network{
    background:#0ea5e9;
    color:white;
}
.legal-btn.network:hover{
    background:#38bdf8;
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(56,189,248,0.35);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width:768px){

    .privacy-container{
        padding:30px 24px;
    }

    .privacy-container h1{
        font-size:25px;
    }

    .privacy-container h2{
        font-size:17.5px;
    }

    .privacy-container p,
    .privacy-container li{
        font-size:14.4px;
    }

    .legal-cta-card{
        padding:28px 20px;
    }

    .legal-cta-card h2{
        font-size:22px;
    }
}

/* ====== FORCE CTA TO ACT AS NORMAL BLOCK (override global section styles) ====== */

section.legal-cta-wrapper{
    width:100% !important;
    background:transparent !important;
    padding:0 16px !important;
    margin:80px auto 70px auto !important;
    display:flex !important;
    justify-content:center !important;
    align-items:center;
    min-height:auto !important;
}

/* prevent global section overlay */
section.legal-cta-wrapper::after,
section.legal-cta-wrapper::before{
    pointer-events:none;
}

/* ensure card visible */
.legal-cta-card{
    position:relative;
    z-index:5;
}

/* fix anchor override from global css */
.legal-cta-card a{
    text-decoration:none !important;
}

/* stop container stretching */
.legal-cta-card{
    flex:0 1 920px;
}