*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f5f7fb;
color:#333;
line-height:1.6;
}

.container{
width:95%;
max-width:1200px;
margin:auto;
padding:20px 0;
}

/* Navbar */

.navbar{
background:#0d6efd;
padding:15px 0;
box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.navbar h2{
color:#fff;
}

/* Hero */

.hero{
background:linear-gradient(135deg,#0d6efd,#6610f2);
color:#fff;
padding:80px 20px;
text-align:center;
border-radius:0 0 20px 20px;
}

.hero h1{
font-size:42px;
margin-bottom:15px;
}

.hero p{
font-size:18px;
margin-bottom:25px;
}

/* Buttons */

.btn{
display:inline-block;
padding:12px 25px;
background:#28a745;
color:#fff;
text-decoration:none;
border:none;
border-radius:6px;
cursor:pointer;
font-weight:bold;
transition:.3s;
}

.btn:hover{
opacity:.9;
}

/* Sections */

.section{
padding:60px 0;
}

/* Cards */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

/* Pricing */

.pricing{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.price-box{
background:#fff;
padding:30px;
text-align:center;
border-radius:10px;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.price-box h3{
margin-bottom:15px;
}

.price-box h2{
color:#0d6efd;
margin-bottom:15px;
}

/* Forms */

input,
select,
textarea{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:6px;
outline:none;
margin-top:5px;
margin-bottom:15px;
}

input:focus,
select:focus,
textarea:focus{
border-color:#0d6efd;
}

/* Tables */

table{
width:100%;
border-collapse:collapse;
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

table th{
background:#0d6efd;
color:#fff;
padding:12px;
text-align:left;
}

table td{
padding:10px;
border:1px solid #eee;
}

/* Dashboard Status */

.status-pending{
background:#ffc107;
padding:5px 10px;
border-radius:5px;
}

.status-contacted{
background:#0dcaf0;
color:#fff;
padding:5px 10px;
border-radius:5px;
}

.status-completed{
background:#198754;
color:#fff;
padding:5px 10px;
border-radius:5px;
}

.payment-pending{
background:#dc3545;
color:#fff;
padding:5px 10px;
border-radius:5px;
}

.payment-submitted{
background:#fd7e14;
color:#fff;
padding:5px 10px;
border-radius:5px;
}

.payment-paid{
background:#198754;
color:#fff;
padding:5px 10px;
border-radius:5px;
}

/* Footer */

footer{
background:#111;
color:#fff;
padding:20px;
text-align:center;
margin-top:50px;
}

/* Mobile */

@media(max-width:768px){

.hero h1{
font-size:30px;
}

table{
display:block;
overflow-x:auto;
white-space:nowrap;
}

.btn{
width:100%;
text-align:center;
margin-bottom:10px;
}

}
.navbar{
background:#0d6efd;
padding:15px 0;
box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.navbar-flex{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo a{
color:#fff;
font-size:24px;
font-weight:bold;
text-decoration:none;
}

.menu a{
color:#fff;
text-decoration:none;
margin-left:20px;
font-weight:500;
}

.menu a:hover{
opacity:.8;
}

@media(max-width:768px){

.navbar-flex{
flex-direction:column;
gap:10px;
}

.menu a{
margin:0 8px;
}

}
.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
width:60px;
height:60px;
background:#25D366;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
text-decoration:none;
box-shadow:0 4px 10px rgba(0,0,0,.3);
z-index:9999;
}

.whatsapp-float:hover{
transform:scale(1.08);
transition:.3s;
}

footer{
background:#111;
color:#fff;
padding:25px 0;
text-align:center;
margin-top:50px;
}

footer p{
margin:0;
font-size:14px;
}