.elementor-19524 .elementor-element.elementor-element-07eb100{--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 *//* --- CSS STYLES --- */

/* CSS Reset and Basic Styles */
.stackup-body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #2F2F2F;
    line-height: 1.6;
}

/* Container for consistent centering and padding */
.fh-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0px 20px;
}

/* --- Hero Section --- */
.fh-hero {
    text-align: center;
    padding: 80px 20px;
}
.fh-hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #2F2F2F;
}
.fh-hero h1 span {
    color: #FE385A;
}
.fh-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #6b7280;
}
.fh-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.fh-button {
    display: inline-block;
    background-color: #ffffff;
    color: #FE385A;
    border: 2px solid #FE385A;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.fh-button:hover {
    background-color: #FE385A;
    color: #ffffff;
    transform: scale(1.05);
}

/* --- Section Headers --- */
.fh-section-header {
    text-align: center;
    margin-bottom: 50px;
}
.fh-section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #2F2F2F;
}
.fh-section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Main Service Sections (Alternating Layout) --- */
.fh-service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background-color: #f9fafb;
    padding: 50px;
    border-radius: 30px;
}
.fh-service-row .fh-text-content, .fh-service-row .fh-image-content {
    flex: 1;
}
.fh-service-row:nth-child(even) {
    flex-direction: row-reverse;
}
.fh-service-row img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.fh-service-row h3 {
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: #2F2F2F;
}

/* --- Provider Grid Section --- */
.fh-provider-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.fh-provider-logo {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 160px;
    border: 1px solid #e5e7eb;
    text-decoration: none;
}
.fh-provider-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
}
.fh-provider-logo img {
    max-width: 120px;
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}
.fh-provider-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Why Us Section --- */
.fh-why-us-section {
    background-color: #2F2F2F;
    color: #ffffff;
    border-radius: 30px;
    padding: 60px 50px;
    margin-top: 60px;
}
.fh-why-us-section .fh-section-header h2 {
    color: #ffffff;
}
.fh-why-us-section .fh-section-header p {
    color: #d1d5db;
}
.fh-why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.fh-why-us-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.fh-why-us-item svg {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    color: #FE385A;
}
.fh-why-us-item p {
    color: #d1d5db;
}

/* --- FAQ Section --- */
.fh-faq-section {
    max-width: 800px;
    margin: 80px auto 0 auto;
}
.fh-faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.fh-faq-item:last-child {
    border-bottom: none;
}
.fh-faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fh-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding-top 0.5s ease;
    padding-top: 0;
    color: #6b7280;
}
.fh-faq-item.active .fh-faq-answer {
    max-height: 300px; /* Adjust if your answers are longer */
    padding-top: 15px;
}
.fh-faq-question .icon {
    transition: transform 0.3s ease;
    color: #FE385A;
    font-weight: bold;
    font-size: 1.5rem;
}
.fh-faq-item.active .icon {
    transform: rotate(45deg);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .fh-container {
        padding: 40px 15px;
    }
    .fh-hero h1 {
        font-size: 2.8rem;
    }
    .fh-section-header h2 {
        font-size: 2.2rem;
    }
    .fh-service-row, .fh-service-row:nth-child(even) {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
        margin-bottom: 50px;
    }
    .fh-service-row h3 {
        font-size: 1.8rem;
    }
    .fh-why-us-section {
        padding: 40px 30px;
    }
    .fh-provider-logo {
        width: 130px;
        height: 65px;
        padding: 15px;
    }
    .fh-faq-question {
        font-size: 1.1rem;
    }
}/* End custom CSS */