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

body{
font-family:Arial,Helvetica,sans-serif;
background:#f5f7fa;
color:#1e293b;
line-height:1.5;
}

.container{
max-width:1200px;
margin:30px auto;
background:#ffffff;
padding:30px;
border-radius:8px;
box-shadow:0 5px 25px rgba(0,0,0,.08);
}

header{
text-align:center;
margin-bottom:30px;
}

.logo-container{
margin-bottom:20px;
}

.logo-container img{
max-width:350px;
height:auto;
}

.language-switch{
display:flex;
justify-content:center;
gap:10px;
margin-bottom:20px;
}

.lang-btn{
border:1px solid #d1d5db;
background:#fff;
padding:10px 16px;
cursor:pointer;
border-radius:4px;
font-size:15px;
transition:.3s;
}

.lang-btn:hover{
background:#f3f4f6;
}

.lang-btn.active{
background:#003e6b;
color:#fff;
border-color:#003e6b;
}

h1{
font-size:28px;
color:#003e6b;
margin-bottom:15px;
}

.section{
margin-bottom:35px;
}

.section h2{
background:#003e6b;
color:#fff;
padding:12px 15px;
font-size:18px;
margin-bottom:20px;
}

.grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.full-width{
grid-column:1 / -1;
}

label{
display:block;
font-weight:600;
margin-bottom:6px;
}

input,
textarea,
select{
width:100%;
padding:12px;
border:1px solid #cbd5e1;
border-radius:4px;
font-size:15px;
background:#fff;
}

input:focus,
textarea:focus{
outline:none;
border-color:#00a651;
box-shadow:0 0 0 3px rgba(0,166,81,.15);
}

.service-table{
width:100%;
border-collapse:collapse;
margin-top:10px;
}

.service-table th{
background:#003e6b;
color:#fff;
padding:12px;
text-align:left;
font-size:15px;
}

.service-table td{
border:1px solid #dbe3ea;
padding:12px;
vertical-align:top;
}

.service-table tbody tr:nth-child(even){
background:#fafafa;
}

.inline-fields{
display:flex;
gap:10px;
}

.inline-fields input{
flex:1;
}

.total-section{
background:#f8fafc;
border:2px solid #003e6b;
padding:20px;
}

.totals-box{
max-width:500px;
margin-left:auto;
}

.total-row{
display:flex;
justify-content:space-between;
padding:10px 0;
font-size:18px;
border-bottom:1px solid #e5e7eb;
}

.grand-total{
font-size:24px;
font-weight:bold;
color:#00a651;
}

.submit-section{
text-align:center;
}

.submit-btn{
background:#00a651;
color:#fff;
border:none;
padding:16px 40px;
font-size:18px;
font-weight:bold;
cursor:pointer;
border-radius:5px;
transition:.3s;
}

.submit-btn:hover{
background:#008943;
}

.notice{
margin-top:15px;
font-size:14px;
color:#64748b;
}

.terms{
padding:15px;
background:#f8fafc;
border:1px solid #e2e8f0;
}

.terms label{
display:flex;
gap:10px;
align-items:flex-start;
}

.terms input{
width:auto;
margin-top:4px;
}

.honeypot{
display:none !important;
}

footer{
margin-top:40px;
padding-top:20px;
border-top:1px solid #e5e7eb;
text-align:center;
font-size:14px;
color:#64748b;
}

.contact-box{
margin-top:20px;
text-align:center;
line-height:1.8;
}

.contact-box strong{
color:#003e6b;
}

@media(max-width:900px){

.grid{
grid-template-columns:1fr;
}

.inline-fields{
flex-direction:column;
}

.logo-container img{
max-width:250px;
}

h1{
font-size:22px;
}

.section h2{
font-size:16px;
}

.service-table{
display:block;
overflow-x:auto;
}

.container{
padding:20px;
margin:10px;
}

.submit-btn{
width:100%;
}

}

@media print{

body{
background:white;
}

.language-switch,
.submit-btn{
display:none;
}

.container{
box-shadow:none;
border:none;
margin:0;
padding:0;
max-width:100%;
}

.section{
page-break-inside:avoid;
}

}