.policy-center {
    max-width: 700px;
    margin: 40px auto;
    padding: 40px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 24px 0 rgba(0,0,0,0.07);
    text-align: center;
}
.policy-center h2 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
}
.policy-center p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: #333;
}
.policy-center a {
    color: #0077cc;
    text-decoration: underline;
}
    .montaz-galeria-section {
        margin: 48px 0 56px 0;
        padding: 0 16px;
    }
    .montaz-galeria-title {
        font-size: 2rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 32px;
        color: #1a2a3a;
    }
    .montaz-galeria-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        max-width: 1100px;
        margin: 0 auto;
    }
    .montaz-galeria-item {
        overflow: hidden;
        border-radius: 14px;
        box-shadow: 0 2px 12px 0 rgba(30,40,60,0.08);
        background: #f7fafd;
        transition: box-shadow 0.2s;
    }
    .montaz-galeria-item img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: transform 0.3s cubic-bezier(.4,1.4,.6,1);
        display: block;
    }
    .montaz-galeria-item:hover img {
        transform: scale(1.13);
        z-index: 2;
    }
    .montaz-galeria-item:hover {
        box-shadow: 0 6px 24px 0 rgba(30,40,60,0.16);
    }
    @media (max-width: 900px) {
        .montaz-galeria-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }
        .montaz-galeria-item img {
            height: 140px;
        }
    }
    @media (max-width: 600px) {
        .montaz-galeria-grid {
            grid-template-columns: 1fr;
            gap: 14px;
        }
        .montaz-galeria-item img {
            height: 110px;
        }
    }
        .montaz-faq-serwis-section {
            margin: 48px 0 56px 0;
            padding: 0 16px;
        }
        .montaz-faq-serwis-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 32px;
            color: #1a2a3a;
        }
        .montaz-faq-serwis-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            max-width: 900px;
            margin: 0 auto;
        }
        .montaz-faq-serwis-box {
            background: #f7fafd;
            border-radius: 16px;
            box-shadow: 0 2px 12px 0 rgba(30,40,60,0.08);
            padding: 28px 22px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            min-height: 120px;
            transition: box-shadow 0.2s;
        }
        .montaz-faq-serwis-box:hover {
            box-shadow: 0 6px 24px 0 rgba(30,40,60,0.16);
        }
        .montaz-faq-serwis-q {
            font-size: 1.12rem;
            font-weight: 700;
            color: #039be5;
            margin-bottom: 10px;
        }
        .montaz-faq-serwis-a {
            font-size: 1.05rem;
            color: #223344;
            font-weight: 500;
        }
        @media (max-width: 900px) {
            .montaz-faq-serwis-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .montaz-faq-serwis-box {
                padding: 20px 14px;
            }
        }
