.elementor-6429 .elementor-element.elementor-element-19aacb5{--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-6429 .elementor-element.elementor-element-19aacb5.e-con{--flex-grow:0;--flex-shrink:0;}@media(max-width:767px){.elementor-6429 .elementor-element.elementor-element-19aacb5{--width:336px;}}/* Start custom CSS for text-editor, class: .elementor-element-230cddb *//* Styling for the unordered list in Key Insights section */
ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Custom checkmark using primary color #833F2E */
ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #833F2E; /* Primary color */
    font-size: 18px;
    font-weight: bold;
}

/* Table styling with primary color #833F2E for header */
div[style*="overflow-x:auto"] {
    width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: Montserrat, Arial, sans-serif;
}

table tr th {
    background: #833F2E !important; /* Primary color for table header */
    color: #fff !important;
    padding: 10px;
    text-align: left;
}

table tr td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* Author box styling for general layout */
.author-box {
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
}

/* Author box image styling */
.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

/* Link styling to use primary color #833F2E instead of blue */
article a[style*="color:#0073e6"],
article a {
    color: #833F2E !important; /* Primary color with increased specificity */
    text-decoration: none !important;
    transition: color 0.3s ease;
}

article a[style*="color:#0073e6"]:hover,
article a:hover {
    color: #5C2C1F !important; /* Darker shade for hover */
}

/* Mobile responsiveness for author box */
@media (max-width: 768px) {
    .author-box {
        flex-direction: column; /* Stack image and text on mobile */
        text-align: center;
        padding: 10px;
    }

    .author-box img {
        width: 60px; /* Smaller image size for mobile */
        height: 60px;
        margin-bottom: 10px;
    }

    .author-box div {
        width: 100%; /* Ensure text takes full width */
    }
}

@media (max-width: 480px) {
    .author-box img {
        width: 50px; /* Further reduce image size for small screens */
        height: 50px;
    }

    .author-box {
        padding: 8px;
    }
}/* End custom CSS */