.elementor-9026 .elementor-element.elementor-element-4e82248{--display:flex;}/* Start custom CSS for html, class: .elementor-element-95fb090 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #1c0a41;
    background-color: #ffffff;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.blog-header {
    margin-bottom: 24px;
    text-align: left;
}

.blog-meta {
    color: #49326b;
    font-size: 0.875rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.reading-time {
    background: #dcd3ff;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 500;
}

.blog-content {
    color: #1c0a41;
    font-size: 1.125rem;
    line-height: 1.7;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1c0a41;
    margin-bottom: 32px;
    line-height: 1.2;
}

.blog-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1c0a41;
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
}

.blog-content h2::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #f2645c, #8761d6);
    border-radius: 2px;
}

.blog-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #49326b;
    margin-top: 36px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-content p {
    margin-bottom: 20px;
    color: #1c0a41;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.blog-content li {
    margin-bottom: 8px;
    color: #1c0a41;
}

.highlight-box {
    background: linear-gradient(135deg, #faf9ff 0%, #dcd3ff 100%);
    padding: 24px;
    border-radius: 16px;
    margin: 32px 0;
    border: 1px solid #baacee;
    box-shadow: 0 8px 24px rgba(186, 172, 238, 0.15);
    position: relative;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f2645c, #8761d6, #49326b);
    border-radius: 16px 16px 0 0;
}

.highlight-box p {
    margin-bottom: 0;
    font-weight: 500;
    color: #1c0a41;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.stat-item {
    background: linear-gradient(135deg, #dcd3ff 0%, #baacee 100%);
    padding: 28px 20px;
    border-radius: 16px;
    text-align: center;
    color: #1c0a41;
    border: 1px solid #baacee;
    box-shadow: 0 8px 20px rgba(186, 172, 238, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(186, 172, 238, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
    color: #1c0a41;
}

.cta-section {
    background: linear-gradient(135deg, #1c0a41 0%, #49326b 100%);
    padding: 48px 40px;
    border-radius: 20px;
    margin-top: 60px;
    text-align: center;
    color: white;
    box-shadow: 0 16px 40px rgba(28, 10, 65, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f2645c, #8761d6, #baacee);
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 32px;
    color: #ffffff !important;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1c0a41, #49326b);
    color: #ffffff !important;
    padding: 18px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(28, 10, 65, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #49326b, #8761d6);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(28, 10, 65, 0.4);
    color: #ffffff !important;
}

.emphasis {
    background: #dcd3ff;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-content {
        font-size: 1rem;
    }
    
    .blog-content h2::before {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 32px 24px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}/* End custom CSS */