.elementor-30587 .elementor-element.elementor-element-60588a8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-30587 .elementor-element.elementor-element-1b5273c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-dab0898 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2b2e71 0%, #266534 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.hero .subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #b5ce51;
}

.hero .description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #ea5e3a;
    color: white;
    border: 2px solid #ea5e3a;
}

.btn-primary:hover {
    background: #d94d28;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 94, 58, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #b5ce51;
}

.btn-secondary:hover {
    background: #b5ce51;
    color: #2b2e71;
    transform: translateY(-2px);
}

/* Content */
.content {
    padding: 60px 0;
}

.section {
    margin-bottom: 60px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2b2e71;
    border-bottom: 3px solid #ea5e3a;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 30px 0 20px 0;
    color: #2b2e71;
}

h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
    color: #266534;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, #efe6d4 0%, #f5f1e8 100%);
    border-left: 5px solid #ea5e3a;
    padding: 30px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(43, 46, 113, 0.1);
}

.warning-box {
    background: linear-gradient(135deg, #ffeee8 0%, #fff5f0 100%);
    border-left: 5px solid #ea5e3a;
}

.success-box {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
    border-left: 5px solid #339452;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(43, 46, 113, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #efe6d4;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(43, 46, 113, 0.15);
    border-color: #b5ce51;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(43, 46, 113, 0.1);
    margin: 40px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: #2b2e71;
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #efe6d4;
}

.comparison-table tr:nth-child(even) {
    background: #efe6d4;
}

.check {
    color: #339452;
    font-weight: bold;
}

.cross {
    color: #ea5e3a;
    font-weight: bold;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #2b2e71 0%, #266534 100%);
    color: white;
    padding: 60px 0;
    margin: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #b5ce51;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.process-step {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(43, 46, 113, 0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ea5e3a, #ff7659);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Lists */
.list-checkmarks {
    list-style: none;
    padding-left: 0;
}

.list-checkmarks li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.list-checkmarks li:before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
}

.list-crosses {
    list-style: none;
    padding-left: 0;
}

.list-crosses li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.list-crosses li:before {
    content: "❌";
    position: absolute;
    left: 0;
    top: 0;
}

/* FAQ Section */
.faq {
    background: #efe6d4;
    padding: 60px 0;
    margin-top: 60px;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(43, 46, 113, 0.05);
}

.faq-question {
    padding: 25px;
    font-weight: 600;
    font-size: 1.2rem;
    color: #2b2e71;
    cursor: pointer;
    border-bottom: 1px solid #efe6d4;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-answer {
    padding: 25px;
    display: none;
    color: #266534;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2b2e71 0%, #266534 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.contact-section h2 {
    color: white;
    border-bottom-color: #b5ce51;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-item {
    padding: 20px;
}

.contact-item h4 {
    color: #b5ce51;
    margin-bottom: 10px;
}

/* Big Statement */
.big-statement {
    font-size: 2rem;
    font-weight: 700;
    color: #ea5e3a;
    text-align: center;
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, #fff 0%, #f5f1e8 100%);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(43, 46, 113, 0.1);
}

/* Responsive */
@media (max-width: 1200px) {
    .features-grid[style*="repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .features-grid,
    .features-grid[style*="repeat(4, 1fr)"],
    .process-grid {
        grid-template-columns: 1fr !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-table {
        margin: 20px -20px;
        border-radius: 0;
    }
    
    .big-statement {
        font-size: 1.5rem;
        padding: 20px;
    }
}/* End custom CSS */