*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f5f7fb;
color:#222;
line-height:1.7;
overflow-x:hidden;
}

/* Header */

header{
position:sticky;
top:0;
z-index:999;
background:#ffffff;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
}

.logo-area{
display:flex;
align-items:center;
gap:10px;
}

.logo-area img{
width:45px;
height:45px;
border-radius:50%;
object-fit:cover;
}

.logo-area h2{
font-size:28px;
font-weight:700;
color:#0d6efd;
}

/* Menu */

.menu-btn{
font-size:30px;
cursor:pointer;
font-weight:bold;
}

#sidebar{
position:fixed;
top:0;
right:-300px;
width:280px;
height:100%;
background:#fff;
box-shadow:-5px 0 20px rgba(0,0,0,0.15);
transition:.4s;
padding-top:70px;
z-index:1000;
}

#sidebar a{
display:block;
padding:15px 25px;
text-decoration:none;
color:#333;
font-weight:600;
border-bottom:1px solid #eee;
transition:.3s;
}

#sidebar a:hover{
background:#0d6efd;
color:#fff;
}

.close-btn{
position:absolute;
top:15px;
right:20px;
font-size:30px;
cursor:pointer;
font-weight:bold;
}

/* Hero */

.hero{
padding:20px;
text-align:center;
}

.hero img{
width:100%;
max-width:1200px;
border-radius:20px;
box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

/* Buttons */

.buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
padding:30px 20px;
}

.btn{
background:#0d6efd;
color:#fff;
text-decoration:none;
padding:14px 28px;
font-size:18px;
font-weight:700;
border-radius:10px;
transition:.3s;
}

.btn:hover{
transform:translateY(-3px);
background:#084298;
}

/* Content */

.content{
max-width:1200px;
margin:auto;
padding:20px;
}

.content h1{
font-size:38px;
margin-bottom:15px;
color:#0d6efd;
}

.content h2{
margin-top:35px;
margin-bottom:12px;
font-size:28px;
color:#111;
border-left:5px solid #0d6efd;
padding-left:10px;
}

.content p{
font-size:17px;
margin-bottom:15px;
text-align:justify;
}

/* Highlight Box */

.info-box{
background:#fff;
padding:20px;
margin:20px 0;
border-radius:12px;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

/* Footer */

footer{
margin-top:50px;
background:#111827;
color:#fff;
text-align:center;
padding:40px 20px;
}

footer h3{
font-size:30px;
margin-bottom:10px;
}

footer p{
margin:10px 0;
}

.footer-links{
margin:20px 0;
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.footer-links a{
color:#fff;
text-decoration:none;
padding:10px 18px;
border:1px solid rgba(255,255,255,0.2);
border-radius:8px;
transition:.3s;
}

.footer-links a:hover{
background:#0d6efd;
border-color:#0d6efd;
}

/* Table */

table{
width:100%;
border-collapse:collapse;
margin:20px 0;
background:#fff;
}

table th{
background:#0d6efd;
color:#fff;
padding:12px;
}

table td{
padding:12px;
border:1px solid #ddd;
}

/* FAQ */

.faq-item{
background:#fff;
padding:18px;
margin-bottom:15px;
border-radius:10px;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.faq-item h3{
margin-bottom:10px;
color:#0d6efd;
}

/* Contact Form */

.contact-form{
background:#fff;
padding:25px;
border-radius:15px;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:14px;
margin-top:10px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:8px;
outline:none;
}

.contact-form button{
background:#0d6efd;
color:#fff;
border:none;
padding:14px 25px;
border-radius:8px;
font-size:16px;
cursor:pointer;
}

.contact-form button:hover{
background:#084298;
}

/* Scrollbar */

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-thumb{
background:#0d6efd;
border-radius:20px;
}

/* Responsive */

@media(max-width:768px){

.logo-area h2{
font-size:24px;
}

.content h1{
font-size:30px;
}

.content h2{
font-size:23px;
}

.btn{
width:100%;
max-width:320px;
text-align:center;
}

.hero{
padding:10px;
}

.hero img{
border-radius:12px;
}

}

@media(max-width:480px){

header{
padding:12px;
}

.logo-area img{
width:40px;
height:40px;
}

.logo-area h2{
font-size:22px;
}

.content{
padding:15px;
}

.content h1{
font-size:28px;
}

.content h2{
font-size:22px;
}

.content p{
font-size:16px;
}
.refer-box{
    text-align:center;
}

.copy-box{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:15px;
}

.telegram-btn{
    display:inline-block;
    background:#0088cc;
    color:#fff;
    text-decoration:none;
    padding:12px 30px;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.telegram-btn:hover{
    background:#0077b5;
}
}