.price-comparison-desc {text-align: center;}
.cookie-policy-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 16px 0 rgba(30,40,60,0.10);
    z-index: 9999;
    padding: 0;
    animation: cookieBarFadeIn 0.4s;
}
@keyframes cookieBarFadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.cookie-policy-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 12px;
    font-size: 1.05rem;
    color: #223344;
    flex-wrap: wrap;
}
.cookie-policy-icon {
    font-size: 2rem;
    margin-right: 8px;
}
.cookie-policy-text {
    flex: 1 1 320px;
    font-size: 1.05rem;
    color: #223344;
}
.cookie-policy-text a {
    color: #039be5;
    text-decoration: underline;
    font-weight: 600;
}
.cookie-policy-btns {
    display: flex;
    gap: 12px;
}
.cookie-policy-btn {
    font-size: 1rem;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 32px;
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px 0 rgba(30,40,60,0.10);
}
.cookie-policy-btn-accept {
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
}
.cookie-policy-btn-decline {
    background: linear-gradient(90deg, #d32f2f 0%, #039be5 100%);
}
.cookie-policy-btn:hover {
    box-shadow: 0 6px 24px 0 rgba(30,40,60,0.16);
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 700px) {
    .cookie-policy-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 6px;
    }
    .cookie-policy-btns {
        width: 100%;
        justify-content: flex-start;
    }
    .cookie-policy-btn {
        width: 100%;
        margin-bottom: 6px;
    }
    .cookie-policy-text {
    flex: 0;
    }
}
.koszyk-trust-section {
    margin: 40px auto 56px auto;
    max-width: 600px;
    padding: 0 16px;
}
.koszyk-trust-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    background: #f7fafd;
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(30,40,60,0.08);
    padding: 28px 18px;
}
.koszyk-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 120px;
}
.koszyk-trust-icon {
    font-size: 2.4rem;
    color: #039be5;
    filter: drop-shadow(0 2px 8px #43a04733);
}
.koszyk-trust-label {
    font-size: 1.08rem;
    font-weight: 700;
    color: #223344;
    text-align: center;
}
@media (max-width: 700px) {
    .koszyk-trust-grid {
        gap: 18px;
        padding: 18px 6px;
    }
    .koszyk-trust-item {
        min-width: 80px;
    }
    .koszyk-trust-icon {
        font-size: 1.5rem;
    }
    .koszyk-trust-label {
        font-size: 0.98rem;
    }
}
.koszyk-cross-section {
    margin: 48px 0 56px 0;
    padding: 0 16px;
}
.koszyk-cross-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a2a3a;
    text-align: center;
}
.koszyk-cross-slider {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    max-width: 900px;
    margin: 0 auto;
}
.koszyk-cross-item {
    min-width: 180px;
    max-width: 220px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(30,40,60,0.08);
    padding: 18px 12px 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-snap-align: start;
    transition: box-shadow 0.2s, transform 0.2s;
}
.koszyk-cross-item:hover {
    box-shadow: 0 6px 24px 0 rgba(30,40,60,0.16);
    transform: translateY(-2px) scale(1.04);
}
.koszyk-cross-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(30,40,60,0.10);
}
.koszyk-cross-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #039be5;
    margin-bottom: 6px;
    text-align: center;
}
.koszyk-cross-price {
    font-size: 1.08rem;
    font-weight: 600;
    color: #43a047;
    text-align: center;
}
@media (max-width: 900px) {
    .koszyk-cross-slider {
        gap: 18px;
        max-width: 98vw;
    }
    .koszyk-cross-item {
        min-width: 140px;
        max-width: 180px;
        padding: 12px 6px 8px 6px;
    }
    .koszyk-cross-img {
        width: 56px;
        height: 56px;
    }
}
.koszyk-platnosci-section {
    margin: 40px auto 56px auto;
    max-width: 700px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px 0 rgba(30,40,60,0.07);
    padding: 32px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.koszyk-platnosci-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #039be5;
    margin-bottom: 18px;
    text-align: center;
}
.koszyk-platnosci-form {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.koszyk-platnosci-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #f7fafd;
    border-radius: 14px;
    box-shadow: 0 1px 6px 0 rgba(30,40,60,0.05);
    padding: 18px 16px 12px 16px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, border 0.2s;
    border: 2px solid transparent;
    min-width: 110px;
    min-height: 90px;
    position: relative;
}
.koszyk-platnosci-tile:hover,
.koszyk-platnosci-tile input:checked ~ .koszyk-platnosci-logo,
.koszyk-platnosci-tile input:checked ~ .koszyk-platnosci-label {
    background: #e3f2fd;
    border-color: #039be5;
    box-shadow: 0 4px 16px 0 rgba(30,40,60,0.10);
}
.koszyk-platnosci-tile input[type="radio"] {
    accent-color: #039be5;
    width: 20px;
    height: 20px;
    margin-bottom: 6px;
}
.koszyk-platnosci-logo {
    width: 48px;
    height: 32px;
    object-fit: contain;
    margin-bottom: 2px;
    background: none;
    border-radius: 6px;
    transition: box-shadow 0.2s, background 0.2s;
}
.koszyk-platnosci-label {
    font-size: 1rem;
    font-weight: 600;
    color: #223344;
    margin-top: 2px;
    transition: color 0.2s;
}
@media (max-width: 600px) {
    .koszyk-platnosci-section {
        max-width: 98vw;
        padding: 18px 6px 14px 6px;
    }
    .koszyk-platnosci-form {
        gap: 12px;
    }
    .koszyk-platnosci-tile {
        min-width: 80px;
        min-height: 70px;
        padding: 10px 6px 8px 6px;
    }
    .koszyk-platnosci-logo {
        width: 32px;
        height: 22px;
    }
}
.koszyk-dostawa-section {
    margin: 40px auto 56px auto;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px 0 rgba(30,40,60,0.07);
    padding: 32px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.koszyk-dostawa-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #039be5;
    margin-bottom: 18px;
    text-align: center;
}
.koszyk-dostawa-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.koszyk-dostawa-option {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.08rem;
    font-weight: 600;
    color: #223344;
    background: #f7fafd;
    border-radius: 12px;
    padding: 12px 18px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 6px 0 rgba(30,40,60,0.05);
}
.koszyk-dostawa-option:hover,
.koszyk-dostawa-option input:checked + .koszyk-dostawa-icon {
    background: #e3f2fd;
}
.koszyk-dostawa-option input[type="radio"] {
    accent-color: #039be5;
    width: 20px;
    height: 20px;
    margin-right: 6px;
}
.koszyk-dostawa-icon {
    font-size: 1.5rem;
    margin-right: 2px;
}
.koszyk-dostawa-cena {
    font-weight: 700;
    color: #43a047;
    margin-left: 8px;
}
@media (max-width: 600px) {
    .koszyk-dostawa-section {
        max-width: 98vw;
        padding: 18px 6px 14px 6px;
    }
    .koszyk-dostawa-title {
        font-size: 1rem;
    }
    .koszyk-dostawa-option {
        font-size: 0.98rem;
        padding: 8px 8px;
    }
}
.koszyk-summary-box {

    max-width: 420px;
    margin: 32px auto 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(30,40,60,0.10);
    padding: 32px 28px 28px 28px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.koszyk-summary-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #039be5;
    margin-bottom: 18px;
    text-align: center;
}
.koszyk-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.08rem;
    color: #223344;
    font-weight: 500;
    margin-bottom: 4px;
}
.koszyk-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.18rem;
    color: #1a2a3a;
    font-weight: 700;
    margin: 18px 0 12px 0;
    border-top: 1px solid #e3e7ee;
    padding-top: 12px;
}
.koszyk-summary-value-total {
    color: #d32f2f;
    font-size: 1.22rem;
    font-weight: 800;
}
.koszyk-summary-btn {
    display: block;
    width: 100%;
    font-size: 1.18rem;
    font-weight: 700;
    padding: 18px 0;
    border-radius: 32px;
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    color: #fff;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 12px 0 rgba(30,40,60,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    border: none;
    outline: none;
    margin-top: 10px;
    cursor: pointer;
}
.koszyk-summary-btn:hover {
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    box-shadow: 0 6px 24px 0 rgba(30,40,60,0.16);
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 600px) {
    .koszyk-summary-box {
        max-width: 98vw;
        padding: 18px 6px 14px 6px;
    }
    .koszyk-summary-title {
        font-size: 1rem;
    }
    .koszyk-summary-btn {
        font-size: 1rem;
        padding: 12px 0;
    }
}
.koszyk-list-section {
    margin: 32px 0 56px 0;
    padding: 0 16px;
}
.koszyk-list-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a2a3a;
    text-align: center;
}
.koszyk-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.koszyk-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(30,40,60,0.08);
    padding: 18px 24px;
    gap: 18px;
    position: relative;
}
.koszyk-item-img img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(30,40,60,0.10);
}
.koszyk-item-info {
    flex: 1 1 180px;
    min-width: 120px;
}
.koszyk-item-name {
    font-size: 1.08rem;
    font-weight: 700;
    color: #039be5;
    margin-bottom: 4px;
}
.koszyk-item-desc {
    font-size: 0.98rem;
    color: #223344;
}
.koszyk-item-price {
    font-size: 1.08rem;
    font-weight: 600;
    color: #43a047;
    min-width: 90px;
    text-align: right;
}
.koszyk-item-qty {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 90px;
}
.koszyk-qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e3f2fd;
    color: #039be5;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.koszyk-qty-btn:hover {
    background: #039be5;
    color: #fff;
}
.koszyk-qty-input {
    width: 40px;
    text-align: center;
    font-size: 1.08rem;
    border-radius: 8px;
    border: 1px solid #e3e7ee;
    background: #f7fafd;
    color: #223344;
    padding: 4px 0;
}
.koszyk-item-total {
    font-size: 1.08rem;
    font-weight: 700;
    color: #d32f2f;
    min-width: 90px;
    text-align: right;
}
.koszyk-item-remove {
    background: none;
    border: none;
    color: #d32f2f;
    font-size: 1.4rem;
    cursor: pointer;
    margin-left: 12px;
    transition: color 0.2s;
}
.koszyk-item-remove:hover {
    color: #039be5;
}
@media (max-width: 900px) {
    .koszyk-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 8px;
    }
    .koszyk-item-img img {
        width: 56px;
        height: 56px;
    }
    .koszyk-item-price,
    .koszyk-item-total {
        text-align: left;
        min-width: 0;
    }
}
.koszyk-hero-section {
    width: 100%;
    min-height: 220px;
    background: linear-gradient(90deg, #e3f2fd 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 4px 32px 0 rgba(30,40,60,0.08);
    margin-bottom: 32px;
    position: relative;
}
.koszyk-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: none;
    z-index: 1;
}
.koszyk-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 700px;
    text-align: center;
    padding: 48px 24px 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.koszyk-hero-icon {
    margin-bottom: 18px;
}
.koszyk-hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #039be5;
    margin-bottom: 12px;
}
.koszyk-hero-desc {
    font-size: 1.18rem;
    color: #223344;
    margin-bottom: 8px;
    font-weight: 500;
}
.koszyk-hero-sub {
    font-size: 1.05rem;
    color: #43a047;
    font-weight: 600;
}
@media (max-width: 700px) {
    .koszyk-hero-content {
        padding: 32px 8px 18px 8px;
    }
    .koszyk-hero-title {
        font-size: 1.3rem;
    }
    .koszyk-hero-desc {
        font-size: 1rem;
    }
    .koszyk-hero-sub {
        font-size: 0.98rem;
    }
}
.kontakt-cta-section {
    position: relative;
    margin: 64px 0 0 0;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 4px 32px 0 rgba(30,40,60,0.10);
    background: #e3f2fd;
}
.kontakt-cta-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    z-index: 1;
}
.kontakt-cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    opacity: 0.13;
    z-index: 2;
}
.kontakt-cta-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 700px;
    text-align: center;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.kontakt-cta-icon {
    font-size: 3.2rem;
    margin-bottom: 18px;
    color: #039be5;
    filter: drop-shadow(0 2px 8px #43a04733);
}
.kontakt-cta-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1a2a3a;
    margin-bottom: 32px;
    line-height: 1.25;
    text-shadow: 0 2px 8px #fff8;
}
.kontakt-cta-btns {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.kontakt-cta-btn {
    font-size: 1.18rem;
    font-weight: 700;
    padding: 18px 38px;
    border-radius: 32px;
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 2px 12px 0 rgba(30,40,60,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    border: none;
    outline: none;
    margin-bottom: 0;
    cursor: pointer;
    display: inline-block;
}
.kontakt-cta-btn:hover {
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    box-shadow: 0 6px 24px 0 rgba(30,40,60,0.16);
    transform: translateY(-2px) scale(1.04);
}
.kontakt-cta-btn-serwis {
    background: linear-gradient(90deg, #039be5 0%, #0a6cbe 100%);
}
.kontakt-cta-btn-montaz {
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
}
@media (max-width: 700px) {
    .kontakt-cta-content {
        padding: 32px 8px;
    }
    .kontakt-cta-title {
        font-size: 1.3rem;
    }
    .kontakt-cta-btn {
        font-size: 1rem;
        padding: 14px 18px;
    }
}
.kontakt-social-section {
    margin: 48px 0 56px 0;
    padding: 0 16px;
    text-align: center;
}
.kontakt-social-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a2a3a;
}
.kontakt-social-box {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.kontakt-social-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f7fafd;
    box-shadow: 0 2px 12px 0 rgba(30,40,60,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    font-size: 2rem;
    color: #223344;
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}
.kontakt-social-btn:hover {
    box-shadow: 0 6px 24px 0 rgba(30,40,60,0.16);
    transform: translateY(-2px) scale(1.08);
}
.kontakt-social-fb:hover {
    background: #1877f2;
    color: #fff;
}
.kontakt-social-ig:hover {
    background: linear-gradient(135deg, #feda75 0%, #d62976 50%, #962fbf 100%);
    color: #fff;
}
.kontakt-social-tt:hover {
    background: #25F4EE;
    color: #fff;
}
.kontakt-social-li:hover {
    background: #0077b5;
    color: #fff;
}
@media (max-width: 600px) {
    .kontakt-social-box {
        gap: 18px;
    }
    .kontakt-social-btn {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}
.kontakt-godziny-section {
    margin: 48px 0 56px 0;
    padding: 0 16px;
}
.kontakt-godziny-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: #1a2a3a;
}
.kontakt-godziny-table {
    max-width: 420px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px 0 rgba(30,40,60,0.07);
    overflow: hidden;
    border: 1px solid #e3e7ee;
    display: flex;
    flex-direction: column;
}
.kontakt-godziny-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    font-size: 1.15rem;
    color: #223344;
    border-bottom: 1px solid #e3e7ee;
}
.kontakt-godziny-row:last-child {
    border-bottom: none;
}
.kontakt-godziny-day {
    font-weight: 700;
    color: #039be5;
    letter-spacing: 0.5px;
}
.kontakt-godziny-hours {
    font-weight: 600;
    color: #43a047;
}
@media (max-width: 600px) {
    .kontakt-godziny-table {
        max-width: 98vw;
    }
    .kontakt-godziny-row {
        padding: 14px 10px;
        font-size: 1rem;
    }
}
.kontakt-mapa-section {
    width: 100%;
    margin: 48px 0 0 0;
    padding: 0;
}
.kontakt-mapa-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 32px 0 rgba(30,40,60,0.10);
}
.kontakt-mapa-iframe {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
}
.kontakt-mapa-overlay {
    position: absolute;
    top: 24px;
    left: 32px;
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(30,40,60,0.10);
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
    min-width: 260px;
}
.kontakt-mapa-adres {
    display: flex;
    align-items: center;
    font-size: 1.08rem;
    font-weight: 600;
    color: #1a2a3a;
    margin-bottom: 18px;
}
.kontakt-mapa-icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #039be5;
}
.kontakt-mapa-label {
    font-size: 1.08rem;
    font-weight: 700;
    color: #223344;
}
.kontakt-mapa-btn {
    font-size: 1.08rem;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 32px;
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 2px 12px 0 rgba(30,40,60,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    border: none;
    outline: none;
    cursor: pointer;
    display: inline-block;
}
.kontakt-mapa-btn:hover {
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    box-shadow: 0 6px 24px 0 rgba(30,40,60,0.16);
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
    .kontakt-mapa-overlay {
        top: 12px;
        left: 8px;
        padding: 14px 12px;
        min-width: 180px;
    }
    .kontakt-mapa-iframe {
        height: 220px;
    }
}
.kontakt-popup {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30,40,60,0.18);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: kontaktPopupFadeIn 0.3s;
}
@keyframes kontaktPopupFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.kontakt-popup-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(30,40,60,0.18);
    padding: 38px 32px 28px 32px;
    max-width: 340px;
    text-align: center;
    position: relative;
    animation: kontaktPopupContentIn 0.35s cubic-bezier(.4,1.4,.6,1);
}
@keyframes kontaktPopupContentIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.kontakt-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 2rem;
    color: #039be5;
    cursor: pointer;
    font-weight: 700;
    background: none;
    border: none;
    outline: none;
    transition: color 0.2s;
}
.kontakt-popup-close:hover,
.kontakt-popup-close:focus {
    color: #43a047;
}
.kontakt-popup-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #039be5;
    margin-bottom: 12px;
}
.kontakt-popup-content p {
    font-size: 1.05rem;
    color: #223344;
    margin-bottom: 22px;
}
.kontakt-popup-btn-close {
    font-size: 1.08rem;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 32px;
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 2px 12px 0 rgba(30,40,60,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    border: none;
    outline: none;
    cursor: pointer;
    display: inline-block;
}
.kontakt-popup-btn-close:hover {
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    box-shadow: 0 6px 24px 0 rgba(30,40,60,0.16);
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 600px) {
    .kontakt-popup-content {
        padding: 24px 8px 18px 8px;
        max-width: 98vw;
    }
    .kontakt-popup-close {
        top: 10px;
        right: 10px;
        font-size: 1.5rem;
    }
}
.kontakt-form-section {
    margin: 48px 0 56px 0;
    padding: 0 16px;
}
.kontakt-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px 0 rgba(30,40,60,0.07);
    padding: 40px 32px;
}
.kontakt-form-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.kontakt-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #039be5;
    margin-bottom: 18px;
}
.kontakt-form-desc {
    font-size: 1.08rem;
    color: #223344;
    font-weight: 500;
}
.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.kontakt-form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.kontakt-form label {
    font-size: 1rem;
    font-weight: 600;
    color: #1a2a3a;
}
.kontakt-form input,
.kontakt-form textarea {
    font-size: 1rem;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #e3e7ee;
    background: #f7fafd;
    color: #223344;
    font-family: inherit;
    resize: none;
    transition: border 0.2s;
}
.kontakt-form input:focus,
.kontakt-form textarea:focus {
    border: 1.5px solid #039be5;
    outline: none;
}
.kontakt-form-btn {
    font-size: 1.15rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 32px;
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 2px 12px 0 rgba(30,40,60,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    border: none;
    outline: none;
    margin-top: 12px;
    cursor: pointer;
    display: inline-block;
}
.kontakt-form-btn:hover {
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    box-shadow: 0 6px 24px 0 rgba(30,40,60,0.16);
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
    .kontakt-form-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 8px;
    }
}
.kontakt-quick-section {
    margin: 48px 0 56px 0;
    padding: 0 16px;
}
.kontakt-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}
.kontakt-quick-box {
    background: #f7fafd;
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(30,40,60,0.08);
    padding: 32px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 120px;
    transition: box-shadow 0.2s;
}
.kontakt-quick-box:hover {
    box-shadow: 0 6px 24px 0 rgba(30,40,60,0.16);
}
.kontakt-quick-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    color: #039be5;
    filter: drop-shadow(0 2px 8px #43a04733);
}
.kontakt-quick-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.kontakt-quick-link {
    font-size: 1.08rem;
    color: #039be5;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-all;
        text-align: center;
}
.kontakt-quick-link:hover {
    color: #43a047;
    text-decoration: underline;
}
@media (max-width: 900px) {
    .kontakt-quick-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .kontakt-quick-box {
        padding: 20px 14px;
    }
}
.kontakt-hero-section {
    position: relative;
    width: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #e3f2fd;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 4px 32px 0 rgba(30,40,60,0.08);
}
.kontakt-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    z-index: 1;
}
.kontakt-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    opacity: 0.13;
    z-index: 2;
}
.kontakt-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 700px;
    text-align: center;
    padding: 56px 24px 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.kontakt-hero-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #1a2a3a;
    margin-bottom: 18px;
    line-height: 1.18;
    text-shadow: 0 2px 8px #fff8;
}
.kontakt-hero-desc {
    font-size: 1.18rem;
    color: #223344;
    margin-bottom: 32px;
    font-weight: 500;
}
.kontakt-hero-btns {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.kontakt-hero-btn {
    font-size: 1.15rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 32px;
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 2px 12px 0 rgba(30,40,60,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    border: none;
    outline: none;
    margin-bottom: 0;
    cursor: pointer;
    display: inline-block;
}
.kontakt-hero-btn:hover {
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    box-shadow: 0 6px 24px 0 rgba(30,40,60,0.16);
    transform: translateY(-2px) scale(1.04);
}
.kontakt-hero-btn-call {
    background: linear-gradient(90deg, #039be5 0%, #0a6cbe 100%);
}
.kontakt-hero-btn-mail {
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
}
@media (max-width: 700px) {
    .kontakt-hero-content {
        padding: 32px 8px 24px 8px;
    }
    .kontakt-hero-title {
        font-size: 1.4rem;
    }
    .kontakt-hero-btn {
        font-size: 1rem;
        padding: 12px 18px;
    }
}
.montaz-cta-section {
    position: relative;
    margin: 64px 0 0 0;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 4px 32px 0 rgba(30,40,60,0.10);
    background: #e3f2fd;
}
.montaz-cta-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    z-index: 1;
}
.montaz-cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    opacity: 0.13;
    z-index: 2;
}
.montaz-cta-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 700px;
    text-align: center;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.montaz-cta-icon {
    font-size: 3.2rem;
    margin-bottom: 18px;
    color: #039be5;
    filter: drop-shadow(0 2px 8px #43a04733);
}
.montaz-cta-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1a2a3a;
    margin-bottom: 32px;
    line-height: 1.25;
    text-shadow: 0 2px 8px #fff8;
}
.montaz-cta-btns {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.montaz-cta-btn {
    font-size: 1.18rem;
    font-weight: 700;
    padding: 18px 38px;
    border-radius: 32px;
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 2px 12px 0 rgba(30,40,60,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    border: none;
    outline: none;
    margin-bottom: 0;
    cursor: pointer;
    display: inline-block;
}
.montaz-cta-btn:hover {
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    box-shadow: 0 6px 24px 0 rgba(30,40,60,0.16);
    transform: translateY(-2px) scale(1.04);
}
.montaz-cta-btn-call {
    background: linear-gradient(90deg, #039be5 0%, #0a6cbe 100%);
}
.montaz-cta-btn-book {
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
}
@media (max-width: 700px) {
    .montaz-cta-content {
        padding: 32px 8px;
    }
    .montaz-cta-title {
        font-size: 1.3rem;
    }
    .montaz-cta-btn {
        font-size: 1rem;
        padding: 14px 18px;
    }
}
.top-discounts-section {
    max-width: 1200px;
    margin: 64px auto 0 auto;
    padding: 0 16px;
}
.top-discounts-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 32px;
    text-align: center;
    color: #d32f2f;
}
.top-discounts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
}
.top-discount-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(44,183,183,0.12);
    padding: 28px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 280px;
    max-width: 340px;
    scroll-snap-align: start;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: topDiscountFadeIn 0.8s forwards;
}
.top-discount-card:nth-child(1) { animation-delay: 0.1s; }
.top-discount-card:nth-child(2) { animation-delay: 0.2s; }
.top-discount-card:nth-child(3) { animation-delay: 0.3s; }
.top-discount-card:nth-child(4) { animation-delay: 0.4s; }
.top-discount-card:nth-child(5) { animation-delay: 0.5s; }
.top-discount-card:nth-child(6) { animation-delay: 0.6s; }
@keyframes topDiscountFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.top-discount-label {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #d32f2f;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(44,183,183,0.10);
    z-index: 2;
    letter-spacing: 1px;
}
.top-discount-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(44,183,183,0.10);
}
.top-discount-info {
    text-align: center;
    width: 100%;
}
.top-discount-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #039be5;
}
.top-discount-desc {
    font-size: 1rem;
    color: #212121;
    margin-bottom: 10px;
}
.top-discount-prices {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
}
.top-discount-old {
    text-decoration: line-through;
    color: #888;
    font-size: 0.98rem;
    font-weight: 500;
}
.top-discount-new {
    color: #d32f2f;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 1px;
}
@media (max-width: 900px) {
    .top-discounts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        overflow-x: auto;
        padding-bottom: 12px;
    }
    .top-discount-card {
        min-width: 220px;
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .top-discounts-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
.promo-week-section {
    max-width: 900px;
    margin: 56px auto 0 auto;
    padding: 0 16px;
}
.promo-week-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #212121;
    border-radius: 24px;
    box-shadow: 0 6px 32px rgba(44,183,183,0.18);
    padding: 38px 28px;
    flex-wrap: wrap;
    color: #fff;
}
.promo-week-img-wrap {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(44,183,183,0.10);
    padding: 18px;
}
.promo-week-img {
    width: 260px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background: #fff;
}
.promo-week-content {
    flex: 1;
    min-width: 220px;
    text-align: left;
}
.promo-week-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}
.promo-week-product {
    font-size: 1.2rem;
    font-weight: 700;
    color: #43a047;
    margin-bottom: 8px;
}
.promo-week-prices {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}
.promo-week-old {
    text-decoration: line-through;
    color: #888;
    margin-right: 8px;
    font-size: 1rem;
}
.promo-week-new {
    color: #43a047;
    font-size: 1.25rem;
    font-weight: 700;
}
.promo-week-desc {
    font-size: 1.05rem;
    color: #e3f2fd;
    margin-bottom: 18px;
}
.promo-week-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.15rem;
    margin-bottom: 18px;
    color: #fff;
}
.promo-week-timer-icon {
    font-size: 1.3rem;
    color: #43a047;
}
.promo-week-countdown {
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 2px;
    color: #fff;
    background: #424242;
    border-radius: 8px;
    padding: 4px 12px;
}
.promo-week-timer-label {
    font-size: 0.98rem;
    color: #e3f2fd;
}
.promo-week-btn {
    display: inline-block;
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    color: #fff;
    font-weight: 700;
    padding: 14px 38px;
    border-radius: 32px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(44,183,183,0.10);
    transition: background 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}
