.elementor-639 .elementor-element.elementor-element-0d53f75{--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-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 );}/* Start custom CSS for text-editor, class: .elementor-element-a1a3f52 */.household-items-page {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Banner Styles */
.household-banner {
    background: linear-gradient(135deg, rgba(26, 106, 162, 0.9) 0%, rgba(10, 74, 122, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 80px;
}

.banner-overlay {
    background: rgba(10, 74, 122, 0.1);
}

.banner-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.banner-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.banner-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.banner-stat {
    text-align: center;
}

.banner-stat .number {
    display: block;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}

.banner-stat .label {
    font-size: 14px;
    opacity: 0.8;
}

/* Importance Section */
.importance-section {
    margin-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: #0d4d80;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.importance-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.importance-card:hover {
    transform: translateY(-8px);
}

.card-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.importance-card h3 {
    color: #0d4d80;
    margin-bottom: 15px;
    font-size: 22px;
}

.importance-card p {
    color: #555;
    line-height: 1.6;
}

/* Items Gallery */
.items-gallery-section {
    margin-bottom: 80px;
}

.items-gallery-section h2 {
    text-align: center;
    font-size: 36px;
    color: #0d4d80;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #1a6aa2;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.item-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.gallery-item h3 {
    color: #0d4d80;
    margin-bottom: 20px;
    font-size: 22px;
}

.gallery-item ul {
    list-style: none;
    padding: 0;
}

.gallery-item li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.gallery-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a6aa2;
    font-weight: bold;
}

.restricted-items li::before {
    content: '✗';
    color: #e53e3e;
}

/* Quality Standards */
.quality-standards {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 80px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.standards-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.standards-text h2 {
    color: #0d4d80;
    margin-bottom: 15px;
    font-size: 32px;
}

.standards-text p {
    color: #666;
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.standards-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.standard-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #555;
}

.check {
    color: #1a6aa2;
    font-weight: bold;
    font-size: 18px;
}

.standards-visual {
    display: flex;
    justify-content: center;
}

.quality-badge {
    background: linear-gradient(135deg, #1a6aa2 0%, #0d4d80 100%);
    color: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 106, 162, 0.3);
}

.badge-icon {
    font-size: 50px;
    margin-bottom: 10px;
    display: block;
}

/* Donation Process */
.donation-process-section {
    margin-bottom: 80px;
}

.donation-process-section h2 {
    text-align: center;
    font-size: 36px;
    color: #0d4d80;
    margin-bottom: 50px;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.process-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a6aa2 0%, #0d4d80 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.process-card h3 {
    color: #0d4d80;
    margin-bottom: 15px;
    font-size: 20px;
    margin-top: 10px;
}

.process-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.process-tip {
    background: #f0f7ff;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #1a6aa2;
    font-size: 14px;
    color: #555;
}

/* Urgent Needs */
.urgent-needs-section {
    margin-bottom: 80px;
}

.urgent-header {
    text-align: center;
    margin-bottom: 50px;
}

.urgent-header h2 {
    font-size: 36px;
    color: #0d4d80;
    margin-bottom: 15px;
}

.urgent-header p {
    font-size: 18px;
    color: #666;
}

.urgent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.urgent-item {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.urgent-item:hover {
    transform: translateY(-5px);
}

.urgent-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.urgent-item h3 {
    color: #0d4d80;
    margin-bottom: 10px;
    font-size: 20px;
}

.urgent-item p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.priority-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.critical .priority-tag { background: #e53e3e; }
.high .priority-tag { background: #dd6b20; }
.medium .priority-tag { background: #d69e2e; }

/* Success Stories */
.success-stories {
    margin-bottom: 80px;
}

.success-stories h2 {
    text-align: center;
    font-size: 36px;
    color: #0d4d80;
    margin-bottom: 50px;
}

.stories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.story {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.story-content {
    text-align: center;
}

.story-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.story-content h3 {
    color: #0d4d80;
    margin-bottom: 20px;
    font-size: 24px;
}

.story-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.story-items {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* CTA Section */
.household-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0d4d80;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.cta-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #1a6aa2 0%, #0d4d80 100%);
    color: white;
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, #0d4d80 0%, #1a6aa2 100%);
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: white;
    color: #0d4d80;
    border: 2px solid #0d4d80;
}

.cta-btn.secondary:hover {
    background: #0d4d80;
    color: white;
    transform: translateY(-2px);
}

.cta-btn.outline {
    background: transparent;
    color: #0d4d80;
    border: 2px solid #0d4d80;
}

.cta-btn.outline:hover {
    background: #0d4d80;
    color: white;
    transform: translateY(-2px);
}

.cta-contact {
    font-size: 14px;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .household-banner {
        padding: 60px 0;
    }
    
    .banner-content h1 {
        font-size: 36px;
    }
    
    .banner-stats {
        gap: 30px;
    }
    
    .importance-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .standards-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .process-cards {
        grid-template-columns: 1fr;
    }
    
    .urgent-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-container {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .banner-content h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .household-cta {
        padding: 40px 20px;
    }
    
    .quality-standards {
        padding: 30px 20px;
    }
}/* End custom CSS */