.elementor-2077 .elementor-element.elementor-element-965b7d6{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-aecdfbe *//* --- Global Reset & Variables --- */
: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);
}

/* --- Layout Containers --- */
.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;
}

/* --- Typography --- */
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);
}

/* --- Buttons --- */
.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 Section --- */
.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;
}

/* --- Grids & Cards --- */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: var(--white);
    padding: 40px;
    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: 12px;
}

.card-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-dark p {
    color: var(--white);
    opacity: 0.85;
}

/* --- Benefit Box --- */
.benefit-box {
    border-left: 4px solid var(--secondary-color);
    padding: 5px 0 5px 20px;
}
.benefit-box h4 {
    margin-bottom: 8px;
}

/* --- CTA Section --- */
.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 --- */
.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;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .section { padding: 50px 0; }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */