body {
    margin:0;
    font-family: Arial, sans-serif;
    background:#f5f5f5;
    color:#222;
}
.logo-container {
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:15px;
    max-width:1000px;
    margin:auto;
}


.section {
    max-width:1000px;
    margin:auto;
    padding:30px 20px;
}

.card {
    background:#ffffff;
    padding:25px;
    margin-bottom:20px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

h1 { margin:0; }
h2 { color:#cc8a00; }

.price-row {
    display:flex;
    justify-content:space-between;
    border-bottom:1px solid #eee;
    padding:6px 0;
}

.price {
    color:#cc8a00;
    font-weight:bold;
}

ul {
    padding-left:15px;
}

footer {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    background:#fff;
    border-top:1px solid #ddd;
    font-size:14px;
}

.footer-left a {
    text-decoration:none;
    color:#cc8a00;
    font-weight:bold;
}

.contact-form input,
.contact-form textarea {
    width:100%;
    padding:12px;
    margin-bottom:10px;
    border-radius:6px;
    border:1px solid #ccc;
}

.contact-form button {
    padding:12px;
    width:100%;
    background:#cc8a00;
    border:none;
    color:#fff;
    font-weight:bold;
    cursor:pointer;
}

.navbar {
    background:#ffffff;
    border-bottom:1px solid #ddd;
    padding:15px;
    display:flex;
    justify-content:center;
    gap:30px;
    position:sticky;
    top:0;
    z-index:1000;
}

.navbar a {
    text-decoration:none;
    color:#222;
    font-weight:bold;
}

.navbar a:hover {
    color:#cc8a00;
}
.header {
    background:#ffffff;
    border-bottom:1px solid #ddd;
    padding:20px 0;
}

.header-inner {
    max-width:1000px;
    margin:auto;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}


.logo-left {
    position:absolute;
    left:0;
}

.logo {
    height:100px;
}

@media (max-width: 768px) {
    .logo-left {
        display: none;
    }
}

.title-center {
    text-align:center;
}

* {
    box-sizing: border-box;
}
.smalltxt {
	margin-top:10px; 
	font-size:14px; 
	color:#666;
}
.whatsapp-btn {
    display: block;
    text-align: center;
    background: #25D366;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}




.grid {
	width: 100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.option {
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    text-align:center;
    cursor:pointer;
    background:#fafafa;
}

.option:hover {
    background:#25D366;
    color:#fff;
}

.step { display:none; }
.step.active { display:block; }

select, input, textarea {
    width:100%;
    padding:12px;
    margin-bottom:10px;
    border-radius:6px;
    border:1px solid #ccc;
}

button {
    width:100%;
    padding:12px;
    background:#25D366;
    color:#fff;
    border:none;
    border-radius:6px;
    transition:0.2s;
}

button:hover {
    background:#1ebe5d;
}

.back {
    background:#e53935;
    margin-top:8px;
}

.back:hover {
    background:#c62828;
}

