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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

a {
    color: #005ebc;
    text-decoration: none;
}

a:hover {
    color: #004a99;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

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

/* Header */
.site-header {
    background: #fff;
    border-bottom: 2px solid #005ebc;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    height: 32px;
    width: auto;
}

.main-navigation .menu {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border-top: 1px solid #eee;
    z-index: 100;
}

.main-navigation .menu.active {
    display: flex;
}

.main-navigation .menu li {
    border-bottom: 1px solid #f0f0f0;
}

.main-navigation .menu li:last-child {
    border-bottom: none;
}

.main-navigation .menu a {
    display: block;
    padding: 14px 20px;
    color: #333;
    font-size: 15px;
    font-weight: 600;
}

.main-navigation .menu a:hover {
    background: #005ebc;
    color: #fff;
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 2px solid #005ebc;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
}

.menu-toggle i {
    color: #005ebc;
    font-size: 1.1rem;
}

.menu-toggle span {
    color: #005ebc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Hero */
.hero-banner {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
    line-height: 0;
}

.hero-img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
}

/* Content */
.site-content {
    padding: 20px 0;
}

.content-block {
    margin-bottom: 25px;
}

.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4 {
    color: #222;
    margin-bottom: 12px;
    line-height: 1.3;
}

.content-block h1 {
    font-size: 1.3rem;
    color: #005ebc;
}

.content-block h2 {
    font-size: 1.2rem;
}

.content-block h3 {
    font-size: 1.1rem;
}

.content-block h4 {
    font-size: 1rem;
}

.content-block p {
    margin-bottom: 12px;
    color: #444;
    line-height: 1.7;
    font-size: 0.92rem;
    text-align: justify;
}

.content-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.content-row:last-child {
    border-bottom: none;
}

.content-image {
    width: 100%;
}

.content-image img {
    width: 100%;
    border-radius: 8px;
}

.content-text {
    width: 100%;
}

/* Issues List */
.issues-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 15px;
}

.issues-list {
    list-style: none;
    padding: 0;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
}

.issues-list li {
    padding: 8px 0;
    color: #333;
    line-height: 1.5;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
}

.issues-list li:last-child {
    border-bottom: none;
}

.issues-title {
    font-weight: 700;
    color: #005ebc !important;
    font-size: 0.95rem !important;
    margin-bottom: 5px;
    border-bottom: 2px solid #005ebc !important;
    padding-bottom: 10px !important;
}

.issues-list li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
    font-size: 0.85rem;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.testimonial {
    background: #f8f9fa;
    padding: 18px;
    border-radius: 8px;
    border-left: 4px solid #005ebc;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 10px;
    font-size: 14px;
}

.testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: #333;
    font-size: 13px;
}

.testimonial-author span {
    color: #888;
    font-size: 11px;
}

/* Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #333;
}

.area-item i {
    color: #005ebc;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-list {
    margin-top: 15px;
}

.faq-item {
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #005ebc;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: #005ebc;
    text-align: left;
}

.faq-question i {
    transition: transform 0.3s;
    font-size: 0.8rem;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 15px 15px;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Contact Section */
.contact-section {
    padding: 25px 0;
    background: #f0f4f8;
}

.contact-section h2 {
    color: #222;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.contact-section > .container > p {
    margin-bottom: 20px;
    color: #555;
    font-size: 0.92rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-details {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #005ebc;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-info h4 {
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 3px;
    font-weight: 700;
}

.contact-info p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.contact-info a {
    color: #005ebc;
    font-weight: 600;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 250px;
    border: none;
}

/* Footer */
.site-footer {
    background: #333;
    color: #aaa;
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
}

.disclaimer {
    margin-bottom: 8px;
    line-height: 1.6;
}

.disclaimer a {
    color: #ccc;
    text-decoration: underline;
}

.copyright {
    color: #999;
}

.copyright a {
    color: #ccc;
}

/* Floating Buttons */
.float-icon {
    position: fixed;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    z-index: 999;
    box-shadow: 0 3px 12px rgba(0,0,0,0.3);
}

.float-call {
    left: 15px;
    background: #005ebc;
}

.float-whatsapp {
    right: 15px;
    background: #25d366;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }

    .site-logo {
        height: 40px;
    }

    .main-navigation .menu {
        display: flex;
        position: static;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        border-top: none;
        gap: 5px;
    }

    .main-navigation .menu li {
        border-bottom: none;
    }

    .main-navigation .menu a {
        padding: 8px 16px;
        font-size: 14px;
        border-radius: 4px;
    }

    .main-navigation .menu a:hover {
        background: #f0f0f0;
        color: #005ebc;
    }

    .menu-toggle {
        display: none;
    }

    .hero-img {
        max-height: 500px;
    }

    .content-block h1 { font-size: 1.8rem; }
    .content-block h2 { font-size: 1.5rem; }
    .content-block h3 { font-size: 1.25rem; }
    .content-block h4 { font-size: 1.1rem; }

    .content-block p {
        font-size: 1rem;
    }

    .content-row {
        flex-direction: row;
        gap: 30px;
        align-items: center;
    }

    .content-row.reverse {
        flex-direction: row-reverse;
    }

    .content-image {
        flex: 0 0 45%;
    }

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

    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-item h4 {
        font-size: 1rem;
    }

    .faq-item p {
        font-size: 0.95rem;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-section h2 {
        font-size: 1.6rem;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-details {
        flex: 1;
        padding: 25px;
    }

    .contact-map {
        flex: 1;
    }

    .contact-map iframe {
        height: 350px;
    }

    .float-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        bottom: 25px;
    }

    .float-call {
        left: 25px;
    }

    .float-whatsapp {
        right: 25px;
    }
}
