/*=====================================
PRIVACY POLICY PAGE
=====================================*/

.word-document-wrap{
    padding:30px;
    background:#f4f6f9;
    min-height:100vh;
}

/*=====================================
DOCUMENT PAPER
=====================================*/

.document-paper{
    background:#ffffff;
    max-width:950px;
    margin:auto;
    padding:70px;
    border-radius:12px;

    box-shadow:
    0 0 0 1px rgba(0,0,0,.04),
    0 15px 40px rgba(0,0,0,.08);

    position:relative;
}

/*=====================================
HEADER
=====================================*/

.doc-header{
    display:flex;
    justify-content:center;
    align-items:center;
    border-bottom:2px solid #e5e7eb;
    padding-bottom:25px;
    margin-bottom:40px;
}

.doc-logo img{
    max-height:80px;
    width:auto;
}

/*=====================================
TITLE
=====================================*/

.doc-title{
    text-align:center;
    font-size:42px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:40px;
    text-transform:uppercase;
    letter-spacing:2px;
    position:relative;
}

.doc-title::after{
    content:'';
    width:80px;
    height:4px;
    background:#ff6b00;
    display:block;
    margin:15px auto 0;
    border-radius:20px;
}

/*=====================================
SUB TITLE
=====================================*/

.doc-sub-title{
    font-size:28px;
    font-weight:bold;
    color:#0f172a;
    margin-bottom:20px;
    letter-spacing: 1px;
}

/*=====================================
CONTENT
=====================================*/

.doc-content p{
    font-size:16px;
    line-height:1.9;
    color:#475569;
    margin-bottom:18px;
    text-align:justify;
    font-weight: 500;
    letter-spacing: 1px;
}

.doc-content ul{
    padding-left:22px;
    margin-bottom:20px;
}

.doc-content ul li{
    font-size:16px;
    color:#475569;
    line-height:1.9;
    margin-bottom:12px;
    font-weight: 500;
    letter-spacing: 1px;
}

.doc-content ul li strong{
    font-weight:700;
    color:#0f172a;
    letter-spacing: 1px;
}
/*=====================================
SECTIONS
=====================================*/

.doc-section{
    margin-bottom:35px;
    padding-bottom:25px;
    border-bottom:1px solid #edf2f7;
}

.doc-section:last-child{
    border-bottom:none;
}

.doc-section h3{
    font-size:22px;
    color:#0f172a;
    margin-bottom:15px;
    font-weight:700;
    letter-spacing: 1px;
}

/*=====================================
CONTACT NOTE
=====================================*/

.contact-note{
    background:linear-gradient(
    135deg,
    #f8fafc,
    #ffffff
    );

    border-left:5px solid #ff6b00;

    padding:25px;
    border-radius:10px;
    margin-top:40px !important;

    font-size:16px;
    line-height:1.9;
}

.contact-note strong{
    display:block;
    font-size:22px;
    margin-bottom:10px;
    color:#0f172a;
}

/*=====================================
PRINT EFFECT
=====================================*/

.document-paper::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:8px;
    /* background:linear-gradient(
    90deg,
    #ff6b00,
    #2563eb
    ); */
    border-radius:12px 12px 0 0;
}

/*=====================================
SCROLL ANIMATION
=====================================*/

.document-paper{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*=====================================
TABLE STYLE
=====================================*/

.version-control-table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

.version-control-table th,
.version-control-table td{
    border:1px solid #d1d5db;
    padding:12px;
    text-align:left;
}

.version-control-table th{
    background:#f8fafc;
    font-weight:700;
}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:991px){

    .word-document-wrap{
        padding:150px 15px 80px;
    }

    .document-paper{
        padding:50px;
    }

    .doc-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .word-document-wrap{
        padding:130px 10px 60px;
    }

    .document-paper{
        padding:30px 20px;
    }

    .doc-logo img{
        max-height:60px;
    }

    .doc-title{
        font-size:28px;
        letter-spacing:1px;
    }

    .doc-sub-title{
        font-size:22px;
    }

    .doc-section h3{
        font-size:18px;
    }

    .doc-content p,
    .doc-content li{
        font-size:15px;
        line-height:1.8;
    }

    .contact-note{
        padding:20px;
    }

    .contact-note strong{
        font-size:18px;
    }

}