.elementor-843 .elementor-element.elementor-element-6a0c9ea3{--display:flex;}.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 *//* TABLE STYLES */
.roof-calc-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    color: #000;
    margin: 25px 0;
    border: 2px solid #000;
}
.roof-calc-table th {
    background-color: #f04e23; /* Orange */
    color: #fff;
    padding: 15px;
    text-align: left;
    border: 1px solid #000;
    font-weight: 700;
}
.roof-calc-table td {
    padding: 12px 15px;
    border: 1px solid #000;
}
.roof-calc-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.trust-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}
.trust-table th, .trust-table td {
    border: 2px solid #000;
    padding: 20px;
    text-align: center;
    vertical-align: top;
}
.trust-table th {
    background-color: #000;
    color: #fff;
    font-size: 1.1em;
    font-weight: 700;
}
.trust-table tr:nth-child(odd) td:first-child {
    background-color: rgba(240, 78, 35, 0.1); /* Light Orange Tint */
}
.trust-table tr:nth-child(even) td:last-child {
    background-color: rgba(0, 0, 0, 0.05); /* Light Gray Tint */
}

/* PRO TIP STYLES */
.pro-tip-container {
    margin: 40px 0;
}
.pro-tip {
    border: 2px solid #000;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}
.pro-tip-header {
    background-color: #000;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.pro-tip-icon {
    font-size: 1.8em;
    display: inline-block;
}
.pro-tip-header h3 {
    margin: 0;
    color: #fff;
}
.pro-tip-content {
    background-color: #fff;
    padding: 20px;
    border-top: 3px solid #f04e23;
}
.pro-tip-content p {
    margin: 0;
    color: #000;
}

/* FAQ STYLES */
.faq-wrapper {
    margin: 30px 0;
}
.faq-item {
    margin-bottom: 10px;
    border: 2px solid #000;
    border-radius: 5px;
    overflow: hidden;
}
.faq-question {
    background-color: #000;
    color: #fff;
    padding: 18px 20px;
    width: 100%;
    text-align: left;
    border: none;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question:hover {
    background-color: #333;
}
.faq-icon {
    font-size: 1.2em;
    font-weight: bold;
}
.faq-question.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    background-color: #fff;
    color: #000;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open {
    padding: 20px;
    max-height: 1000px;
}
.faq-answer p {
    margin: 0;
}/* End custom CSS */