.elementor-4403 .elementor-element.elementor-element-2a7b701{--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-4403 .elementor-element.elementor-element-28e59f4{--spacer-size:50px;}.elementor-4403 .elementor-element.elementor-element-8496d80{--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-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-4403 .elementor-element.elementor-element-4e9c00a{text-align:center;}.elementor-4403 .elementor-element.elementor-element-4e9c00a .elementor-heading-title{font-family:"Poppins", Sans-serif;font-size:42px;font-weight:600;color:#56AE48;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-4403 .elementor-element.elementor-element-1148aa9{text-align:center;font-family:"Poppins", Sans-serif;font-size:20px;font-weight:400;color:#353535;}.elementor-4403 .elementor-element.elementor-element-7217901{--display:flex;}/* Start custom CSS for html, class: .elementor-element-c49d7af */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
/*.features-section {*/
/*    padding: 100px 0;*/
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2d3748;
}

.section-title p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.feature-card.expanded {
    grid-column: span 2;
    z-index: 2;
}

/* Feature list styling for expanded state */
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.feature-item::before {
    content: "✓";
    color: #48bb78;
    margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-card.expanded {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card.expanded {
        grid-column: span 1;
    }
}

/* Add arrow icon */
.feature-card h3::after {
    content: '›';
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    transition: transform 0.3s ease;
    color: #4a5568;
}

.feature-card.expanded h3::after {
    transform: rotate(90deg);
}

.expanded-content {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card.expanded .expanded-content {
    display: block;
    opacity: 1;
}

/* Remove the close button since we're using the arrow */
.close-btn {
    display: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d3748;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
}

.expanded-content {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.feature-card.expanded .expanded-content {
    display: block;
}

.expanded-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.feature-item:hover {
    background-color: #f7fafc;
}

.feature-item-content {
    margin-left: 10px;
}

.feature-item-content span {
    color: #4a5568;
    font-size: 0.95rem;
}

/* Hide Close Button */
.close-btn {
    display: none;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        min-height: auto;
        padding: 20px;
    }
    
    .expanded-details {
        grid-template-columns: 1fr;
    }
}

/* Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}/* End custom CSS */