* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #fefefe;
    transition: all 0.2s ease;
}
/* Brand Switcher Styles */
.brand-switcher {
    background: linear-gradient(135deg, #1a2a3a 0%, #0f1a24 100%);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.brand-btn {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 8px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.2s;
    cursor: pointer;
    font-size: 1rem;
}
.brand-btn i {
    margin-right: 8px;
}
.brand-btn.active {
    background: #111956;
    border-color: #111956;
    color: white;
    box-shadow: 0 4px 12px rgba(0,168,107,0.3);
}
.brand-btn:first-child.active {
    background: #111956;
    border-color: #111956;
}
.brand-btn:last-child.active {
    background: #23aa5f;
    border-color: #23aa5f;
}
.brand-btn:hover:not(.active) {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}
/* Website containers */
.website-container {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.website-container.active-website {
    display: block;
    opacity: 1;
}
/* Shared utility */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 800;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 4px;
    border-radius: 4px;
}
.btn-primary-custom {
    border-radius: 40px;
    padding: 12px 32px;
    font-weight: 600;
    transition: 0.2s;
    border: none;
}
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    line-height: 58px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: 0.2s;
}
.whatsapp-float:hover {
    background: #20b859;
    transform: scale(1.05);
    color: white;
}
@media (max-width: 768px) {
    .brand-btn {
    padding: 6px 20px;
    font-size: 0.9rem;
    }
}
/* FlowZen custom colors */
.flowzen-green {
    color: #111956;
}
.flowzen-bg-green {
    background: #111956;
}
.flowzen-dark-green {
    color: #2D4385;
}
.flowzen-bg-dark-green {
    background: #2D4385;
}
.flowzen-gradient-bg {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6d9 100%);
}
/* Banner overlay for text readability */
.hero-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 550px;
    display: flex;
    align-items: center;
}
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
    border-radius: 0;
}
.hero-banner .container {
    position: relative;
    z-index: 2;
}
.hero-banner h1, .hero-banner p {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}
.text-success-custom{
    color: #23aa5f !important;
}
.btn-outline-success-custom{
    --bs-btn-color: #23aa5f;
    --bs-btn-border-color: #23aa5f;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #23aa5f;
    --bs-btn-hover-border-color: #23aa5f;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #23aa5f;
    --bs-btn-active-border-color: #23aa5f;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #23aa5f;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #23aa5f;
    --bs-gradient: none;
}
.social-share a {
    display: inline-block;
    margin: 5px;
    padding: 8px 12px;
    background: #001f4d;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}
.social-share a:hover {
    background: #003a8f;
}
@media (max-width: 768px) {
    /* Mobile styles here */
    body {
        font-size: 14px;
    }
    .container {
        padding: 10px;
    }
    .btn {
        width: 100%;
        font-size: 16px;
    }
    h1 {
        font-size: 2rem;
    }
}