.elementor-12291 .elementor-element.elementor-element-2a116bd{--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-12291 .elementor-element.elementor-element-b650468{--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;--margin-top:80px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for html, class: .elementor-element-da64552 *//* ===================================== */
/* --- 1. Global & Utility Styles --- */
/* ===================================== */
.material-guide-page {
    font-family: Arial, sans-serif;
    color: #444;
    padding: 20px 0;
}

.section-heading {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin: 60px 0 30px 0;
}

/* ===================================== */
/* --- 2. Header and Image Section --- */
/* ===================================== */
.guide-header-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 0 15px;
}

.main-title {
    font-size: 38px;
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 17px;
    color: #666;
    margin-bottom: 30px;
}

.material-image-wrap {
    margin: 20px 0;
    overflow: hidden;
    border-radius: 8px;
}

.material-showcase-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================== */
/* --- 3. Comparison Table Section --- */
/* ===================================== */
.material-table-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.comparison-table {
    display: table;
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    overflow: hidden;
}

.table-row {
    display: table-row;
}

.table-row:nth-child(even) {
    background-color: #f9f9f9;
}

.table-row:not(.table-header):hover {
    background-color: #f0f0f0;
}

.table-header {
    background-color: #f0f0f0;
    font-weight: 600;
    color: #333;
}

.table-cell {
    display: table-cell;
    padding: 15px 20px;
    border: 1px solid #eee;
    font-size: 15px;
    line-height: 1.4;
}

.not-sure-text {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-top: 25px;
    font-style: italic;
}

/* ===================================== */
/* --- 4. Categories Explained Section --- */
/* ===================================== */
.material-categories-section {
    padding: 0 15px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #f75d3d; /* Highlight bar */
}

.category-icon-wrap {
    width: 50px;
    height: 50px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.category-icon-wrap i {
    font-size: 20px;
    color: #555;
}

.category-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-bottom: 5px;
}

.category-info {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    font-style: italic;
}

.material-list p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin: 10px 0;
}

.material-list strong {
    font-weight: 600;
    color: #222;
}

/* ===================================== */
/* --- 5. How to Choose Section --- */
/* ===================================== */
.how-to-choose-section {
    padding: 0 15px 40px 15px;
    max-width: 900px;
    margin: 0 auto;
}

.choice-columns {
    display: flex;
    gap: 30px;
}

.choice-column {
    flex: 1;
    background-color: #fcfcfc;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.column-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
}

.question-list, .decision-guide {
    list-style: none;
    padding: 0;
    margin: 0;
}

.question-list li {
    font-size: 15px;
    line-height: 2.2;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.question-list li::before {
    content: "•";
    color: #f75d3d; /* Red bullet */
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: 0;
}

.decision-guide li {
    font-size: 15px;
    line-height: 2.2;
    color: #555;
}

.decision-guide strong {
    font-weight: 600;
    color: #333;
}


/* ===================================== */
/* --- 6. Mobile Responsiveness --- */
/* ===================================== */
@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

@media (max-width: 767px) {
    .main-title {
        font-size: 30px;
    }
    .section-heading {
        font-size: 24px;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    
    /* Stack comparison table on mobile */
    .table-cell {
        display: block;
        width: 100%;
        border-bottom: none;
        padding: 10px 15px;
    }

    .table-header {
        display: none; /* Hide header row on mobile for better flow */
    }
    
    .table-row {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
    }

    /* Stack category cards on mobile */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Stack choice columns on mobile */
    .choice-columns {
        flex-direction: column;
        gap: 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cc0b3a9 *//* --- Base Section Styling --- */
.cta-help-section {
    padding: 60px 20px;
    background-color: #f8f8f8; /* Light background color from the screenshot */
    text-align: center;
    border-radius: 8px; /* Optional: If you want slightly rounded edges for the whole section */
}

/* --- Heading and Subtext Styling --- */
.cta-heading {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
}

.cta-subtext {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons Container --- */
.cta-buttons-wrap {
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between buttons */
    margin-top: 30px;
}

/* --- General Button Styling (Base) --- */
.primary-cta-button, .secondary-cta-button {
    padding: 14px 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

/* --- Primary Button (Red/Orange) Styling --- */
.primary-cta-button {
    background-color: #f75d3d; /* Bright orange/red color */
    color: #ffffff;
    border: 2px solid #f75d3d;
}

.primary-cta-button:hover {
    background-color: #e84c2b;
    border-color: #e84c2b;
    color: #ffffff;
}

/* --- Secondary Button (White/Outline) Styling --- */
.secondary-cta-button {
    background-color: #ffffff;
    color: #444; /* Dark text color */
    border: 1px solid #ddd; /* Light gray border */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.secondary-cta-button:hover {
    background-color: #f0f0f0;
    color: #333;
    border-color: #ccc;
}

/* --- Icon Styling within Buttons --- */
.primary-cta-button i, .secondary-cta-button i {
    margin-right: 8px;
    font-size: 16px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 600px) {
    .cta-help-section {
        padding: 40px 15px;
    }
    
    .cta-heading {
        font-size: 24px;
    }
    
    /* Stack buttons vertically on small screens */
    .cta-buttons-wrap {
        flex-direction: column;
        gap: 10px;
        max-width: 300px; /* Constrain buttons width on mobile */
        margin-left: auto;
        margin-right: auto;
    }
    
    .primary-cta-button, .secondary-cta-button {
        width: 100%; /* Full width when stacked */
        justify-content: center;
    }
}/* End custom CSS */