.promo-week-btn:hover, .promo-week-btn:focus {
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    box-shadow: 0 4px 16px rgba(44,183,183,0.18);
}
@media (max-width: 900px) {
    .promo-week-box {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .promo-week-content {
        text-align: center;
    }
    .promo-week-img {
        width: 90vw;
        max-width: 220px;
    }
}
.promo-packages-section {
    max-width: 1200px;
    margin: 64px auto 0 auto;
    padding: 0 16px;
}
.montaz-timeline-section {
    max-width: 900px;
    margin: 56px auto 0 auto;
    padding: 0 16px 32px 16px;
}
.montaz-timeline-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 38px;
    text-align: center;
    color: #039be5;
}
.montaz-timeline {
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    position: relative;
    margin-bottom: 0;
}
.montaz-timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 120px;
    padding-bottom: 18px;
}
.montaz-timeline-dot {
    width: 28px;
    height: 28px;
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    border-radius: 50%;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(44,183,183,0.10);
    border: 4px solid #fff;
    position: relative;
    z-index: 2;
}
.montaz-timeline-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44,183,183,0.08);
    padding: 18px 12px;
    text-align: center;
    min-width: 120px;
    max-width: 180px;
    margin-bottom: 0;
}
.montaz-timeline-header {
    font-size: 1.08rem;
    font-weight: 700;
    color: #039be5;
    margin-bottom: 6px;
}
.montaz-timeline-desc {
    font-size: 0.98rem;
    color: #212121;
    margin-bottom: 0;
}
.montaz-timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e3f2fd 0%, #039be5 100%);
    z-index: 1;
    transform: translateX(14px);
}
@media (max-width: 900px) {
    .montaz-timeline {
        flex-direction: column;
        align-items: center;
    }
    .montaz-timeline-step {
        min-width: 0;
        max-width: 100%;
        margin-bottom: 32px;
    }
    .montaz-timeline-content {
        max-width: 100%;
    }
    .montaz-timeline-step:not(:last-child)::after {
        left: 50%;
        top: 28px;
        width: 4px;
        height: 48px;
        background: linear-gradient(180deg, #e3f2fd 0%, #039be5 100%);
        transform: translateX(-50%);
    }
}
.montaz-cennik-section {
    margin: 48px 0 56px 0;
    padding: 0 16px;
}
.montaz-cennik-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: #1a2a3a;
}
.montaz-cennik-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px 0 rgba(30,40,60,0.07);
    overflow: hidden;
    border: 1px solid #e3e7ee;
}
.montaz-cennik-row {
    display: contents;
}
.montaz-cennik-cell {
    padding: 20px 18px;
    font-size: 1.15rem;
    color: #223344;
    border-bottom: 1px solid #e3e7ee;
    display: flex;
    align-items: center;
}
.montaz-cennik-cell:last-child {
    justify-content: flex-end;
}
.montaz-cennik-row:last-child .montaz-cennik-cell {
    border-bottom: none;
}
.montaz-cennik-cell strong {
    font-weight: 700;
    color: #0a6cbe;
    font-size: 1.18em;
}
@media (max-width: 600px) {
    .montaz-cennik-table {
        grid-template-columns: 1fr;
    }
    .montaz-cennik-cell {
        justify-content: flex-start;
        font-size: 1rem;
        padding: 16px 12px;
    }
    .montaz-cennik-cell:last-child {
        justify-content: flex-start;
    }
}
.montaz-trust-section {
    max-width: 1200px;
    margin: 48px auto 0 auto;
    padding: 0 16px 24px 16px;
}
.montaz-trust-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 32px;
    text-align: center;
    color: #43a047;
}
.montaz-trust-grid {
    display: flex;
    gap: 38px;
    justify-content: center;
    flex-wrap: wrap;
}
.montaz-trust-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(44,183,183,0.10);
    padding: 32px 18px 18px 18px;
    min-width: 180px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 18px;
    transition: box-shadow 0.2s;
}
.montaz-trust-card:hover, .montaz-trust-card:focus-within {
    box-shadow: 0 6px 24px rgba(44,183,183,0.16);
}
.montaz-trust-icon {
    font-size: 2.3rem;
    margin-bottom: 14px;
    color: #43a047;
    background: #e8f5e9;
    border-radius: 50%;
    padding: 14px 20px;
    box-shadow: 0 2px 8px rgba(44,183,183,0.08);
    display: inline-block;
}
.montaz-trust-header {
    font-size: 1.08rem;
    font-weight: 700;
    color: #43a047;
    margin-bottom: 0;
}
.montaz-trust-desc {
    font-size: 0.98rem;
    color: #212121;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 800px) {
    .montaz-trust-grid {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .montaz-trust-card {
        max-width: 100%;
        min-width: 0;
    }
}
.montaz-hero-section {
    width: 100vw;
    max-width: 100%;
    min-height: 420px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
.montaz-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.7) blur(1px);
}
.montaz-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, #e3f2fd 0%, #fff 100%);
    opacity: 0.18;
    z-index: 2;
}
.montaz-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 72px 16px 56px 16px;
    color: #212121;
}
.montaz-hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #039be5;
    margin-bottom: 18px;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #e3f2fd;
}
.montaz-hero-desc {
    font-size: 1.18rem;
    color: #212121;
    margin-bottom: 32px;
    font-weight: 600;
}
.montaz-hero-btns {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.montaz-hero-btn {
    display: inline-block;
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    color: #fff;
    font-weight: 800;
    padding: 16px 44px;
    border-radius: 32px;
    text-decoration: none;
    font-size: 1.15rem;
    box-shadow: 0 2px 8px rgba(44,183,183,0.10);
    border: none;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.montaz-hero-btn:hover, .montaz-hero-btn:focus {
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    box-shadow: 0 4px 16px rgba(44,183,183,0.18);
    transform: scale(1.07);
}
@media (max-width: 700px) {
    .montaz-hero-title {
        font-size: 1.5rem;
    }
    .montaz-hero-content {
        padding: 38px 8px 28px 8px;
    }
    .montaz-hero-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}
.faq-cta-section {
    max-width: 900px;
    margin: 56px auto 0 auto;
    padding: 0 16px 48px 16px;
}
.faq-cta-banner {
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(44,183,183,0.10);
    padding: 48px 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.faq-cta-content {
    text-align: center;
    color: #fff;
    width: 100%;
}
.faq-cta-title {
    font-size: 2.1rem;
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #039be5;
}
.faq-cta-desc {
    font-size: 1.18rem;
    margin-bottom: 28px;
    font-weight: 600;
}
.faq-cta-btn {
    display: inline-block;
    background: #fff;
    color: #039be5;
    font-weight: 800;
    padding: 16px 44px;
    border-radius: 32px;
    text-decoration: none;
    font-size: 1.15rem;
    box-shadow: 0 2px 8px rgba(44,183,183,0.10);
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.faq-cta-btn:hover, .faq-cta-btn:focus {
    background: #039be5;
    color: #fff;
    box-shadow: 0 4px 16px rgba(44,183,183,0.18);
    transform: scale(1.07);
}
@media (max-width: 900px) {
    .faq-cta-banner {
        padding: 32px 12px;
    }
    .faq-cta-title {
        font-size: 1.3rem;
    }
    .faq-cta-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}
.faq-tech-section {
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 0 16px 32px 16px;
}
.faq-tech-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
    color: #039be5;
}
.faq-tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 32px;
}
.faq-tech-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44,183,183,0.08);
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-tech-question {
    font-size: 1.05rem;
    font-weight: 700;
    color: #039be5;
    margin-bottom: 2px;
}
.faq-tech-answer {
    font-size: 0.98rem;
    color: #212121;
}
@media (max-width: 800px) {
    .faq-tech-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
.faq-how-promos-section {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 0 16px 24px 16px;
}
.faq-how-promos-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
    color: #43a047;
}
.faq-how-promos-grid {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}
.faq-how-promos-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(44,183,183,0.10);
    padding: 28px 18px 18px 18px;
    min-width: 220px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 18px;
    transition: box-shadow 0.2s;
}
.faq-how-promos-card:hover, .faq-how-promos-card:focus-within {
    box-shadow: 0 6px 24px rgba(44,183,183,0.16);
}
.faq-how-promos-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: #43a047;
    background: #e8f5e9;
    border-radius: 50%;
    padding: 12px 18px;
    box-shadow: 0 2px 8px rgba(44,183,183,0.08);
    display: inline-block;
}
.faq-how-promos-header {
    font-size: 1.08rem;
    font-weight: 700;
    color: #43a047;
    margin-bottom: 8px;
}
.faq-how-promos-desc {
    font-size: 0.98rem;
    color: #212121;
    margin-bottom: 0;
}
@media (max-width: 700px) {
    .faq-how-promos-grid {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .faq-how-promos-card {
        max-width: 100%;
        min-width: 0;
    }
}
.faq-popular-section {
    max-width: 700px;
    margin: 32px auto 0 auto;
    padding: 0 16px;
}
.faq-popular-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(44,183,183,0.10);
    padding: 32px 24px 24px 24px;
    text-align: center;
    margin-bottom: 32px;
}
.faq-popular-header {
    font-size: 1.25rem;
    font-weight: 800;
    color: #d32f2f;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.faq-popular-icon {
    font-size: 1.7rem;
    color: #d32f2f;
    vertical-align: middle;
}
.faq-popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.faq-popular-item {
    font-size: 1.08rem;
    color: #212121;
    background: #ffeaea;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 12px 18px;
    font-weight: 600;
    transition: background 0.2s;
    cursor: pointer;
}
.faq-popular-item:hover, .faq-popular-item:focus {
    background: #ffcdd2;
}
.faq-accordion-section {
    max-width: 900px;
    margin: 48px auto 0 auto;
    padding: 0 16px 32px 16px;
}
.faq-accordion-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
    color: #039be5;
}
.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-accordion-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(44,183,183,0.08);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-accordion-item.open {
    box-shadow: 0 4px 24px rgba(44,183,183,0.14);
}
.faq-accordion-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.13rem;
    font-weight: 700;
    color: #039be5;
    padding: 18px 24px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
}
.faq-accordion-question:hover, .faq-accordion-question:focus {
    background: #e3f2fd;
}
.faq-accordion-icon {
    font-size: 1.5rem;
    color: #039be5;
    transition: transform 0.2s;
    display: inline-block;
    width: 1.5em;
    text-align: center;
}
.faq-accordion-item.open .faq-accordion-icon {
    transform: rotate(45deg);
}
.faq-accordion-answer {
    max-height: 0;
    overflow: hidden;
    background: #f5f5f5;
    color: #212121;
    font-size: 1rem;
    padding: 0 24px;
    transition: max-height 0.35s cubic-bezier(.4,0,.2,1), padding 0.2s;
}
.faq-accordion-item.open .faq-accordion-answer {
    max-height: 300px;
    padding: 16px 24px 18px 24px;
}
@media (max-width: 700px) {
    .faq-accordion-section {
        padding: 0 6px 24px 6px;
    }
    .faq-accordion-question {
        font-size: 1rem;
        padding: 14px 12px;
    }
    .faq-accordion-answer {
        font-size: 0.98rem;
        padding: 0 12px;
    }
}
.faq-hero-section {
    width: 100vw;
    max-width: 100%;
    background: linear-gradient(90deg, #e3f2fd 0%, #fff 100%);
    padding: 64px 0 48px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
.faq-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/logo.svg') no-repeat right 48px center/120px, linear-gradient(90deg, #e3f2fd 0%, #fff 100%);
    opacity: 0.08;
    z-index: 1;
}
.faq-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 16px;
}
.faq-hero-icon {
    margin-bottom: 18px;
}
.faq-hero-emoji {
    font-size: 4rem;
    color: #039be5;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(44,183,183,0.10);
    padding: 18px 28px;
    display: inline-block;
}
.faq-hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #039be5;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.faq-hero-subtitle {
    font-size: 1.25rem;
    color: #212121;
    margin-bottom: 0;
    font-weight: 600;
}
@media (max-width: 700px) {
    .faq-hero-title {
        font-size: 1.6rem;
    }
    .faq-hero-emoji {
        font-size: 2.2rem;
        padding: 10px 16px;
    }
    .faq-hero-content {
        padding: 0 8px;
    }
}
.promo-cta-section {
    max-width: 1200px;
    margin: 72px auto 0 auto;
    padding: 0 16px 48px 16px;
}
.promo-cta-banner {
    display: flex;
    align-items: center;
    gap: 48px;
    background: linear-gradient(90deg, #fff 0%, #ffcdd2 100%);
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(211,47,47,0.10);
    padding: 48px 38px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.promo-cta-img-wrap {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(211,47,47,0.10);
    padding: 18px;
}
.promo-cta-img {
    width: 260px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    background: #fff;
}
.promo-cta-content {
    flex: 1;
    min-width: 220px;
    text-align: left;
}
.promo-cta-title {
    font-size: 2.3rem;
    font-weight: 900;
    margin-bottom: 18px;
    color: #d32f2f;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #ffcdd2;
}
.promo-cta-desc {
    font-size: 1.25rem;
    color: #212121;
    margin-bottom: 28px;
    font-weight: 700;
}
.promo-cta-btns {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.promo-cta-btn {
    display: inline-block;
    font-weight: 800;
    padding: 18px 48px;
    border-radius: 32px;
    text-decoration: none;
    font-size: 1.18rem;
    box-shadow: 0 2px 8px rgba(211,47,47,0.10);
    border: none;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.promo-cta-buy {
    background: linear-gradient(90deg, #d32f2f 0%, #ff5252 100%);
    color: #fff;
    animation: pulseBtn 1.2s infinite alternate;
}
.promo-cta-buy:hover, .promo-cta-buy:focus {
    background: linear-gradient(90deg, #ff5252 0%, #d32f2f 100%);
    box-shadow: 0 4px 16px rgba(211,47,47,0.18);
    transform: scale(1.07);
}
.promo-cta-contact {
    background: #fff;
    color: #d32f2f;
    border: 2px solid #d32f2f;
}
.promo-cta-contact:hover, .promo-cta-contact:focus {
    background: #ffcdd2;
    color: #d32f2f;
    box-shadow: 0 4px 16px rgba(211,47,47,0.18);
    transform: scale(1.05);
}
@keyframes pulseBtn {
    0% { box-shadow: 0 0 0 0 #d32f2f44; }
    100% { box-shadow: 0 0 24px 8px #d32f2f44; }
}
@media (max-width: 900px) {
    .promo-cta-banner {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        padding: 32px 12px;
    }
    .promo-cta-content {
        text-align: center;
    }
    .promo-cta-img {
        width: 90vw;
        max-width: 220px;
    }
}
.price-comparison-section {
    max-width: 900px;
    margin: 64px auto 0 auto;
    padding: 0 16px;
}
.price-comparison-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 32px;
    text-align: center;
    color: #43a047;
}
.price-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    justify-content: center;
    margin-bottom: 24px;
}
.price-comparison-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,183,183,0.12);
    padding: 28px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    max-width: 340px;
    margin: 0 auto;
    transition: box-shadow 0.2s;
}
.price-comparison-card:hover, .price-comparison-card:focus-within {
    box-shadow: 0 8px 32px rgba(44,183,183,0.18);
}
.price-comparison-model {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #039be5;
    text-align: center;
}
.price-comparison-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}
.price-comparison-label {
    font-size: 1rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 16px;
    letter-spacing: 1px;
}
.price-comparison-before {
    background: #eee;
    color: #212121;
}
.price-comparison-after {
    background: #43a047;
    color: #fff;
}
.price-comparison-value {
    font-size: 1.15rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 8px;
}
.price-comparison-old {
    color: #888;
    background: #f5f5f5;
    font-size: 1rem;
    text-decoration: line-through;
}
.price-comparison-new {
    color: #43a047;
    background: #e8f5e9;
    font-size: 1.25rem;
}
@media (max-width: 900px) {
    .price-comparison-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .price-comparison-card {
        max-width: 100%;
        min-width: 0;
    }
}
.seasonal-promos-section {
    max-width: 1100px;
    margin: 64px auto 0 auto;
    padding: 0 16px;
}
.seasonal-promos-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 32px;
    text-align: center;
    color: #039be5;
}
.seasonal-promos-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.seasonal-promo-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(44,183,183,0.12);
    padding: 28px 22px 22px 22px;
    flex: 1 1 340px;
    max-width: 420px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    transition: box-shadow 0.2s;
}
.seasonal-promo-box:hover, .seasonal-promo-box:focus-within {
    box-shadow: 0 8px 32px rgba(44,183,183,0.18);
}
.seasonal-promo-img-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.seasonal-promo-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44,183,183,0.10);
}
.seasonal-promo-content {
    text-align: center;
    width: 100%;
}
.seasonal-promo-header {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #039be5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.seasonal-promo-emoji {
    font-size: 1.3rem;
}
.seasonal-promo-desc {
    font-size: 1rem;
    color: #212121;
    margin-bottom: 14px;
}
.seasonal-promo-btn {
    display: inline-block;
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    color: #fff;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 28px;
    text-decoration: none;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px rgba(44,183,183,0.10);
    transition: background 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}
