*{
margin:-1px;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#0b0f1a;
color:#fff;
}

.container{
max-width:1200px;
margin:auto;
padding:20px;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
flex-wrap:wrap;
gap:10px;
}

.logo{
font-size:24px;
font-weight:700;
color:#4da6ff;
}

/* BUTTON GROUPS */
.header-buttons,
.hero-buttons,
.contact-buttons{
display:flex;
gap:10px;
flex-wrap:wrap;
justify-content:center;   /* centers horizontally */
align-items:center;       /* keeps vertical alignment clean */
margin-top:20px;
}

/* EMAIL BUTTON */
.cta-btn{
background:#4da6ff;
padding:10px 20px;
border-radius:8px;
color:#fff;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.cta-btn:hover{
background:#1a8cff;
}

/* UPWORK BUTTON */
.upwork-btn{
background:#14a800;
padding:10px 20px;
border-radius:8px;
color:#fff;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.upwork-btn:hover{
background:#0e8c00;
}

.hero{
display:flex;
align-items:center;
justify-content:space-between;
margin-top:50px;
gap:30px;
}

.hero-text{
max-width:50%;
}

.hero-text h1{
font-size:28px;
line-height:1.3;
}

.hero-text p{
margin:20px 0;
color:#ccc;
}

.hero img{
width:45%;
border-radius:20px;
}

.section{
margin:80px 0;
text-align:center;
}

.section h2{
font-size:32px;
margin-bottom:20px;
}

.cards{
display:flex;
gap:20px;
justify-content:center;
margin-top:40px;
flex-wrap:wrap;
}

.card{
background:#141b2d;
padding:25px;
border-radius:15px;
width:300px;
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
}

.card h3{
margin-bottom:10px;
color:#4da6ff;
}

.price{
font-size:50px;
font-weight:700;
margin:20px 0;
color:#4da6ff;
}

.urgency{
color:#ff4d4d;
margin-top:10px;
}

footer{
text-align:center;
margin-top:80px;
color:#888;
}

/* RESPONSIVE */
@media(max-width:900px){

.hero{
flex-direction:column;
}

.hero-text{
max-width:100%;
text-align:center;
}

.hero img{
width:100%;
}

.header-buttons{
justify-content:center;
width:100%;
}

}
