.snb-wrapper-4c1d489c {
    font-family: 'DM Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}
.snb-wrapper-4c1d489c * {
    box-sizing: border-box;
}
.snb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.snb-red-text {
    color: #e74c3c;
    font-weight: bold;
}
.snb-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}
.snb-btn-red {
    background-color: #e74c3c;
    color: white;
    border: none;
}
.snb-btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

/* Header */
.snb-header {
    background-color: #0b192c;
    color: white;
    padding: 20px 0;
}
.snb-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.snb-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.snb-nav a {
    color: white;
    text-decoration: none;
}

/* Hero */
.snb-hero {
    background-color: #0b192c;
    color: white;
    padding: 60px 0;
}
.snb-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.snb-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.snb-hero-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}
.snb-hero-list li {
    margin-bottom: 10px;
}
.snb-hero-buttons {
    display: flex;
    gap: 15px;
}
.snb-mockup-card {
    background: white;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Trust Bar */
.snb-trust-bar {
    background-color: #061121;
    color: white;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
}

/* Services */
.snb-services {
    padding: 80px 0;
    background-color: #f9f9f9;
}
.snb-section-title.text-center {
    text-align: center;
    margin-bottom: 50px;
}
.snb-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.snb-service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.snb-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

/* About */
.snb-about {
    background-color: #0b192c;
    color: white;
    padding: 80px 0;
}
.snb-about-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.snb-about-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.snb-feature {
    text-align: center;
    font-size: 12px;
}

/* FAQ & Contact */
.snb-faq-contact {
    padding: 80px 0;
    background: #f9f9f9;
}
.snb-fc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.snb-accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    background: white;
}
.snb-accordion-header {
    width: 100%;
    text-align: left;
    padding: 15px;
    background: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}
.snb-accordion-content {
    padding: 0 15px;
    display: none;
}
.snb-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.snb-form input, .snb-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.snb-form input { flex: 1; }

/* CTA */
.snb-cta-strip {
    background-color: #061121;
    color: white;
    padding: 50px 0;
}
.snb-cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Footer */
.snb-footer {
    background-color: #0b192c;
    color: white;
    padding: 60px 0 20px;
}
.snb-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}
.snb-footer ul {
    list-style: none;
    padding: 0;
}
.snb-footer a {
    color: #ccc;
    text-decoration: none;
}
.snb-footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    color: #888;
}

@media (max-width: 768px) {
    .snb-hero-grid, .snb-about-flex, .snb-fc-grid, .snb-cta-flex, .snb-footer-grid {
        grid-template-columns: 1fr;
    }
    .snb-services-grid {
        grid-template-columns: 1fr;
    }
}