.seasonal-promo-btn:hover, .seasonal-promo-btn:focus {
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    box-shadow: 0 4px 16px rgba(44,183,183,0.18);
}
@media (max-width: 900px) {
    .seasonal-promos-grid {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .seasonal-promo-box {
        max-width: 100%;
        min-width: 0;
    }
}
.promo-packages-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 32px;
    text-align: center;
    color: #039be5;
}
.promo-packages-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.promo-package-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(44,183,183,0.12);
    padding: 32px 28px 28px 28px;
    flex: 1 1 300px;
    max-width: 340px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    transition: box-shadow 0.2s;
}
.promo-package-card:hover, .promo-package-card:focus-within {
    box-shadow: 0 8px 32px rgba(44,183,183,0.18);
}
.promo-package-header {
    font-size: 1.25rem;
    font-weight: 700;
    color: #43a047;
    margin-bottom: 0;
    text-align: center;
}
.promo-package-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    width: 100%;
}
.promo-package-list li {
    font-size: 1.05rem;
    color: #212121;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.promo-package-icon {
    font-size: 1.2rem;
    color: #43a047;
    margin-right: 4px;
}
.promo-package-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #039be5;
    margin-bottom: 18px;
}
.promo-package-btn {
    display: inline-block;
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    color: #fff;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 28px;
    text-decoration: none;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px rgba(44,183,183,0.10);
    transition: background 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}
