*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
background:#f4f6f9;
}

.enquiry-wrapper{
display:flex;
justify-content:center;
align-items:center;
min-height:100vh;
padding:20px;
}

.enquiry-card{
background:white;
padding:40px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
width:100%;
max-width:520px;
}

.enquiry-card h2{
margin-bottom:25px;
}

.form-group{
display:flex;
flex-direction:column;
margin-bottom:18px;
}

.form-group label{
font-weight:600;
margin-bottom:6px;
}

.form-group input,
.form-group select,
.form-group textarea{
padding:12px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

textarea{
min-height:120px;
}

.send-btn{
background:#2e7d32;
color:white;
border:none;
padding:14px;
border-radius:8px;
font-size:15px;
cursor:pointer;
width:100%;
}

.send-btn:hover{
background:#1b5e20;
}

.success{
background:#d4edda;
color:#155724;
padding:10px;
margin-bottom:20px;
border-radius:6px;
}

.back-home{
margin-top:20px;
text-align:center;
}

.back-btn{
background:#2563eb;
color:white;
padding:10px 16px;
border-radius:6px;
text-decoration:none;
}

.back-btn:hover{
background:#1e40af;
}

@media(max-width:768px){

.enquiry-card{
padding:25px;
}

}

.phone-group{
display:flex;
gap:10px;
}

.phone-code{
width:180px;
padding:12px;
border:1px solid #ddd;
border-radius:6px;
background:white;
}

.phone-group input{
flex:1;
padding:12px;
border:1px solid #ddd;
border-radius:6px;
}