.elementor-3281 .elementor-element.elementor-element-91257b6{--display:flex;}/* Start custom CSS for html, class: .elementor-element-2502ef3 */body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #0056b3;
    color: #fff;
    padding: 1em 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.hero-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-video,
.hero-content {
    flex: 1;
    min-width: 300px;
    background-color: #eee;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.video-placeholder {
    background-color: #ccc;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d35400;
}

section {
    margin-bottom: 40px;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

section h2 {
    color: #0056b3;
    font-size: 2em;
    margin-bottom: 15px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    font-size: 0.9em;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    header h1 {
        font-size: 1.8em;
    }

    section h2 {
        font-size: 1.5em;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}



/* Urgency Timer Styles */
.urgency-timer {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    animation: pulse 2s infinite;
}

.urgency-timer p {
    margin: 0 0 10px 0;
    font-size: 1.1em;
    font-weight: bold;
}

.timer-display {
    font-size: 2em;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(231, 76, 60, 0.6); }
    100% { box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3); }
}

/* Enhanced CTA Button Styles */
.cta-button {
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Enhanced Section Styling */
.problem-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 5px solid #e74c3c;
}

.testimonial-section {
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    border-left: 5px solid #28a745;
    font-style: italic;
}

.mechanism-section {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-left: 5px solid #ffc107;
}

.risk-section {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border-left: 5px solid #dc3545;
}

.solution-segue-section {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    border-left: 5px solid #17a2b8;
    text-align: center;
}

/* Mobile Enhancements */
@media (max-width: 768px) {
    .urgency-timer {
        margin: 10px;
        padding: 15px;
    }
    
    .timer-display {
        font-size: 1.5em;
    }
    
    .urgency-timer p {
        font-size: 1em;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
}

.loaded {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Highlight important statistics */
.stat-highlight {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    color: #856404;
    margin: 15px 0;
    text-align: center;
}/* End custom CSS */