*{
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Inter, Helvetica, Arial, sans-serif;
color: #00202B;
background: #ffffff;
line-height: 1.6;
}

.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
}

.section {
padding: 80px 0;
}

.light {
background: #ededed;
}

/* HERO */

.hero {
padding: 100px 0;
}

.hero-grid {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 60px;
align-items: center;
}

/* TYPOGRAPHY */

h1 {
font-size: 42px;
line-height: 1.2;
margin-bottom: 20px;
color: #00202B;
}

h2 {
font-size: 32px;
text-align: center;
margin-bottom: 40px;
color: #00202B;
}

h4 {
font-size: 18px;
margin-bottom: 10px;
color: #00202B;
}

.subtext {
font-size: 18px;
color: #334d57;
margin-bottom: 16px;
}

.authority {
font-size: 14px;
color: #6b7c84;
margin-bottom: 32px;
}

/* CTA */

.btn-primary {
background: #2F9ABB;
color: #ffffff;
padding: 14px 32px;
text-decoration: none;
border-radius: 4px;
font-size: 15px;
font-weight: 600;
display: inline-block;
transition: background 0.2s ease;
}

.btn-primary:hover {
background: #2686a3;
}

.note {
display: block;
font-size: 13px;
color: #7d8c92;
margin-top: 10px;
}

/* CARDS & LISTS */

.hero-visual .card {
border: 1px solid #cecccc;
padding: 32px;
border-radius: 8px;
background: #f7f7f7;
}

.card ul,
.points {
list-style: none;
}

.card ul li,
.points li {
margin-bottom: 10px;
color: #334d57;
}

/* GRIDS */

.three-col,
.two-col {
display: grid;
gap: 40px;
}

.three-col {
grid-template-columns: repeat(3, 1fr);
}

.two-col {
grid-template-columns: repeat(2, 1fr);
}

/* SERVICES */

.service-card {
border: 1px solid #cecccc;
padding: 28px;
border-radius: 8px;
background: #ffffff;
}

.price {
font-weight: 600;
display: block;
margin-top: 10px;
color: #00202B;
}

/* TEXT HELPERS */

.center {
text-align: center;
}

.center-text {
text-align: center;
margin-top: 20px;
}

.muted {
color: #6b7c84;
}

.about-text {
max-width: 700px;
margin: 0 auto;
font-size: 16px;
color: #334d57;
}

/* CTA SECTION */

.cta {
background: #00202B;
color: #ffffff;
}

.cta h2 {
color: #ffffff;
}

/* FOOTER */

.footer {
padding: 30px 20px;
text-align: center;
font-size: 14px;
color: #6b7c84;
background: #ffffff;
}

/* MOBILE */

@media (max-width: 768px) {
.hero-grid,
.three-col,
.two-col {
grid-template-columns: 1fr;
}

h1 {
font-size: 34px;
}

h2 {
font-size: 26px;
}
}

/* HEADER */

.site-header {
background: #ffffff;
border-bottom: 1px solid #cecccc;
padding: 16px 0;
}

.header-wrap {
display: flex;
align-items: center;
justify-content: space-between;
}

/* BRAND */

.brand {
display: flex;
align-items: center;
gap: 14px;
}

.logo {
width: 48px;
height: auto;
}

.brand-text strong {
display: block;
font-size: 16px;
color: #00202B;
}

.brand-text span {
display: block;
font-size: 13px;
color: #334d57;
}

.brand-text small {
display: block;
font-size: 11px;
color: #6b7c84;
}

/* ACTIONS */

.header-actions {
display: flex;
align-items: center;
gap: 18px;
}

.header-link {
font-size: 14px;
color: #00202B;
text-decoration: none;
font-weight: 500;
}

.header-link:hover {
color: #2F9ABB;
}

.header-link.whatsapp {
padding: 8px 14px;
border: 1px solid #2F9ABB;
border-radius: 4px;
color: #2F9ABB;
}

.header-link.whatsapp:hover {
background: #2F9ABB;
color: #ffffff;
}

/* MOBILE HEADER FIX */
@media (max-width: 768px) {

.site-header {
padding: 16px 0;
}

.header-wrap {
flex-direction: column;
align-items: center;   /* 🔑 THIS WAS MISSING */
text-align: center;
gap: 16px;
}

/* BRAND */

/* make the brand block span full row */
.brand {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center; /* 🔑 */
}

/* force the logo to truly center */
.logo {
display: block;
margin: 0 auto; /* 🔑 */
}

/* ensure text block doesn't “hug left” */
.brand-text {
width: 100%;
text-align: center; /* 🔑 */
}

/* ACTION BUTTONS */

.header-actions {
width: 100%;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
}

.header-link {
text-align: center;
font-size: 13px;
padding: 10px 0;
border: 1px solid #cecccc;
border-radius: 4px;
}

.header-link.whatsapp {
background: #2F9ABB;
border-color: #2F9ABB;
color: #ffffff;
}
}

/* FOOTER */

.site-footer {
background: #f7f7f7;
padding: 60px 0 40px;
margin-top: 80px;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
}

.footer-col strong {
display: block;
font-size: 15px;
margin-bottom: 12px;
color: #00202B;
}

.footer-col p {
font-size: 14px;
color: #334d57;
line-height: 1.6;
}

.footer-col small {
display: block;
margin-top: 12px;
font-size: 12px;
color: #6b7c84;
}

.footer-col ul {
list-style: none;
padding: 0;
}

.footer-col ul li {
margin-bottom: 8px;
}

.footer-col ul li a {
font-size: 14px;
color: #334d57;
text-decoration: none;
}

.footer-col ul li a:hover {
color: #2F9ABB;
}

/* MOBILE FOOTER */

@media (max-width: 768px) {
.header-wrap {
flex-direction: column;
align-items: flex-start;
gap: 16px;
}

.header-actions {
gap: 12px;
}

.footer-grid {
grid-template-columns: 1fr;
gap: 32px;
}
}