.promo-package-btn:hover, .promo-package-btn:focus {
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    box-shadow: 0 4px 16px rgba(44,183,183,0.18);
}
@media (max-width: 900px) {
    .promo-packages-grid {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .promo-package-card {
        max-width: 100%;
        min-width: 0;
    }
}
.promo-products-section {
    max-width: 1200px;
    margin: 56px auto 0 auto;
    padding: 0 16px;
}
.promo-products-title {
    font-size: 2rem;
    font-weight: 700;
    color: #d32f2f;
    text-align: center;
    margin-bottom: 32px;
}
.promo-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}
.promo-product-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(211,47,47,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 18px 24px 18px;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}
.promo-product-card:hover, .promo-product-card:focus-within {
    box-shadow: 0 8px 32px rgba(211,47,47,0.16);
    transform: translateY(-4px) scale(1.03);
    z-index: 2;
}
.promo-product-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
    background: #f5faff;
    box-shadow: 0 1px 8px rgba(211,47,47,0.10);
}
.promo-product-info {
    text-align: center;
    margin-bottom: 18px;
}
.promo-product-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 6px;
}
.promo-product-prices {
    font-size: 1.1rem;
    color: #d32f2f;
    font-weight: 700;
    margin-bottom: 8px;
}
.promo-product-old {
    text-decoration: line-through;
    color: #888;
    margin-right: 8px;
    font-size: 1rem;
}
.promo-product-new {
    color: #d32f2f;
    font-size: 1.15rem;
    font-weight: 700;
}
.promo-product-desc {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 0;
}
.promo-product-label {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #d32f2f;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 16px;
    letter-spacing: 1px;
    box-shadow: 0 1px 6px rgba(211,47,47,0.10);
    z-index: 3;
}
.promo-product-discount {
    left: 18px;
    top: 18px;
}
.promo-product-promo {
    left: 18px;
    top: 48px;
    background: #fff;
    color: #d32f2f;
    border: 2px solid #d32f2f;
}
@media (max-width: 900px) {
    .promo-products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
    .promo-product-card {
        min-height: 340px;
        padding: 18px 8px 16px 8px;
    }
}
@media (max-width: 600px) {
    .promo-products-grid {
        grid-template-columns: 1fr;
    }
}
.promo-hero-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.promo-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.7) blur(1px);
}
.promo-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(33,150,243,0.18) 0%, rgba(67,160,71,0.18) 100%);
    z-index: 2;
}
.promo-hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 48px 24px;
}
.promo-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(44,183,183,0.18);
}
.promo-hero-desc {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #e3f2fd;
    text-shadow: 0 1px 8px rgba(44,183,183,0.10);
}
.promo-hero-btn {
    display: inline-block;
    padding: 16px 38px;
    border-radius: 32px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(44,183,183,0.10);
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
.promo-hero-btn:hover, .promo-hero-btn:focus {
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(44,183,183,0.18);
}
@media (max-width: 700px) {
    .promo-hero-content {
        padding: 32px 8px;
    }
    .promo-hero-title {
        font-size: 1.5rem;
    }
    .promo-hero-desc {
        font-size: 1rem;
    }
    .promo-hero-section {
        min-height: 260px;
    }
}
.news-cta-section {
    background: linear-gradient(90deg, #f5faff 0%, #e3f2fd 100%);
    border-radius: 28px;
    margin: 56px auto 0 auto;
    max-width: 1100px;
    box-shadow: 0 6px 32px rgba(44, 183, 183, 0.12);
    padding: 48px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-cta-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    width: 100%;
}
.news-cta-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.news-cta-img {
    width: 180px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(44, 183, 183, 0.10);
    object-fit: cover;
    background: #fff;
}
.news-cta-content {
    flex: 1;
    min-width: 220px;
    text-align: left;
}
.news-cta-title {
    font-size: 2.2rem;
    color: #1976d2;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}
.news-cta-buttons {
    display: flex;
    gap: 18px;
    margin-top: 8px;
}
.news-cta-btn {
    display: inline-block;
    padding: 16px 38px;
    border-radius: 32px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(44, 183, 183, 0.10);
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
.news-cta-btn-main {
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    color: #fff;
}
.news-cta-btn-main:hover, .news-cta-btn-main:focus {
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(44, 183, 183, 0.18);
}
.news-cta-btn-secondary {
    background: #fff;
    color: #1976d2;
    border: 2px solid #039be5;
}
.news-cta-btn-secondary:hover, .news-cta-btn-secondary:focus {
    background: #e3f2fd;
    color: #43a047;
    border-color: #43a047;
}
@media (max-width: 900px) {
    .news-cta-inner {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .news-cta-content {
        text-align: center;
    }
    .news-cta-title {
        font-size: 1.5rem;
    }
    .news-cta-img {
        width: 90vw;
        max-width: 220px;
    }
}
.news-blog-section {
    max-width: 1100px;
    margin: 56px auto 0 auto;
    padding: 0 16px;
}
.news-blog-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1976d2;
    text-align: center;
    margin-bottom: 32px;
}
.news-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.news-blog-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(44,183,183,0.07);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 340px;
}
.news-blog-card:hover, .news-blog-card:focus-within {
    box-shadow: 0 8px 32px rgba(44,183,183,0.16);
    transform: translateY(-4px) scale(1.03);
    z-index: 2;
}
.news-blog-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: #e3f2fd;
    border-bottom: 1px solid #e0e0e0;
}
.news-blog-info {
    padding: 22px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.news-blog-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 10px;
}
.news-blog-excerpt {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 18px;
    flex: 1;
}
.news-blog-btn {
    align-self: flex-start;
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    color: #fff;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 1px 6px rgba(44,183,183,0.10);
    transition: background 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}
.news-blog-btn:hover, .news-blog-btn:focus {
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    box-shadow: 0 4px 16px rgba(44,183,183,0.18);
}
@media (max-width: 900px) {
    .news-blog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
    .news-blog-card {
        min-height: 260px;
    }
}
@media (max-width: 600px) {
    .news-blog-grid {
        grid-template-columns: 1fr;
    }
}
.news-service-section {
    max-width: 900px;
    margin: 56px auto 0 auto;
    padding: 0 16px;
}
.news-service-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(33,150,243,0.08);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(33,150,243,0.07);
    padding: 38px 28px;
    flex-wrap: wrap;
}
.news-service-icon {
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-service-tools {
    font-size: 4rem;
    color: #1976d2;
    text-shadow: 0 2px 12px rgba(33,150,243,0.10);
    background: #e3f2fd;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 8px rgba(33,150,243,0.10);
}
.news-service-content {
    flex: 1;
    min-width: 220px;
}
.news-service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 16px;
}
.news-service-desc {
    font-size: 1.08rem;
    color: #444;
    line-height: 1.6;
}
@media (max-width: 700px) {
    .news-service-inner {
        flex-direction: column;
        gap: 18px;
        padding: 24px 8px;
    }
    .news-service-icon {
        margin-bottom: 12px;
    }
    .news-service-content {
        text-align: center;
    }
}
.news-tech-section {
    max-width: 1200px;
    margin: 56px auto 0 auto;
    padding: 0 16px;
    text-align: center;
}
.news-tech-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 32px;
}
.news-tech-tiles {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.news-tech-tile {
    background: rgba(33,150,243,0.12);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(33,150,243,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 38px 28px;
    min-width: 220px;
    max-width: 320px;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
    backdrop-filter: blur(2px);
}
.news-tech-tile:hover, .news-tech-tile:focus {
    box-shadow: 0 8px 32px rgba(33,150,243,0.16);
    transform: translateY(-4px) scale(1.04);
    background: rgba(33,150,243,0.18);
}
.news-tech-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
    color: #039be5;
    text-shadow: 0 2px 12px rgba(33,150,243,0.10);
}
.news-tech-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1976d2;
    letter-spacing: 0.5px;
}
@media (max-width: 900px) {
    .news-tech-tiles {
        gap: 18px;
    }
    .news-tech-tile {
        min-width: 160px;
        max-width: 100vw;
        padding: 24px 8px;
    }
}
@media (max-width: 600px) {
    .news-tech-tiles {
        flex-direction: column;
        align-items: center;
    }
}
.news-promo-section {
    max-width: 1200px;
    margin: 56px auto 0 auto;
    padding: 0 16px;
}
.news-promo-title {
    font-size: 2rem;
    font-weight: 700;
    color: #039be5;
    text-align: center;
    margin-bottom: 32px;
}
.news-promo-slider {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.news-promo-card {
    background: #e3f2fd;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(33,150,243,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 18px 24px 18px;
    min-width: 260px;
    max-width: 320px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}
.news-promo-card:hover, .news-promo-card:focus-within {
    box-shadow: 0 8px 32px rgba(33,150,243,0.16);
    transform: translateY(-4px) scale(1.03);
    z-index: 2;
}
.news-promo-label {
    position: absolute;
    top: 18px; left: 18px;
    background: #039be5;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 16px;
    letter-spacing: 1px;
    box-shadow: 0 1px 6px rgba(33,150,243,0.10);
}
.news-promo-discount {
    position: absolute;
    top: 18px; right: 18px;
    background: #fff;
    color: #039be5;
    font-size: 1rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 16px;
    box-shadow: 0 1px 6px rgba(33,150,243,0.10);
    border: 2px solid #039be5;
}
.news-promo-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
    background: #fff;
    box-shadow: 0 1px 8px rgba(33,150,243,0.10);
}
.news-promo-info {
    text-align: center;
    margin-bottom: 12px;
}
.news-promo-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 6px;
}
.news-promo-price {
    font-size: 1.1rem;
    color: #43a047;
    font-weight: 700;
    margin-bottom: 8px;
}
.news-promo-old {
    text-decoration: line-through;
    color: #888;
    margin-right: 8px;
    font-size: 1rem;
}
.news-promo-new {
    color: #039be5;
    font-size: 1.15rem;
    font-weight: 700;
}
.news-promo-desc {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .news-promo-slider {
        gap: 18px;
    }
    .news-promo-card {
        min-width: 220px;
        max-width: 100vw;
        padding: 18px 8px 16px 8px;
    }
}
@media (max-width: 600px) {
    .news-promo-slider {
        flex-direction: column;
        align-items: center;
    }
}
.news-products-section {
    max-width: 1200px;
    margin: 56px auto 0 auto;
    padding: 0 16px;
}
.news-products-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1976d2;
    text-align: center;
    margin-bottom: 32px;
}
.news-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}
.news-product-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(44,183,183,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 18px 24px 18px;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    min-height: 420px;
}
.news-product-card:hover, .news-product-card:focus-within {
    box-shadow: 0 8px 32px rgba(44,183,183,0.16);
    transform: translateY(-4px) scale(1.03);
    z-index: 2;
}
.news-product-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
    background: #f5faff;
    box-shadow: 0 1px 8px rgba(44,183,183,0.10);
}
.news-product-info {
    text-align: center;
    margin-bottom: 18px;
}
.news-product-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 6px;
}
.news-product-price {
    font-size: 1.1rem;
    color: #43a047;
    font-weight: 700;
    margin-bottom: 8px;
}
.news-product-desc {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 0;
}
.news-product-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.news-product-card:hover .news-product-actions,
.news-product-card:focus-within .news-product-actions {
    opacity: 1;
    pointer-events: auto;
}
.news-product-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: #e3f2fd;
    color: #1976d2;
    box-shadow: 0 1px 6px rgba(44,183,183,0.10);
    transition: background 0.2s, color 0.2s;
}
.news-product-btn-cart {
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    color: #fff;
}
.news-product-btn-cart:hover, .news-product-btn-cart:focus {
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    color: #fff;
}
.news-product-btn-details {
    background: #fff;
    color: #1976d2;
    border: 2px solid #039be5;
}
.news-product-btn-details:hover, .news-product-btn-details:focus {
    background: #e3f2fd;
    color: #43a047;
    border-color: #43a047;
}
@media (max-width: 900px) {
    .news-products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
    .news-product-card {
        min-height: 340px;
        padding: 18px 8px 16px 8px;
    }
}
@media (max-width: 600px) {
    .news-products-grid {
        grid-template-columns: 1fr;
    }
}
.news-hero-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.news-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.7) blur(1px);
}
.news-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(33,150,243,0.18) 0%, rgba(67,160,71,0.18) 100%);
    z-index: 2;
}
.news-hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 48px 24px;
}
.news-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(44,183,183,0.18);
}
.news-hero-desc {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #e3f2fd;
    text-shadow: 0 1px 8px rgba(44,183,183,0.10);
}
.news-hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}
.news-hero-btn {
    display: inline-block;
    padding: 16px 38px;
    border-radius: 32px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(44,183,183,0.10);
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
.news-hero-btn-main {
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    color: #fff;
}
.news-hero-btn-main:hover, .news-hero-btn-main:focus {
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(44,183,183,0.18);
}
.news-hero-btn-secondary {
    background: #fff;
    color: #1976d2;
    border: 2px solid #039be5;
}
.news-hero-btn-secondary:hover, .news-hero-btn-secondary:focus {
    background: #e3f2fd;
    color: #43a047;
    border-color: #43a047;
}
@media (max-width: 700px) {
    .news-hero-content {
        padding: 32px 8px;
    }
    .news-hero-title {
        font-size: 1.5rem;
    }
    .news-hero-desc {
        font-size: 1rem;
    }
    .news-hero-section {
        min-height: 260px;
    }
}
.about-cta-section {
    background: linear-gradient(90deg, #f5faff 0%, #e3f2fd 100%);
    border-radius: 28px;
    margin: 48px auto 0 auto;
    max-width: 1100px;
    box-shadow: 0 6px 32px rgba(44, 183, 183, 0.12);
    padding: 48px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-cta-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    width: 100%;
}
.about-cta-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.about-cta-icon {
    font-size: 64px;
    color: #039be5;
    background: #e0f7fa;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(44, 183, 183, 0.10);
}
.about-cta-family {
    width: 140px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(44, 183, 183, 0.10);
    object-fit: cover;
    background: #fff;
}
.about-cta-content {
    flex: 1;
    min-width: 220px;
    text-align: left;
}
.about-cta-title {
    font-size: 2.2rem;
    color: #1976d2;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}
.about-cta-buttons {
    display: flex;
    gap: 18px;
    margin-top: 8px;
}
.about-cta-btn {
    display: inline-block;
    padding: 16px 38px;
    border-radius: 32px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(44, 183, 183, 0.10);
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
.about-cta-btn-main {
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    color: #fff;
}
.about-cta-btn-main:hover, .about-cta-btn-main:focus {
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(44, 183, 183, 0.18);
}
.about-cta-btn-secondary {
    background: #fff;
    color: #1976d2;
    border: 2px solid #039be5;
}
.about-cta-btn-secondary:hover, .about-cta-btn-secondary:focus {
    background: #e3f2fd;
    color: #43a047;
    border-color: #43a047;
}
@media (max-width: 900px) {
    .about-cta-inner {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .about-cta-content {
        text-align: center;
    }
    .about-cta-title {
        font-size: 1.5rem;
    }
    .about-cta-family {
        width: 90vw;
        max-width: 220px;
    }
}
.about-media-section {
    background: #f5faff;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 4px 24px rgba(44, 183, 183, 0.08);
    padding: 36px 28px;
    text-align: center;
}
.about-media-title {
    font-size: 2rem;
    color: #1976d2;
    margin-bottom: 10px;
    font-weight: 700;
}
.about-media-desc {
    font-size: 1.1rem;
    color: #388e3c;
    margin-bottom: 24px;
}
.about-media-tiles {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.about-media-tile {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(44, 183, 183, 0.07);
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 240px;
    min-width: 180px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.about-media-tile:hover, .about-media-tile:focus-within {
    box-shadow: 0 6px 24px rgba(44, 183, 183, 0.16);
    transform: translateY(-4px) scale(1.03);
}
.about-media-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 12px;
    border-radius: 8px;
    background: #e3f2fd;
    box-shadow: 0 1px 6px rgba(44, 183, 183, 0.10);
}
.about-media-link {
    color: #1976d2;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 6px;
    transition: color 0.2s;
    word-break: break-word;
}
.about-media-link:hover, .about-media-link:focus {
    color: #388e3c;
    text-decoration: underline;
}
@media (max-width: 700px) {
    .about-media-section {
        padding: 18px 4px;
    }
    .about-media-tiles {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    .about-media-tile {
        width: 90vw;
        min-width: 0;
    }
}

.about-eco-section {
    background: linear-gradient(90deg, #e0f7fa 0%, #c8e6c9 100%);
    border-radius: 24px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 4px 24px rgba(44, 183, 183, 0.10);
    padding: 40px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-eco-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.about-eco-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: #43a047;
    background: #e8f5e9;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    box-shadow: 0 2px 12px rgba(44, 183, 183, 0.08);
    margin-right: 16px;
}
.about-eco-leaf {
    font-size: 48px;
    color: #43a047;
}
.about-eco-planet {
    font-size: 36px;
    color: #039be5;
    margin-top: -8px;
}
.about-eco-content {
    flex: 1;
    min-width: 220px;
}
.about-eco-title {
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 12px;
    font-weight: 700;
}
.about-eco-desc {
    font-size: 1.15rem;
    color: #1565c0;
    margin-bottom: 18px;
    line-height: 1.6;
}
.about-eco-btn {
    display: inline-block;
    background: linear-gradient(90deg, #43a047 0%, #039be5 100%);
    color: #fff;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 32px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(44, 183, 183, 0.10);
    transition: background 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}
.about-eco-btn:hover, .about-eco-btn:focus {
    background: linear-gradient(90deg, #039be5 0%, #43a047 100%);
    box-shadow: 0 4px 16px rgba(44, 183, 183, 0.18);
}
@media (max-width: 700px) {
    .about-eco-section {
        padding: 24px 8px;
    }
    .about-eco-inner {
        flex-direction: column;
        gap: 18px;
    }
    .about-eco-icon {
        margin-right: 0;
        margin-bottom: 12px;
    }
    .about-eco-content {
        text-align: center;
    }
}
.about-usp-section {
    width: 100%;
    max-width: 900px;
    margin: 56px auto 0 auto;
    padding: 0 12px;
    text-align: center;
}
.about-usp-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 32px;
}
.about-usp-tiles {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.about-usp-tile {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(25,118,210,0.10);
    width: 180px;
        padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    transition: box-shadow 0.2s, background 0.2s;
    cursor: pointer;
}
.about-usp-tile:hover {
    box-shadow: 0 8px 32px rgba(25,118,210,0.18);
    background: #e3f2fd;
}
.about-usp-icon {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 8px;
}
.about-usp-text {
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    text-align: center;
}
@media (max-width: 900px) {
    .about-usp-tiles {
        gap: 12px;
    }
    .about-usp-tile {
        width: 120px;
        height: 120px;
        gap: 8px;
    }
    .about-usp-icon {
        font-size: 1.5rem;
    }
    .about-usp-title {
        font-size: 1.1rem;
    }
    .about-usp-text {
        font-size: 0.95rem;
    }
}
.about-history {
    width: 100%;
    max-width: 900px;
    margin: 56px auto 0 auto;
    padding: 0 12px;
}
.about-history-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 32px;
    text-align: center;
}
.about-history-timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    margin-left: 24px;
}
.about-history-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #e3f2fd;
    border-radius: 2px;
}
.about-history-event {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(25,118,210,0.07);
    padding: 24px 18px;
    min-height: 120px;
}
.about-history-blue {
    background: #e3f2fd;
}
.about-history-white {
    background: #fff;
}
.about-history-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1976d2;
    min-width: 60px;
    text-align: center;
}
.about-history-content {
    display: flex;
    align-items: center;
    gap: 18px;
}
.about-history-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(25,118,210,0.10);
}
.about-history-content h3 {
    font-size: 1.08rem;
    font-weight: 600;
    color: #1976d2;
    margin-bottom: 6px;
}
.about-history-content p {
    font-size: 1rem;
    color: #222;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .about-history-timeline {
        margin-left: 0;
        gap: 18px;
    }
    .about-history-event {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 8px;
        min-height: 80px;
    }
    .about-history-content {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    .about-history-img {
        width: 60px;
        height: 60px;
    }
}
.about-mission {
    width: 100%;
    max-width: 900px;
    margin: 48px auto 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(25,118,210,0.07);
    padding: 40px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-mission-inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.about-mission-text {
    flex: 2 1 340px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.about-mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 18px;
}
.about-mission-desc {
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    line-height: 1.6;
}
.about-mission-icon {
    flex: 1 1 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-mission-eco {
    font-size: 3.5rem;
    color: #43cea2;
    background: #e3f2fd;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(25,118,210,0.07);
}
@media (max-width: 900px) {
    .about-mission-inner {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }
    .about-mission-text {
        align-items: center;
    }
    .about-mission-icon {
        margin-top: 18px;
    }
}
.about-hero {
    position: relative;
    width: 100vw;
    min-height: 420px;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 2em;
}
.about-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.about-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(25,118,210,0.08) 100%);
    z-index: 2;
}
.about-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 64px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.about-hero-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 18px;
}
.about-hero-intro {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 32px;
    font-weight: 500;
}
.about-hero-btn {
    display: inline-block;
    background: #1976d2;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 38px;
    border-radius: 28px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(25,118,210,0.10);
    transition: background 0.2s;
}
.about-hero-btn:hover {
    background: #0d47a1;
}
@media (max-width: 900px) {
    .about-hero-content {
        padding: 32px 8px;
    }
    .about-hero-title {
        font-size: 1.3rem;
    }
    .about-hero-intro {
        font-size: 1rem;
    }
    .about-hero-btn {
        font-size: 1rem;
        padding: 10px 18px;
    }
}
.shop-bottom-cta {
    width: 100%;
    max-width: 900px;
    margin: 48px auto 0 auto;
    background: linear-gradient(90deg, #e3f2fd 0%, #c8e6c9 100%);
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(25,118,210,0.07);
    padding: 32px 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-bottom-cta-inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.shop-bottom-cta-icon {
    font-size: 2.2rem;
    color: #1976d2;
    background: #fff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(25,118,210,0.07);
}
.shop-bottom-cta-text {
    font-size: 1.2rem;
    color: #222;
    font-weight: 500;
}
.shop-bottom-cta-btn {
    display: inline-block;
    background: #1976d2;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 38px;
    border-radius: 28px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(25,118,210,0.10);
    transition: background 0.2s;
}
.shop-bottom-cta-btn:hover {
    background: #0d47a1;
}
@media (max-width: 700px) {
    .shop-bottom-cta-inner {
        flex-direction: column;
        gap: 12px;
    }
    .shop-bottom-cta {
        padding: 18px 4px;
    }
    .shop-bottom-cta-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    .shop-bottom-cta-text {
        font-size: 1rem;
    }
    .shop-bottom-cta-btn {
        font-size: 1rem;
        padding: 10px 18px;
    }
}
.shop-faq-mini {
    width: 100%;
    max-width: 700px;
    margin: 48px auto 0 auto;
    padding: 0 12px;
}
.shop-faq-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1976d2;
    margin-bottom: 24px;
    text-align: center;
}
.shop-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.shop-faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(25,118,210,0.07);
    padding: 0;
    overflow: hidden;
}
.shop-faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 18px;
    cursor: pointer;
    transition: background 0.2s;
}
.shop-faq-question[aria-expanded="true"] {
    background: #e3f2fd;
}
.shop-faq-icon {
    font-size: 1.3rem;
    color: #1976d2;
    width: 24px;
    text-align: center;
    transition: transform 0.2s;
}
.shop-faq-question[aria-expanded="true"] .shop-faq-icon {
    transform: rotate(45deg);
}
.shop-faq-answer {
    font-size: 1rem;
    color: #444;
    padding: 0 18px 18px 54px;
    background: #f7f7f7;
    border-radius: 0 0 12px 12px;
    transition: max-height 0.3s;
}
.shop-promo-banner {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #1976d2 0%, #43cea2 100%);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(25,118,210,0.10);
    padding: 18px 24px;
    margin: 12px 0;
    font-size: 1.15rem;
    font-weight: 600;
    gap: 18px;
}
.shop-promo-icon {
    font-size: 2rem;
    margin-right: 10px;
}
.shop-promo-text {
    font-size: 1.1rem;
    letter-spacing: 1px;
}
@media (max-width: 900px) {
    .shop-promo-banner {
        font-size: 1rem;
        padding: 10px 8px;
        gap: 8px;
    }
    .shop-promo-icon {
        font-size: 1.3rem;
        margin-right: 6px;
    }
}
.product-of-the-day {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 56px auto 40px auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(25,118,210,0.13);
}
.product-of-the-day-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, #e3f2fd 0%, #fff 100%);
    z-index: 1;
}
.product-of-the-day-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 48px;
    padding: 48px 32px;
}
.product-of-the-day-img-wrap {
    position: relative;
    min-width: 260px;
    max-width: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-of-the-day-img {
    width: 220px;
    height: 140px;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(25,118,210,0.10);
}
.product-of-the-day-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #d32f2f;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 16px;
    letter-spacing: 1px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.product-of-the-day-info {
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.product-of-the-day-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 18px;
}
.product-of-the-day-price-frame {
    background: #fff;
    border: 2px solid #1976d2;
    border-radius: 16px;
    padding: 10px 32px;
    margin-bottom: 18px;
    display: inline-block;
}
.product-of-the-day-price {
    font-size: 1.5rem;
    color: #1976d2;
    font-weight: 700;
}
.product-of-the-day-desc {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 22px;
    font-weight: 500;
}
.product-of-the-day-btn {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 14px 38px;
    border-radius: 28px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(211,47,47,0.10);
    transition: background 0.2s;
    margin-top: 8px;
}
.product-of-the-day-btn:hover {
    background: #b71c1c;
}
@media (max-width: 900px) {
    .product-of-the-day-inner {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 32px 8px;
    }
    .product-of-the-day-title {
        font-size: 1.2rem;
    }
    .product-of-the-day-img {
        width: 120px;
        height: 80px;
    }
    .product-of-the-day-price-frame {
        padding: 8px 18px;
    }
    .product-of-the-day-btn {
        font-size: 1rem;
        padding: 10px 18px;
    }
}
.shop-header {
    width: 100%;
    max-width: 1200px;
    margin: 48px auto 0 auto;
    padding: 0 20px;
    text-align: center;
}
.shop-header-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 24px;
}
.shop-filter-bar {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    padding: 18px 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.shop-filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}
.shop-filter-bar label {
    font-weight: 500;
    color: #1976d2;
}
#filter-price {
    width: 120px;
}
#filter-price-value {
    font-size: 0.98rem;
    color: #444;
    margin-left: 4px;
}
.shop-category-banner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 32px auto;
    padding: 0 20px;
}
.shop-category-tiles {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.shop-category-tile {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border: none;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    min-width: 120px;
    max-width: 180px;
}
.shop-category-tile img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}
.shop-category-tile span {
    font-size: 1.05rem;
    color: #1976d2;
    font-weight: 600;
}
.shop-category-tile:hover {
    box-shadow: 0 6px 24px rgba(25,118,210,0.13);
    transform: scale(1.07);
}
.shop-products-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 48px auto;
    padding: 0 20px;
}
.shop-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.shop-sort {
    display: flex;
    align-items: center;
    gap: 8px;
}
.shop-sort label {
    font-weight: 500;
    color: #1976d2;
}
#shop-sort-select {
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 4px 12px;
    color: #1976d2;
    background: #fff;
}
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}
.shop-product-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 18px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.shop-product-card:hover {
    box-shadow: 0 8px 32px rgba(25,118,210,0.13);
    transform: scale(1.04);
    z-index: 2;
}
.shop-product-img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 12px;
    border-radius: 10px;
}
.shop-product-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.shop-product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 2px;
}
.shop-product-model {
    font-size: 0.98rem;
    color: #888;
    margin-bottom: 8px;
}
.shop-product-prices {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
}
.shop-product-old {
    font-size: 1rem;
    color: #888;
    text-decoration: line-through;
}
.shop-product-new {
    font-size: 1.1rem;
    color: #d32f2f;
    font-weight: 600;
}
.shop-product-desc {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 12px;
    text-align: center;
    max-height: 2.8em;
    overflow: hidden;
}
.shop-product-btn {
    background: #1976d2;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 18px;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(25,118,210,0.10);
    transition: background 0.2s;
}
.shop-product-btn:hover {
    background: #0d47a1;
}
@media (max-width: 900px) {
    .shop-header-title {
        font-size: 1.3rem;
    }
    .shop-filter-bar {
        gap: 12px;
        padding: 10px 4px;
    }
    .shop-category-tiles {
        gap: 12px;
    }
    .shop-products-grid {
        gap: 14px;
    }
    .shop-product-card {
        padding: 10px 4px 8px 4px;
    }
}
.shop-hero {
    position: relative;
    width: 100vw;
    min-height: 520px;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 2em;
}
.shop-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.shop-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(25,118,210,0.08) 100%);
    z-index: 2;
}
.shop-hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 32px;
}
.shop-hero-left {
    flex: 1 1 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.shop-hero-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
}
.shop-hero-subtitle {
    font-size: 1.25rem;
    color: #1976d2;
    margin-bottom: 28px;
    font-weight: 500;
}
.shop-hero-cta {
    display: flex;
    gap: 18px;
}
.shop-hero-btn {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 28px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(25,118,210,0.10);
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.shop-hero-btn-primary {
    background: #1976d2;
    color: #fff;
    border: none;
}
.shop-hero-btn-primary:hover {
    background: #0d47a1;
}
.shop-hero-btn-secondary {
    background: #fff;
    color: #1976d2;
    border: 2px solid #1976d2;
}
.shop-hero-btn-secondary:hover {
    background: #e3f2fd;
    color: #0d47a1;
    border-color: #0d47a1;
}
.shop-hero-right {
    flex: 1 1 340px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.shop-hero-product-frame {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(25,118,210,0.10);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 180px;
}
.shop-hero-product-img {
    width: 180px;
    height: 120px;
    object-fit: contain;
    border-radius: 12px;
}
@media (max-width: 900px) {
    .shop-hero-inner {
        flex-direction: column;
        align-items: center;
        padding: 32px 8px;
    }
    .shop-hero-left {
        align-items: center;
        text-align: center;
        margin-bottom: 24px;
    }
    .shop-hero-right {
        justify-content: center;
        width: 100%;
    }
    .shop-hero-product-frame {
        min-width: 140px;
        min-height: 100px;
        padding: 10px;
    }
    .shop-hero-product-img {
        width: 100px;
        height: 70px;
    }
    .shop-hero-title {
        font-size: 1.3rem;
    }
    .shop-hero-subtitle {
        font-size: 1rem;
    }
    .shop-hero-btn {
        font-size: 1rem;
        padding: 10px 18px;
    }
}
.contact-cta-section {
    width: 100%;
    max-width: 900px;
    margin: 56px auto 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 40px 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-cta-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-cta-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 22px;
}
.contact-cta-icons {
    display: flex;
    gap: 32px;
    margin-bottom: 28px;
}
.contact-cta-icon {
    font-size: 2.2rem;
    background: #e3f2fd;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1976d2;
    box-shadow: 0 2px 8px rgba(25,118,210,0.07);
}
.contact-cta-btn {
    display: inline-block;
    background: #1976d2;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 14px 38px;
    border-radius: 28px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(25,118,210,0.10);
    transition: background 0.2s;
    margin-top: 8px;
}
.contact-cta-btn:hover {
    background: #0d47a1;
}
@media (max-width: 700px) {
    .contact-cta-section {
        padding: 24px 8px;
    }
    .contact-cta-title {
        font-size: 1.1rem;
    }
    .contact-cta-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    .contact-cta-btn {
        font-size: 1rem;
        padding: 10px 18px;
    }
}
.blog-expert-section {
    width: 100%;
    max-width: 1200px;
    margin: 56px auto 0 auto;
    padding: 0 20px;
    text-align: center;
}
.blog-expert-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 32px;
    color: #222;
}
.blog-expert-tiles {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.blog-expert-tile {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    width: 340px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    margin-bottom: 0;
}
.blog-expert-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
}
.blog-expert-content {
    padding: 24px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.blog-expert-heading {
    font-size: 1.15rem;
    font-weight: 600;
    color: #d32f2f;
    margin-bottom: 12px;
    text-align: left;
}
.blog-expert-excerpt {
    font-size: 1rem;
    color: #444;
    margin-bottom: 18px;
    text-align: left;
}
.blog-expert-btn {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 18px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: background 0.2s;
}
.blog-expert-btn:hover {
    background: #b71c1c;
}
@media (max-width: 900px) {
    .blog-expert-tiles {
        gap: 18px;
    }
    .blog-expert-tile {
        width: 98vw;
        max-width: 340px;
    }
    .blog-expert-thumb {
        height: 120px;
    }
}
.montaz-serwis-banner {
    width: 100%;
    max-width: 1200px;
    margin: 56px auto 0 auto;
    display: flex;
    align-items: center;
    background: #f7f7f7;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    overflow: hidden;
    padding: 0;
}
.montaz-serwis-img-wrap {
    flex: 1 1 340px;
    min-width: 260px;
    max-width: 420px;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: #eaeaea;
}
.montaz-serwis-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 18px;
    min-height: 220px;
}
.montaz-serwis-content {
    flex: 2 1 480px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.montaz-serwis-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 18px;
}
.montaz-serwis-desc {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 22px;
    font-weight: 500;
}
.montaz-serwis-icons {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
}
.montaz-serwis-icon {
    font-size: 2.1rem;
    background: #fff;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    color: #d32f2f;
}
.montaz-serwis-btn {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 24px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: background 0.2s;
    margin-top: 8px;
}
.montaz-serwis-btn:hover {
    background: #b71c1c;
}
@media (max-width: 900px) {
    .montaz-serwis-banner {
        flex-direction: column;
        max-width: 98vw;
    }
    .montaz-serwis-img-wrap {
        max-width: 100vw;
        min-width: 180px;
    }
    .montaz-serwis-content {
        padding: 28px 16px;
        align-items: center;
        text-align: center;
    }
}
.reviews-slider {
    width: 100%;
    max-width: 900px;
    margin: 56px auto 0 auto;
    padding: 0 20px;
    text-align: center;
}
.reviews-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 32px;
    color: #222;
}
.reviews-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.review-card {
    width: 320px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 32px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}
