.elementor-417 .elementor-element.elementor-element-bd00993{--display:flex;--margin-top:0px;--margin-bottom:30px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS *//* --- GLOBAL RESET & VARIABLES --- */
:root {
    --primary: #004aad; /* Royal Blue */
    --primary-dark: #003380;
    --accent: #ffa857; /* Orange Highlight */
    --bg-light: #f4f8ff;
    --text-dark: #1e293b;
    --text-gray: #475569;
    --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Merriweather', serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

a { text-decoration: none; transition: 0.3s; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent);
    color: #0f172a; /* Dark text for contrast on orange */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background-color: #ff9533;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.15);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    color: #e0e7ff;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* --- INTRO SECTION --- */
.intro {
    padding: 80px 0;
    text-align: center;
    background-color: var(--white);
}

.intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

/* --- WHY USE US (FEATURES) --- */
.features {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 { font-size: 2.5rem; }

/* 2x2 Grid Layout for Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Forces 2 columns */
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid transparent;
}

.feature-card:hover { 
    transform: translateY(-5px);
    border-top-color: var(--accent);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }

/* --- CALCULATORS GRID --- */
.calculators { padding: 80px 0; }

/* 1 Row Layout for Desktop */
.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns side-by-side */
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.calc-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px 30px;
    background: var(--white);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    text-align: center;
}

.calc-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 74, 173, 0.1);
}

.calc-icon {
    width: 70px;
    height: 70px;
    background-color: #e0e7ff; /* Light Blue */
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 25px auto;
}

.calc-card h3 { font-size: 1.5rem; }

.calc-btn-link {
    background-color: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 25px;
    display: inline-block;
    transition: 0.2s;
}

.calc-btn-link:hover { 
    background-color: var(--accent); 
    color: #0f172a;
}

/* --- AUDIENCE SECTION --- */
.audience {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.audience h2 { color: var(--white); margin-bottom: 40px; }

.audience-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.audience-tag {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.audience-tag:hover {
    background: var(--accent);
    color: #0f172a;
    border-color: var(--accent);
}

/* --- TRUST / ACCURACY --- */
.accuracy { padding: 80px 0; background-color: var(--bg-light); }

/* Flexbox Center Alignment for Accuracy Points */
.accuracy-grid {
    display: flex;
    justify-content: center; /* Centers the items horizontally */
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.accuracy-item {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    border-bottom: 3px solid var(--accent);
    text-align: center;
    flex: 0 1 auto; /* Prevents stretching too wide */
}

/* --- CALL TO ACTION --- */
.cta-section {
    background: linear-gradient(to right, #1e293b, #0f172a); /* Dark footer-like CTA */
    text-align: center;
    padding: 80px 20px;
    color: var(--white);
}

.cta-section h2 { color: var(--white); font-size: 2.5rem; }
.cta-section p { color: #cbd5e1; font-size: 1.2rem; margin-bottom: 30px; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .section-header h2 { font-size: 2rem; }
    
    /* Stack everything on mobile */
    .features-grid { grid-template-columns: 1fr; }
    .calc-grid { grid-template-columns: 1fr; }
    
    .feature-card { text-align: left; display: flex; align-items: flex-start; gap: 15px; }
    .feature-icon { margin-bottom: 0; font-size: 2rem; }
    .feature-card div { flex: 1; }
}/* End custom CSS */