html, body {
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    font-size: 24px;
}
.video,
.video-slider-container,
.video-slider {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    overflow: hidden;
    height: 675px;
    max-height: 100vh;
    background: #fff;
    position: relative;
}
.video-slider {
    display: flex;
    flex-direction: row;
    transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
    margin: 0;
    padding: 0;
    height: 675px;
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    overflow: hidden;
    position: relative;
}
.video-slider video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    min-width: 100vw;
    min-height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    border-radius: 0;
    background: #fff; /* zmiana z #000 na #fff */
    margin: 0;
    padding: 0;
    display: block;
    z-index: 1;
}
.video-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: none;
    border: none;
    border-radius: 50%;
    width: 66px;
    height: 66px;
    font-size: 3.3rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    user-select: none;
    color: #fff;
}
.video-arrow.left {
    left: 24px;
}
.video-arrow.right {
    right: 24px;
}
.video-arrow:hover {
    background: none;
    color: #ccc;
}
.video-shadow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
    z-index: 1;
    pointer-events: none;
}
.video-ombre {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 90px;
    background: linear-gradient(to bottom, transparent, #fff 90%);
    z-index: 2;
    pointer-events: none;
}
.video-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    pointer-events: auto;
    gap: 15px;
}
.video-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    display: inline-block;
}
.video-dots .dot.active {
    background: #fff;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.video-check-date-bar {
    position: absolute;
    left: 50%;
    bottom: 81px;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 630px;
    min-width: 330px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.55);
    border-radius: 10.5px;
    gap: 0;
    padding: 6px 6px 6px 6px;
    z-index: 4;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    backdrop-filter: blur(1.5px);
}
.video-check-date-form {
    width: 100%;
    display: flex;
    gap: 6px; 
}
.video-date-input {
    flex: 3 1 0;
    min-width: 0;
    padding: 10.5px 15px;
    border-radius: 7.5px;
    border: none;
    font-size: 1.05rem;
    outline: none;
    background: #fff;
    color: #222;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    transition: box-shadow 0.2s;
}
.video-date-input:focus {
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.video-date-btn {
    flex: 2 1 0;
    min-width: 0;
    padding: 10.5px 0;
    border-radius: 7.5px;
    border: none;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    height: 67.5px;
}
.video-date-btn:hover, .video-date-btn:focus {
    background: #222;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.efekty-pracy {
    width: 100%;
    max-width: 100vw;
    margin: 60px 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    clear: both;
    margin-bottom: 50px;
}

.efekty-title {
    font-size: 2.6rem;
    font-weight: 400;
    text-align: center;
    margin: 0 0 10px 0;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
}
.efekty-title img {
    height: 50px;
    margin-left: 12px;
    margin-right: 0;
    display: inline-block;
    vertical-align: middle;
}

.efekty-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    text-align: center;
    margin: 0 0 32px 0;
    color: #222;
}

.efekty-galeria {
    display: flex;
    flex-direction: row;
    gap: 36px;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.efekty-kafelek {
    background: #f3f3f3;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 20px 20px 14px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 360px;
    min-width: 260px;
    max-width: 400px;
    box-sizing: border-box;
    transition: box-shadow 0.2s, transform 0.2s;
}

.efekty-kafelek img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
    background: #ddd;
    display: block;
    aspect-ratio: 9/7;
}

.efekty-opis {
    font-size: 1.1rem;
    color: #222;
    font-weight: 400;
    margin: 0 0 0 2px;
    letter-spacing: 0.01em;
}

.efekty-kafelek:hover, .efekty-kafelek:focus-within {
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}

.efekty-btn-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.efekty-btn {
    display: inline-block;
    background: #111;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 36px;
    text-decoration: none;
    margin: 0 auto;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    letter-spacing: 0.01em;
}

