.elementor-12188 .elementor-element.elementor-element-5d57d08{--display:flex;}/* Start custom CSS for html, class: .elementor-element-c237693 *//* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

/* Container */
.life-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

/* Main Title */
.main-title {
    background: #880000;  /* Dark red background */
    color: #ffffff;       /* White text */
    font-size: 2rem;      /* Large text */
    font-weight: bold;    /* Bold text */
    text-transform: uppercase;
    padding: 15px 20px;
    text-align: center;
    border-radius: 8px;
    display: inline-block;
}

/* Grid Layout */
.life-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Box Styling */
.life-box {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
    gap: 15px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

/* Gradient Backgrounds */
.life-box:nth-child(1) { background: linear-gradient(135deg, #b68d40, #8d6b29); }
.life-box:nth-child(2) { background: linear-gradient(135deg, #d4af37, #a9842a); }
.life-box:nth-child(3) { background: linear-gradient(135deg, #c9a227, #967e1b); }
.life-box:nth-child(4) { background: linear-gradient(135deg, #b99732, #7d5d1a); }
.life-box:nth-child(5) { background: linear-gradient(135deg, #e4b144, #a6802c); }
.life-box:nth-child(6) { background: linear-gradient(135deg, #d1a33c, #8d6825); }
.life-box:nth-child(7) { background: linear-gradient(135deg, #bfa332, #7b5d1a); }
.life-box:nth-child(8) { background: linear-gradient(135deg, #cc9d2a, #8a6a1d); }
.life-box:nth-child(9) { background: linear-gradient(135deg, #e0b042, #997f2b); }
.life-box:nth-child(10) { background: linear-gradient(135deg, #c8a028, #876e1b); }

/* Title Text Styling */
.life-box h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #880000; /* Title text is now #880000 */
    margin-bottom: 5px;
}

/* Paragraph Styling */
.life-box p {
    font-size: 1rem;
    color: #f0e6d2;
    line-height: 1.5;
}

/* Icon Styling */
.life-box i {
    font-size: 2rem;
    color: #880000;
}

/* Hover Effect */
.life-box:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .life-box {
        flex-direction: column;
        text-align: center;
    }
}/* End custom CSS */