.elementor-191016 .elementor-element.elementor-element-236a1cc8{--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-191016 .elementor-element.elementor-element-695a88fb.elementor-element{--align-self:center;}.elementor-191016 .elementor-element.elementor-element-695a88fb .tp-el-title{font-family:"Syne", Sans-serif;font-size:90px;}.elementor-191016 .elementor-element.elementor-global-16666{width:initial;max-width:initial;}.elementor-191016 .elementor-element.elementor-global-16666 > .elementor-widget-container{margin:0px 0px -100px 0px;}.elementor-191016 .elementor-element.elementor-global-16666.elementor-element{--align-self:center;}@media(max-width:767px){.elementor-191016 .elementor-element.elementor-element-695a88fb .tp-el-title{font-size:49px;letter-spacing:2.5px;word-spacing:0.1em;}}/* Start custom CSS for html, class: .elementor-element-1331c221 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Syne', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    color: #1a1a1a;
    line-height: 1.6;
    min-height: 100vh;
}

.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.faq-container {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 250, 0.9));
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    position: relative;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
}

.faq-item.active {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 50px rgba(0, 0, 0, 0.08);
    border-color: #000000;
    background: linear-gradient(135deg, rgba(240, 240, 240, 0.95), rgba(250, 250, 250, 0.9));
}

.faq-question {
    padding: 2rem 3rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03), transparent);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), transparent);
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, #000000, #333333);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.faq-item.active .faq-question::before {
    transform: scaleY(1);
}

.question-content {
    flex: 1;
}

.question-title {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.faq-item.active .question-title {
    color: #000000;
}

.question-category {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.faq-item.active .question-category {
    color: #333333;
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a1a1a, #333333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    transform: rotate(180deg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #ffffff;
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 20px;
    height: 3px;
}

.faq-icon::after {
    width: 3px;
    height: 20px;
}

.faq-item.active .faq-icon::after {
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding 0.5s ease;
    padding: 0 3rem;
}

.faq-item.active .faq-answer {
    max-height: 1500px;
    padding: 2rem 3rem 3rem;
}

.answer-content {
    color: #333333;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.answer-highlight {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #000000;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.highlight-title {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-title::before {
    content: '⚡';
    font-size: 1.3rem;
}

.highlight-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.highlight-description {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.6;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.spec-item {
    background: rgba(0, 0, 0, 0.02);
    padding: 1.2rem;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.04);
}

.spec-label {
    font-size: 0.85rem;
    color: #666666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.spec-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.maintenance-steps {
    list-style: none;
    counter-reset: step-counter;
    margin-top: 1rem;
}

.maintenance-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333333;
}

.maintenance-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.service-list {
    margin-top: 1rem;
    line-height: 2;
}

.service-list-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333333;
}

.service-list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: 700;
    font-size: 1.2rem;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.faq-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.03), transparent);
    pointer-events: none;
}

.faq-item:hover::after {
    animation: shine 0.8s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 1rem;
    }

    .faq-question {
        padding: 1.5rem;
        gap: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.5rem;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
    }

    .faq-icon::before {
        width: 16px;
    }

    .faq-icon::after {
        height: 16px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .highlight-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .question-title {
        font-size: 1rem;
    }

    .answer-highlight {
        padding: 1rem;
    }

    .maintenance-steps li {
        padding-left: 2.5rem;
    }

    .maintenance-steps li::before {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}/* End custom CSS */