.efekty-btn:hover, .efekty-btn:focus {
    background: #222;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}
@media (max-width: 900px) {
    .video,
    .video-slider-container,
    .video-slider {
        width: 100vw;
        max-width: 100vw;
        min-width: 0;
        overflow: hidden;
        height: 70vw;
        max-height: 100vh;
        aspect-ratio: 16/9;
        position: relative;
        background: #fff;
    }
    .video-slider {
        height: 70vw;
        aspect-ratio: 16/9;
        min-height: unset;
        max-height: 100vw;
        position: relative;
    }
    .video-slider video {
        width: 100vw;
        height: 100%;
        min-width: 100vw;
        min-height: 100%;
        max-width: none;
        max-height: none;
        object-fit: cover;
        position: absolute;
        left: 0;
        top: 0;
        border-radius: 0;
        background: #fff;
        z-index: 1;
    }
    .video-check-date-bar {
        width: 80vw;
        max-width: 50vw;
        padding: 4px 4px 4px 4px;
        
    }
    .video-check-date-form {
        gap: 4px;
    }
    .video-date-input, .video-date-btn {
        font-size: 0.7rem;
        padding: 6px 0;
    }

    .video-date-btn {
        height: 45px;
    }
    .video-dots {
        gap: 8px;
    }
    .video-dots .dot {
        width: 7px;
        height: 7px;
    }
    .uslugi-lista {
        align-items: flex-start;
        font-size: 1.3em;
        padding-left: 4vw;
        padding-right: 0;
        gap: 3vw;
        text-align: left;
    }
    .efekty-kafelek {
        width: 360px;
        min-width: 260px;
        max-width: 400px;
    }
    .efekty-kafelek img {
        height: 280px;
        aspect-ratio: 9/7;
        min-height: unset;
        max-height: unset;
    }
}
@media (max-width: 700px) {
    .video,
    .video-slider-container,
    .video-slider {
        width: 100vw;
        max-width: 100vw;
        min-width: 0;
        overflow: hidden;
        height: 75vh;
        max-height: 100vh;
        aspect-ratio: unset;
        position: relative;
        background: #fff;
    }
    .video-slider {
        height: 75vh;
        max-height: 100vh;
        aspect-ratio: unset;
        position: relative;
    }
    .video-slider video {
        width: 100vw;
        height: 100%;
        min-width: 100vw;
        min-height: 100%;
        max-width: none;
        max-height: none;
        object-fit: cover;
        position: absolute;
        left: 0;
        top: 0;
        border-radius: 0;
        background: #fff;
        z-index: 1;
    }
    .video-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
    .video-check-date-bar {
        width: 30vw;
        max-width: 30vw;
        border-radius: 10px;
        bottom: 60px;
        min-height: 45px;
        padding: 4px 4px 4px 4px;
    }
    .video-check-date-form {
        gap: 2px;
    }
    .video-date-input, .video-date-btn {
        font-size: 0.7rem;
        padding: 2px 10px;
        border-radius: 7px;
    }
    .video-date-btn {
        height: 45px;
    }
    .video-dots {
        gap: 5px;
    }
    .video-dots .dot {
        width: 5px;
        height: 5px;
    }
    .uslugi-lista {
        align-items: flex-start;
        font-size: 1em; 
        gap: 4vw;
        padding-left: 4vw;
        padding-right: 0;
        text-align: left;
    }
    .efekty-kafelek {
        width: 360px;
        min-width: 260px;
        max-width: 400px;
    }
    .efekty-kafelek img {
        height: 280px;
        aspect-ratio: 9/7;
        min-height: unset;
        max-height: unset;
    }
}
@media (max-width: 600px) {
    .video,
    .video-slider-container,
    .video-slider {
        width: 100vw;
        max-width: 100vw;
        min-width: 0;
        overflow: hidden;
        height: 75vh;
        max-height: 100vh;
        aspect-ratio: unset;
        position: relative;
        background: #fff;
    }
    .video-slider {
        height: 75vh;
        max-height: 100vh;
        aspect-ratio: unset;
        position: relative;
    }
    .video-slider video {
        width: 100vw;
        height: 100%;
        min-width: 100vw;
        min-height: 100%;
        max-width: none;
        max-height: none;
        object-fit: cover;
        position: absolute;
        left: 0;
        top: 0;
        border-radius: 0;
        background: #fff;
        z-index: 1;
    }
    .video-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
    .video-check-date-bar {
        width: 30vw;
        max-width: 30vw;
        border-radius: 10px;
        bottom: 60px;
        min-height: 45px;
        padding: 4px 4px 4px 4px;
    }
    .video-check-date-form {
        gap: 2px;
    }
    .video-date-input, .video-date-btn {
        font-size: 0.7rem;
        padding: 2px 10px;
        border-radius: 7px;
    }
    .video-date-btn {
        height: 45px;
    }
    .video-dots {
        gap: 5px;
    }
    .video-dots .dot {
        width: 5px;
        height: 5px;
    }
    .uslugi-lista {
        align-items: flex-start;
        font-size: 1em;
        gap: 4vw;
        padding-left: 4vw;
        padding-right: 0;
        text-align: left;
        line-height: 1.5;
        margin-top: 45px;
    }
    .efekty-title {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin: 0 0 10px 0;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    }
    .efekty-title img {
        height: 40px;
        margin-left: 1px;
        margin-right: 0;
        display: inline-block;
        vertical-align: middle;
    }
}
.main-title{
    text-align: center;
    font-size: 50px;
    width: 100%;
    background-color: aqua;
}
main p{
    padding-bottom: 20px;
}
.MJ {
    text-align: center;
    width: 100%;
    max-width: 100vw;
    font-size: 40px;
    box-sizing: border-box;
    overflow-wrap: break-word;
    padding-left: 10px;
    padding-right: 10px;
}

.MD {
    width: 100%;
    max-width: 100vw;
    font-size: 26px;
    box-sizing: border-box;
    overflow-wrap: break-word;
    padding-left: 20vw;
    padding-right: 15vw;
    font-weight: 400;
    line-height: 1.7;
}

.MT {
    text-align: center;
    font-size: 32px;
}
.MC{
    margin-top: 20px;
    text-decoration: none;
    background-color: black;
    color: white;
    text-align: center;
    max-width: 100vw;
    padding: 10px 25px 10px 25px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.2s;
    cursor: pointer;
}

.MC:hover, .MC:focus {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

@media (max-width: 1024px) {
    .MC {
        font-size: 18px;
        padding: 10px 22px;
    }
}

@media (max-width: 768px) {
    .MC {
        font-size: 16px;
        padding: 9px 18px;
    }
}

@media (max-width: 480px) {
    .MC {
        font-size: 14px;
        padding: 8px 15px;
    }
}

@media (max-width: 1024px) {
    .MJ {
        font-size: 32px;
    }

    .MD {
        font-size: 22px;
        padding-left: 10vw;
        padding-right: 10vw;
    }

    .MT {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .MJ {
        font-size: 28px;
    }

    .MD {
        font-size: 20px;
        padding-left: 6vw;
        padding-right: 6vw;
    }

    .MT {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .MJ {
        font-size: 26px;
    }


    .MD {
        font-size: 18px;
        padding-left: 4vw;
        padding-right: 4vw;
    }

    .MT {
        font-size: 20px;
    }
}


.Uslugi {
    background-color: #fff;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.uslugi-blok {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    gap: 0;
    padding: 0;
    margin: 32px auto 0 auto;
    background: none;
    box-sizing: border-box;
}

.uslugi-lista {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3vw;
    font-size: 30px;
    padding-left: 10vw;
    padding-right: 0;
    line-height: 1.18;
}
.uslugi-lista p,
.uslugi-lista a {
    margin: 0;
    color: #111;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s, text-decoration 0.2s;
    cursor: pointer;
    font-size: inherit;
    position: relative;
    overflow: hidden;
}

.uslugi-lista p::after,
.uslugi-lista a::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0.08em;
    width: 0;
    height: 2px;
    background: #000000;
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
    z-index: 1;
}

.uslugi-lista p:hover::after,
.uslugi-lista p:focus::after
{
    width: 100%;
}

.uslugi-lista a {
    text-decoration: none;
}

.uslugi-zdjecie {
    flex: 0 0 62%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-right: 4vw;
    width: 60%;
    max-width: 60%;
}

.uslugi-zdjecie img {
    width: 80%;
    height: auto;
    max-width: 100%;
    min-width: 0;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    margin-left: 0;
    transition: clip-path 0.3s cubic-bezier(.4,0,.2,1), filter 0.3s;
    clip-path: inset(0 0 0 0);
    filter: grayscale(0%);
}

@media (max-width: 1100px) {
    .uslugi-blok {
        max-width: 98%;
        gap: 24px;
    }
    .uslugi-zdjecie img {
        width: 100%;
        max-width: 480px;
    }
}

@media (max-width: 900px) {
    .uslugi-blok {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        max-width: 100%;
        padding: 0;
    }
    .uslugi-lista {
        align-items: flex-start;
        font-size: 1.3em;
        padding-left: 4vw;
        padding-right: 0;
        gap: 3vw;
        text-align: left;
    }
    .uslugi-zdjecie {
        justify-content: center;
        width: 100%;
        padding-right: 0;
        max-width: 100%;
    }
    .uslugi-zdjecie img {
        width: 70vw;
        max-width: 70vw;
        height: auto;
        aspect-ratio: unset;
    }
}
@media (max-width: 600px) {
    .uslugi-blok {
        gap: 12px;
        max-width: 100%;
    }
    .uslugi-lista {
        align-items: flex-start;
        font-size: 1.3rem;
        gap: 4vw;
        padding-left: 4vw;
        padding-right: 0;
        text-align: left;
        line-height: 1.5;
        margin-top: 5px;
    }
    .uslugi-zdjecie img {
        max-width: 98%;
        width: 98%;
        margin-top: 10px;
    }
}

.opinie-bg {
    width: 100vw;
    min-height: 420px;
    height: 420px;
    max-width: 100vw;
    background: url('photo/tlomain1.png') center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.opinie-overlay {
    width: 100vw;
    max-width: 100vw;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.44) 0%, rgba(0,0,0,0.33) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
}
.opinie-title {
    font-size: 2.6rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin: 0 0 60px 0;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.opinie-title img {
    height: 42px;
    margin-left: 10px;
    vertical-align: middle;
    display: inline-block;
}

.opinie-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: #fff;
    text-align: center;
    margin: 0 0 48px 0; /* było 32px, teraz większy odstęp */
    letter-spacing: 0.01em;
}

.opinie-btn {
    display: inline-block;
    background: #fff;
    color: #111;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 36px;
    text-decoration: none;
    margin: 0 auto;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    margin-top: 12px; /* dodatkowy odstęp nad przyciskiem */
}

.opinie-btn:hover, .opinie-btn:focus {
    background: #222;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}

@media (max-width: 900px) {
    .opinie-bg {
        min-height: 320px;
        height: 320px;
    }
    .opinie-title {
        font-size: 2rem;
        gap: 10px;
        margin-bottom: 28px;
    }
    .opinie-title img {
        height: 32px;
    }
    .opinie-subtitle {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }
    .opinie-btn {
        font-size: 1rem;
        padding: 10px 24px;
    }
}

@media (max-width: 600px) {
    .opinie-bg {
        min-height: 340px;
        height: 340px;
    }
    .opinie-title {
        font-size: 2.1rem;
        gap: 10px;
        margin-bottom: 28px;
    }
    .opinie-title img {
        height: 32px;
        margin-left: 8px;
    }
    .opinie-subtitle {
        font-size: 1.15rem;
        margin-bottom: 32px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .opinie-btn {
        font-size: 0.95rem;
        padding: 8px 18px;
    }
}

.qa-section {
    width: 100vw;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.qa-container {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 60px auto;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 56px;
    box-sizing: border-box;
}

.qa-title {
    font-size: 2.3rem;
    font-weight: 600;
    margin: 0 0 22px 0;
    text-align: left;
    color: #111;
    letter-spacing: 0.01em;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    display: block;
    align-self: flex-start;
}

.qa-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: #222;
    margin: 0 0 38px 0;
    text-align: left;
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding-left: 0;
}

.qa-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
}

.qa-item {
    border-bottom: 2px solid #222;
    padding: 0;
    margin: 0;
    transition: background 0.2s;
    background: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.qa-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.25rem;
    font-weight: 400;
    color: #222;
    text-align: left;
    padding: 24px 0 8px 0;
    cursor: pointer;
    transition: color 0.2s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.qa-question::after {
    content: "▼";
    font-size: 0.85em;
    color: #222;
    margin-left: 8px;
    transition: transform 0.3s;
    font-weight: 700;
    letter-spacing: -0.07em;
    vertical-align: middle;
}

.qa-item.open .qa-question::after {
    transform: rotate(-180deg);
}

.qa-answer {
    width: 100%;
    font-size: 1.08rem;
    color: #222;
    font-weight: 400;
    padding: 0 0 18px 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s cubic-bezier(.4,0,.2,1), opacity 0.2s;
    box-sizing: border-box;
    text-align: left;
}

.qa-item.open .qa-answer {
    opacity: 1;
    visibility: visible;
    padding-top: 2px;
}

@media (max-width: 1200px) {
    .qa-container {
        max-width: 98vw;
        padding: 0 24px;
    }
}

@media (max-width: 900px) {
    .qa-container {
        max-width: 100vw;
        padding: 0 10px;
    }
    .qa-title {
        font-size: 2.1rem;
        margin-bottom: 18px;
    }
    .qa-subtitle {
        font-size: 1.25rem;
        margin-bottom: 28px;
    }
    .qa-question {
        font-size: 1.05rem;
        padding: 18px 0 8px 0;
    }
    .qa-answer {
        font-size: 0.98rem;
        padding-bottom: 12px;
    }
}

@media (max-width: 600px) {
    .qa-container {
        max-width: 100vw;
        padding: 0 2vw;
        margin: 32px auto 32px auto;
    }
    .qa-title {
        font-size: 1.8rem;
        margin-bottom: 14px;
    }
    .qa-subtitle {
        font-size: 1.25rem;
        margin-bottom: 18px;
    }
    .qa-question {
        font-size: 0.95rem;
        padding: 12px 0 6px 0;
    }
    .qa-answer {
        font-size: 0.92rem;
        padding-bottom: 8px;
    }
    .qa-list{
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (max-width: 400px) {
    .qa-title {
        font-size: 1.6rem;
    }
    .qa-subtitle {
        font-size: 1.08rem;
    }
}

.MT.anim-fade-in {
    opacity: 0;
    transform: translateY(32px) scale(0.98);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
    will-change: opacity, transform;
    filter: blur(6px);
}
.MT.anim-fade-in.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}
.modal-video {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,30,30,0.72);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(2.5px);
  transition: background 0.3s;
}
.modal-video-content {
  position: relative;
  width: 80vw;
  max-width: 900px;
  background: transparent;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal-video video {
  width: 100%;
  max-height: 70vh;
  border-radius: 12px;
  background: #000;
  outline: none;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.modal-video-close {
  position: absolute;
  top: -2px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.8rem;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
  padding: 0 12px;
}
.modal-video-close:hover {
  color: #505050;
}
body.modal-video-open > *:not(.modal-video) {
  filter: blur(6px) grayscale(0.2) brightness(0.92);
  pointer-events: none;
  user-select: none;
}
body.modal-video-open {
  overflow: hidden;
}
@media (max-width: 900px) {
  .modal-video-content {
    width: 96vw;
    max-width: 98vw;
  }
  .modal-video video {
    max-height: 50vh;
  }
  .modal-video-close {
    top: -2px;
    font-size: 2.2rem;
  }
}
@media (max-width: 600px) {
  .modal-video-content {
    width: 99vw;
    max-width: 99vw;
    border-radius: 8px;
  }
  .modal-video video {
    max-height: 38vh;
    border-radius: 8px;
  }
  .modal-video-close {
    top: -2px;
    font-size: 1.7rem;
    right: 0;
    padding: 0 8px;
  }
}

