* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #1d2935;
    background: #ffffff;
    line-height: 1.6;
}
.site-header {
    background: #075b9d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 10;
}
.header-inner {
    max-width: 1150px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}
.logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}
.main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}
.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}
.main-nav a:hover {
    text-decoration: underline;
}
.page-hero {
    background:
        linear-gradient(
            rgba(0, 91, 157, 0.88),
            rgba(0, 91, 157, 0.88)
        );
    color: #ffffff;
    padding: 70px 20px;
    text-align: center;
}
.page-hero-inner {
    max-width: 950px;
    margin: 0 auto;
}
.page-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.15;
}
.page-hero p {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.1rem;
}
.page-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 55px 20px;
}
.content-section {
    max-width: 900px;
    margin: 0 auto 45px;
}
.content-section h2 {
    color: #075b9d;
    margin: 0 0 18px;
    font-size: 1.8rem;
}
.content-section p {
    margin: 0 0 18px;
    font-size: 1.05rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}
.service-card {
    padding: 25px 20px;
    background: #f4f8fb;
    border-radius: 10px;
    border: 1px solid #e1e9ef;
}
.service-card h3 {
    margin: 0 0 10px;
    color: #075b9d;
    font-size: 1.15rem;
}
.service-card p {
    margin: 0;
    font-size: 0.98rem;
}
.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.service-list li {
    position: relative;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid #e5e5e5;
}
.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    color: #075b9d;
    font-weight: 700;
}
.cta-box {
    margin: 45px auto;
    max-width: 900px;
    padding: 35px 25px;
    background: #075b9d;
    color: #ffffff;
    border-radius: 12px;
    text-align: center;
}
.cta-box h2 {
    margin: 0 0 12px;
    color: #ffffff;
}
.cta-box p {
    margin: 0 auto 22px;
    max-width: 700px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.2s ease;
}
.btn:hover {
    opacity: 0.85;
}
.btn-white {
    background: #ffffff;
    color: #075b9d;
}
.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}
.contact-box {
    background: #f4f8fb;
    border-radius: 10px;
    padding: 25px;
    margin-top: 25px;
}
.contact-box p {
    margin: 8px 0;
}
.contact-box a {
    color: #075b9d;
    font-weight: 600;
    text-decoration: none;
}
.site-footer {
    background: #102b3f;
    color: #ffffff;
    padding: 40px 20px 25px;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.site-footer h3 {
    margin-top: 0;
    color: #ffffff;
}
.site-footer p {
    color: #d8e2e9;
}
.site-footer a {
    color: #ffffff;
    text-decoration: none;
}
.site-footer a:hover {
    text-decoration: underline;
}
.footer-bottom {
    max-width: 1100px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    color: #c8d5dd;
    font-size: 0.9rem;
}
.whatsapp-button {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 17px;
    border-radius: 30px;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.whatsapp-button:hover {
opacity: 0.9;
}
@media (max-width: 800px) {
.header-inner {
flex-direction: column;
align-items: flex-start;
padding: 14px 16px;
}
.main-nav {
width: 100%;
gap: 8px 15px;
}
.main-nav a {
font-size: 0.9rem;
}
.page-hero {
padding: 55px 18px;
}
.page-hero h1 {
font-size: 2rem;
}
.page-hero p {
font-size: 1rem;
}
.page-content {
padding: 40px 16px;
}
.services-grid {
grid-template-columns: 1fr;
}
.footer-inner {
grid-template-columns: 1fr;
gap: 20px;
}
.cta-box {
padding: 30px 18px;
}
.whatsapp-button {
right: 12px;
bottom: 12px;
padding: 11px 15px;
}
}
@media (max-width: 480px) {
.logo {
font-size: 1.05rem;
}
.logo img {
width: 44px;
height: 44px;
}
.page-hero h1 {
font-size: 1.8rem;
}
.content-section h2 {
font-size: 1.5rem;
}
.btn {
width: 100%;
text-align: center;
}
.cta-buttons {
width: 100%;
}
}