.review-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.review-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
}
.review-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
}
.review-stars {
    font-size: 1.1rem;
    color: #ffd600;
    letter-spacing: 2px;
}
.review-comment {
    font-size: 1.05rem;
    color: #444;
    font-weight: 400;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 0;
}
@media (max-width: 700px) {
    .reviews-slides, .review-card {
        min-width: 220px;
        max-width: 220px;
        min-height: 180px;
        padding: 16px 4px 8px 4px;
    }
    .review-avatar {
        width: 48px;
        height: 48px;
    }
    .reviews-title {
        font-size: 1.3rem;
    }
    .reviews-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
}
.new-product-desc {
    display: block;
    font-size: 0.98rem;
    color: #666;
    margin-top: 6px;
    text-align: center;
    font-weight: 400;
    line-height: 1.4;
}
.new-products-slider {
    width: 100%;
    max-width: 1200px;
    margin: 48px auto 0 auto;
    padding: 0 20px;
    text-align: center;
}
.new-products-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 32px;
    color: #222;
}
.new-products-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 0;
}
.new-products-arrow {
    background: #fff;
    border: none;
    font-size: 2rem;
    color: #d32f2f;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
}
.new-products-arrow:hover {
    background: #f5f5f5;
}
.new-products-slides {
    display: flex;
    overflow: hidden;
    width: 340px;
    min-height: 320px;
    position: relative;
}
.new-product-slide {
    min-width: 340px;
    max-width: 340px;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s, transform 0.5s;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 24px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.new-product-slide.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
    z-index: 1;
}
.new-product-img-wrap {
    position: relative;
    width: 180px;
    height: 120px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.new-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.new-product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #d32f2f;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 1px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.new-product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.new-product-name {
    font-size: 1.15rem;
    font-weight: 500;
    color: #222;
}
.new-product-price {
    font-size: 1.1rem;
    color: #d32f2f;
    font-weight: 600;
}
@media (max-width: 700px) {
    .new-products-slides, .new-product-slide {
        min-width: 220px;
        max-width: 220px;
        min-height: 220px;
        padding: 12px 4px 8px 4px;
    }
    .new-product-img-wrap {
        width: 120px;
        height: 80px;
    }
    .new-products-title {
        font-size: 1.3rem;
    }
    .new-products-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
}
.usp-section {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  padding: 0 20px;
  text-align: center;
}
.usp-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 32px;
  color: #222;
}
.usp-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
}
.usp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f5f5f5;
  font-size: 2.2rem;
  color: #d32f2f;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.usp-desc {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
  text-align: center;
}
.usp-subdesc {
    display: block;
    font-size: 0.95rem;
    color: #888;
    margin-top: 6px;
    text-align: center;
    font-weight: 400;
    line-height: 1.4;
}
@media (max-width: 700px) {
  .usp-list {
    gap: 20px;
  }
  .usp-item {
    width: 120px;
  }
  .usp-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
  .usp-title {
    font-size: 1.3rem;
  }
}
.special-promo {
    max-width: 1200px;
    margin: 3em auto 2em auto;
    padding: 0 2em;
}
.special-promo-banner {
    display: flex;
    align-items: center;
    background: #fff5f5;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(255,0,0,0.08);
    overflow: hidden;
    position: relative;
    padding: 2em 1em;
    gap: 2em;
}
.special-promo-img {
    width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(255,0,0,0.10);
    background: #fff;
}
.special-promo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1em;
}
.special-promo-content h2 {
    color: #d32f2f;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 0.5em;
}
.special-promo-timer {
    font-size: 1.2em;
    color: #d32f2f;
    font-weight: bold;
    background: #fff0f0;
    padding: 0.5em 1em;
    border-radius: 8px;
    margin-bottom: 0.5em;
}
.special-promo-prices {
    display: flex;
    align-items: center;
    gap: 1em;
    font-size: 1.3em;
    margin-bottom: 0.5em;
}
.special-promo-old {
    color: #888;
    text-decoration: line-through;
    font-weight: 500;
}
.special-promo-new {
    color: #d32f2f;
    font-weight: bold;
    font-size: 1.5em;
    background: #fff0f0;
    padding: 0.2em 0.7em;
    border-radius: 8px;
}
.special-promo-btn {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    font-size: 1.15em;
    font-weight: bold;
    padding: 0.8em 2em;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 2px 16px rgba(255,0,0,0.12);
    transition: background 0.2s, transform 0.2s;
    margin-top: 0.5em;
}
.special-promo-btn:hover {
    background: #b71c1c;
    transform: scale(1.05);
}
@media (max-width: 900px) {
    .special-promo-banner {
        flex-direction: column;
        gap: 1em;
        padding: 1em 0.5em;
    }
    .special-promo-img {
        width: 100%;
        height: 160px;
    }
}
.recommended-products {
    max-width: 1200px;
    margin: 3em auto 2em auto;
    padding: 0 2em;
    text-align: center;
}
.recommended-products-title {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 1.5em;
    color: #0077c2;
}
.recommended-products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
}
.product-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 260px;
    min-height: 380px;
    text-align: left;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.product-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}
