*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f8f9fa;
color:#333;
line-height:1.7;
}

.logo-container{
text-align:center;
margin-bottom:15px;
}

.logo{
max-width:280px;
width:100%;
height:auto;
display:block;
margin:0 auto 15px;
}

header{
background:#0d6efd;
color:#fff;
text-align:center;
padding:20px;
}

header h1{
margin-bottom:10px;
font-size:36px;
}

header p{
margin-bottom:10px;
}

nav{
margin-top:15px;
}

nav a{
color:#fff;
text-decoration:none;
margin:0 10px;
font-weight:600;
}

nav a:hover{
text-decoration:underline;
}

main{
max-width:1200px;
margin:30px auto;
padding:0 20px;
}

section{
background:#fff;
padding:25px;
margin-bottom:25px;
border-radius:10px;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

section h2{
color:#0d6efd;
margin-bottom:15px;
}

p{
margin-bottom:15px;
}

ul,
ol{
margin-left:20px;
margin-top:10px;
}

li{
margin-bottom:8px;
}

.business-transparency{
background:#ffffff;
}

.disclaimer-section{
background:#fff3cd;
}

.contact-box{
background:#eef5ff;
border-left:5px solid #0d6efd;
padding:20px;
border-radius:5px;
}

.disclaimer{
background:#fff3cd;
border-left:5px solid #ffc107;
padding:15px;
margin-top:15px;
border-radius:5px;
}

.btn{
display:inline-block;
background:#0d6efd;
color:#fff;
padding:12px 25px;
text-decoration:none;
border-radius:5px;
margin-top:15px;
font-weight:600;
}

.btn:hover

footer{
background:#212529;
color:#fff;
text-align:center;
padding:30px 20px;
}

footer h3{
margin-bottom:10px;
}

footer p{
margin-bottom:10px;
}

footer a{
color:#fff;
text-decoration:none;
margin:0 8px;
}

footer a:hover{
text-decoration:underline;
}

@media(max-width:768px){

```
header{
    padding:15px;
}

header h1{
    font-size:28px;
}

section{
    padding:20px;
}

h2{
    font-size:22px;
}

nav a{
    display:block;
    margin:8px 0;
}

.logo{
    max-width:200px;
}
```

}
/* Footer */
footer{
    background:#212529;
    color:#ffffff;
    padding:40px 20px;
    text-align:center;
    margin-top:40px;
}

footer h3{
    color:#ffffff;
    margin-bottom:15px;
    font-size:24px;
}

footer p{
    margin-bottom:10px;
    color:#dddddd;
}

footer nav{
    margin:20px 0;
}

footer nav a{
    color:#ffffff;
    text-decoration:none;
    padding:0 8px;
    font-weight:500;
}

footer nav a:hover{
    color:#0d6efd;
    text-decoration:underline;
}

footer .copyright{
    margin-top:20px;
    padding-top:15px;
    border-top:1px solid rgba(255,255,255,0.2);
    font-size:14px;
    color:#bbbbbb;
}

/* FAQ Section */

.faq-section{
    margin-bottom:30px;
}

.faq-item{
    margin-bottom:20px;
    padding:20px;
    background:#fff;
    border-left:4px solid #0d6efd;
    border-radius:6px;
}

.faq-item h3{
    color:#0d6efd;
    margin-bottom:10px;
    font-size:20px;
}

.faq-item p{
    margin:0;
}

.header-contact {
    margin: 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.header-contact a {
    text-decoration: none;
	color: #fff;
}

.footer-contact {
    margin: 20px 0;
}

.footer-contact p {
    margin: 10px 0;
}

.footer-contact a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    word-break: break-word;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.sticky-contact-buttons {
    position: fixed;
    bottom: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.sticky-contact-buttons a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}

.sticky-contact-buttons a:hover {
    transform: scale(1.05);
}

.call-btn {
    background: #007bff;
}

.whatsapp-btn {
    background: #25D366;
}

@media (max-width: 768px) {
    .sticky-contact-buttons {
        bottom: 10px;
        right: 10px;
    }

    .sticky-contact-buttons a {
        font-size: 14px;
        padding: 10px 15px;
    }
}

