.elementor-2045 .elementor-element.elementor-element-a3bbfac{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-a6e5ed8 */:root {
    --primary-color: #0f2d59;
    --primary-light: #1e457e;
    --secondary-color: #ff6b35;
    --secondary-hover: #e0531f;
    --text-color: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-primary {
    background-color: var(--primary-color);
}

.text-white {
    color: var(--white) !important;
}

.text-center {
    text-align: center;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

.section-title {
    margin-bottom: 50px;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-muted);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 100px 0 120px 0;
    text-align: center;
}

.hero h1 {
    color: var(--white);
    margin-top: 15px;
}

.hero .badge {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 35px auto;
    opacity: 0.9;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.card h3 { margin-bottom: 15px; }

.card-dark {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.card-dark h3, .card-dark p { color: var(--white); }

.benefit-box {
    border-left: 4px solid var(--secondary-color);
    padding: 10px 0 10px 20px;
}
.benefit-box h4 { margin-bottom: 8px; }

.steps-container {
    max-width: 750px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step-number {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.step-content h4 { margin-bottom: 5px; }

.brand-highlight {
    background: #eef3f9;
    border-top: 2px solid rgba(15, 45, 89, 0.05);
    border-bottom: 2px solid rgba(15, 45, 89, 0.05);
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eeeeee;
}

.faq-item:last-child { border-bottom: none; }

.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-hover) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 { color: var(--white); }
.cta-section p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 30px auto;
    opacity: 0.95;
}

.footer {
    background: #111111;
    color: #aaaaaa;
    padding: 40px 0;
    font-size: 0.9rem;
    text-align: center;
}

.disclaimer {
    font-size: 0.8rem;
    margin-bottom: 20px;
    line-height: 1.5;
    border-bottom: 1px solid #222222;
    padding-bottom: 20px;
}

@media (max-width: 992px) {
    .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .section { padding: 50px 0; }
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .step { flex-direction: column; }
    .step-number { margin-bottom: 10px; }
}/* End custom CSS */