.product-card-content {
    padding: 1.2em 1em 1em 1em;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-card-content h3 {
    font-size: 1.15em;
    margin-bottom: 0.5em;
    color: #0077c2;
}
.product-card-content p {
    font-size: 0.98em;
    color: #444;
    margin-bottom: 1em;
}
.product-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
}
.product-card-price {
    font-size: 1.15em;
    font-weight: bold;
    color: #222;
}
.product-card-btn {
    background: #0077c2;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 0.6em 1.5em;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, transform 0.2s;
}
.product-card-btn:hover {
    background: #005fa3;
    transform: scale(1.07);
}
.product-card:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(0,119,194,0.14);
    z-index: 2;
}
@media (max-width: 900px) {
    .recommended-products-grid {
        gap: 1em;
    }
    .product-card {
        width: 180px;
        min-height: 280px;
    }
    .product-card img {
        height: 90px;
    }
}
@media (max-width: 600px) {
    .recommended-products-grid {
        flex-direction: column;
        gap: 0.5em;
    }
    .product-card {
        width: 100%;
        min-height: 180px;
    }
    .product-card img {
        height: 60px;
    }
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.product-categories {
    max-width: 1200px;
    margin: 3em auto 2em auto;
    padding: 0 2em;
    text-align: center;
}
.product-categories-title {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 0;
    color: #0077c2;
}
.product-categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
}
.category-tile {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px;
    min-height: 220px;
    text-decoration: none;
    color: #222;
    font-size: 1.1em;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    position: relative;
}
.category-tile img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 1em;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    background: #e3f2fd;
}
.category-tile span {
    margin-bottom: 0.5em;
    font-weight: bold;
    font-size: 1.08em;
}
.category-tile small {
    display: block;
    color: #555;
    font-size: 0.98em;
    margin-bottom: 0.5em;
    padding: 0 0.5em;
}
.category-tile:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 24px rgba(0,119,194,0.18);
    z-index: 2;
}
@media (max-width: 900px) {
    .product-categories-grid {
        gap: 1em;
    }
    .category-tile {
        width: 160px;
        min-height: 160px;
        font-size: 1em;
    }
    .category-tile img {
        width: 70px;
        height: 70px;
    }
}
@media (max-width: 600px) {
    .product-categories-grid {
        flex-direction: column;
        gap: 0.5em;
    }
    .category-tile {
        width: 100%;
        min-height: 120px;
        font-size: 0.95em;
    }
    .category-tile img {
        width: 50px;
        height: 50px;
    }
}
.hero-slider {
    position: relative;
    width: 100vw;
    min-height: 70vh;
    height: 100vh;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 2em;
}
.hero-slider-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.hero-slider-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 34, 68, 0.55);
    z-index: 2;
}
.hero-slider-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.hero-slider-content h1 {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 1em;
    text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.hero-slider-btn {
    display: inline-block;
    background: #0077c2;
    color: #fff;
    font-size: 1.3em;
    font-weight: bold;
    padding: 1em 2.5em;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
    transition: background 0.2s, transform 0.2s;
    margin-top: 1em;
}
.hero-slider-btn:hover {
    background: #005fa3;
    transform: scale(1.05);
}
@media (max-width: 900px) {
    .hero-slider-content h1 {
        font-size: 2em;
    }
    .hero-slider-btn {
        font-size: 1em;
        padding: 0.8em 1.5em;
    }
}
@media (max-width: 600px) {
    .hero-slider {
        min-height: 40vh;
        height: 60vh;
    }
    .hero-slider-content h1 {
        font-size: 1.2em;
    }
}
.newsletter-popup-btn-close {
    margin-top: 1em;
    background: #0077c2;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.5em 1.5em;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter-popup-btn-close:hover {
    background: #005fa3;
}
.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.newsletter-popup-content {
    background: #fff;
    color: #222;
    padding: 2em 2em 1em 2em;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
    text-align: center;
    min-width: 260px;
    max-width: 90vw;
}
.newsletter-popup-close {
    position: absolute;
    top: 18px;
    right: 28px;
    font-size: 2em;
    color: #0077c2;
    cursor: pointer;
    font-weight: bold;
    background: none;
    border: none;
    outline: none;
}
.newsletter-popup-close:focus,
.newsletter-popup-close:hover {
    color: #ffd700;
}
body {
margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7f7f7;
    color: #222;
}
header {
    background: #0077c2;
    color: #fff;
    padding: 0.5em 0;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin: 0 auto;
}
.menu-bar {
    width: 28px;
    height: 4px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}
.nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.nav-list li {
    margin: 0 1em;
}
@media (max-width: 900px) {
    .features {
        flex-direction: column;
        gap: 1em;
    }
}
@media (max-width: 700px) {
    .nav-list {
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0077c2;
        z-index: 100;
        display: none;
        line-height: 30px;
    }
    .nav-list.active {
        display: flex;
    }
    .menu-toggle {
        display: flex;
    }
    nav {
        position: relative;
    }
}
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    margin-bottom: 0.5em;
}
.site-logo {
    height: 48px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.10));
    transition: transform 0.2s;
}
.site-logo:hover {
    transform: scale(1.05);
}
.site-name {
    font-size: 2em;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    font-family: 'Segoe UI', Arial, sans-serif;
    letter-spacing: 1px;
    transition: color 0.2s;
}
.site-name:hover {
    color: #ffd700;
}
nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}
nav ul li {
    margin: 0 1em;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
nav ul li a:hover {
    color: #ffd700;
}
.hero {
    background: linear-gradient(90deg, #e3f2fd 60%, #fff 100%);
    text-align: center;
    padding: 3em 1em 2em 1em;
}
.hero h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 1em;
}
.btn {
    display: inline-block;
    background: #0077c2;
    color: #fff;
    padding: 0.75em 2em;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
}
.btn:hover {
    background: #005fa3;
}
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin: 2em 0;
}
.features div {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 2em;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
    text-align: center;
}
footer {
    background: #222;
    color: #fff;
    padding: 2em 0 1em 0;
    margin-top: 2em;
}
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2em;
    max-width: 1200px;
    margin: 0 auto 1em auto;
    padding: 0 2em;
}
.footer-col {
    flex: 1 1 180px;
    min-width: 180px;
    max-width: 260px;
    margin-bottom: 1em;
}
.footer-col h3 {
    font-size: 1.1em;
    margin-bottom: 0.5em;
    color: #ffd700;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 0.5em;
    font-size: 0.98em;
}
.footer-col a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: #ffd700;
}
.newsletter-form {
    display: flex;
    gap: 0.5em;
    margin-bottom: 0.5em;
}
.newsletter-form input[type="email"] {
    padding: 0.5em;
    border-radius: 4px;
    border: none;
    font-size: 1em;
    width: 140px;
}
.newsletter-form button {
    background: #0077c2;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.5em 1em;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter-form button:hover {
    background: #005fa3;
}
.footer-copyright {
    text-align: center;
    font-size: 0.95em;
    color: #bbb;
    margin-top: 1em;
}
@media (max-width: 900px) {
    .footer-columns {
        flex-wrap: wrap;
        gap: 1em;
    }
    .footer-col {
        min-width: 140px;
        max-width: 100%;
    }
}
@media (max-width: 700px) {
    .footer-columns {
        flex-direction: column;
        gap: 0.5em;
        padding: 0 1em;
    }
    .footer-col {
        margin-bottom: 0.5em;
    }
}
@media (max-width: 900px) {
    .features {
        flex-direction: column;
        gap: 1em;
    }
}
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        gap: 0.5em;
    }
    .hero h1 {
        font-size: 1.5em;
    }
    .features div {
        padding: 1em;
    }
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5em;
}
.site-logo {
    height: 48px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.10));
    transition: transform 0.2s;
}
.site-logo:hover {
    transform: scale(1.05);
}
