* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #222222;
    background-color: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Top bar */

.top-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e9f0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 56px;
    width: auto;
}

.logo-text .brand-name {
    font-weight: 700;
    font-size: 20px;
    color: #00589B;
}

.logo-text .brand-name span {
    color: #4CAF50;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-link {
    color: #00589B;
    text-decoration: none;
    font-weight: 600;
}

/* Buttons */

.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #0082CA;
    border-color: #0082CA;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #00589B;
    border-color: #00589B;
}

.btn-outline {
    background-color: transparent;
    border-color: #0082CA;
    color: #0082CA;
}

.btn-outline:hover {
    background-color: #0082CA;
    color: #ffffff;
}

.btn-sm {
    padding: 8px 14px;
    font-size: 13px;
}

.btn-full {
    width: 100%;
}

/* Hero */

.hero {
    background: linear-gradient(135deg, #E6F5FF 0%, #F5FFFA 100%);
    padding: 48px 0 40px;
}

.hero-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
}

.hero-text {
    flex: 1 1 340px;
}

.hero h1 {
    font-size: 30px;
    margin-bottom: 12px;
    color: #00589B;
}

.hero p {
    font-size: 16px;
    margin-bottom: 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-bullets {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: #333333;
}

.hero-bullets li::before {
    content: "• ";
    color: #4CAF50;
    font-weight: 700;
}

.hero-image {
    flex: 1 1 320px;
}

/* Sections */

.section {
    padding: 48px 0;
}

.section.light {
    background-color: #F5F7FA;
}

.section.highlight {
    background-color: #0082CA;
    color: #ffffff;
}

.section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: inherit;
}

.section p {
    margin-bottom: 12px;
}

/* Layout helpers */

.two-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    align-items: center;
}

.rounded-img {
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* Services */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.service-card {
    border-radius: 8px;
    border: 1px solid #e0e6f0;
    padding: 18px 16px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.service-card h3 {
    font-size: 18px;
    color: #00589B;
    margin-bottom: 8px;
}

.service-card ul {
    margin-top: 8px;
    padding-left: 18px;
    font-size: 14px;
}

/* Benefits */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.benefit-card {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e6f0;
    padding: 16px 14px;
}

.benefit-card h3 {
    font-size: 17px;
    color: #00589B;
    margin-bottom: 6px;
}

/* Testimonials */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.testimonial-card {
    border-radius: 8px;
    border: 1px solid #e0e6f0;
    padding: 18px 16px;
    background-color: #ffffff;
    font-size: 14px;
}

.testimonial-card .author {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #00589B;
}

/* Quote form */

.quote-form {
    background-color: #ffffff;
    color: #222222;
    border-radius: 8px;
    padding: 18px 16px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.quote-form .form-row {
    margin-bottom: 12px;
}

.quote-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid #ccd4e0;
    font-size: 14px;
    font-family: inherit;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #0082CA;
    box-shadow: 0 0 0 2px rgba(0, 130, 202, 0.15);
}

.checkbox-row label {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 13px;
}

.checkbox-row input[type="checkbox"] {
    margin-top: 2px;
}

/* Footer */

.footer {
    background-color: #0B1B2B;
    color: #ffffff;
    padding: 18px 0;
    font-size: 14px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer a {
    color: #E3F4FF;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive */

@media (max-width: 768px) {
    .hero {
        padding-top: 32px;
    }

    .hero-inner {
        flex-direction: column;
    }

    .top-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .top-contact {
        width: 100%;
        justify-content: space-between;
    }
}