:root {
    --ink: #071d2b;
    --ink-soft: #3d5260;
    --muted: #71818b;
    --orange: #ff6a0b;
    --orange-dark: #ed4f0a;
    --orange-soft: #fff1e8;
    --green: #16b866;
    --green-dark: #089b50;
    --cream: #fffaf5;
    --line: #dfe7eb;
    --white: #ffffff;
    --shadow: 0 28px 65px rgba(7, 29, 43, .12);
    --radius: 28px;
    --container: 1472px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Noto Sans Bengali", "Hind Siliguri", "Nirmala UI", "Vrinda", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(255, 106, 11, .45);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    transform: translateY(-160%);
    padding: 10px 16px;
    border-radius: 10px;
    color: #fff;
    background: var(--ink);
}

.skip-link:focus {
    transform: none;
}

.sr-only,
.menu-toggle .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(7, 29, 43, .08);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 102px;
    display: grid;
    grid-template-columns: minmax(300px, 1fr) auto minmax(220px, 1fr);
    align-items: center;
    gap: 36px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
}

.brand-mark {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 17px;
    background: linear-gradient(145deg, #ff8a2b, var(--orange));
    box-shadow: 0 15px 30px rgba(255, 106, 11, .24);
}

.brand-mark svg {
    width: 27px;
    fill: currentColor;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.25;
}

.brand-copy strong {
    max-width: 330px;
    font-size: 20px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 42px;
}

.primary-nav a {
    position: relative;
    color: #304652;
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: var(--orange);
    transition: right .25s ease;
}

.primary-nav a:hover {
    color: var(--orange-dark);
}

.primary-nav a:hover::after {
    right: 0;
}

.header-cta {
    justify-self: end;
}

.button {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid transparent;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1.2;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.button:hover {
    transform: translateY(-2px);
}

.button-orange {
    color: #fff;
    background: linear-gradient(135deg, #ff7714, #f24d0b);
    box-shadow: 0 16px 34px rgba(242, 77, 11, .25);
}

.button-orange:hover {
    box-shadow: 0 20px 42px rgba(242, 77, 11, .34);
}

.button-outline {
    color: var(--ink);
    border-color: #cbd7dc;
    background: rgba(255, 255, 255, .88);
}

.button-outline:hover {
    border-color: var(--orange);
    color: var(--orange-dark);
}

.is-disabled {
    cursor: not-allowed !important;
    opacity: .62;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: 820px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(100deg, #fff 0%, #fffdfa 58%, #fff4e9 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(1px);
    pointer-events: none;
}

.hero-glow-one {
    right: -130px;
    top: 50px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 141, 46, .17), rgba(255, 141, 46, 0) 68%);
}

.hero-glow-two {
    left: 24%;
    bottom: -260px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(22, 184, 102, .08), rgba(22, 184, 102, 0) 68%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: clamp(48px, 7vw, 112px);
    padding-block: 80px;
}

.hero-copy {
    max-width: 670px;
}

.eyebrow {
    margin: 0 0 20px;
    color: #c35413;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .01em;
}

.hero h1 {
    margin: 0;
    max-width: 680px;
    font-size: clamp(54px, 5.1vw, 88px);
    line-height: .98;
    letter-spacing: -.045em;
    font-weight: 900;
}

.hero h1 span {
    color: var(--orange);
}

.hero-lead {
    margin: 34px 0 0;
    padding-left: 20px;
    border-left: 4px solid var(--orange);
    color: #2f4653;
    font-size: clamp(22px, 1.65vw, 29px);
    font-weight: 700;
    line-height: 1.55;
}

.hero-description {
    max-width: 650px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.trust-line {
    margin: 26px 0 0;
    color: #61757f;
    font-size: 15px;
}

.trust-line span {
    display: inline-grid;
    place-items: center;
    width: 29px;
    height: 29px;
    margin-right: 8px;
    color: var(--green-dark);
    border-radius: 50%;
    background: #e9fff3;
}

.hero-visual {
    position: relative;
    max-width: 690px;
    width: 100%;
    justify-self: end;
    padding: 15px;
    border-radius: 38px;
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--shadow);
    transform: rotate(1deg);
}

.collage {
    position: relative;
    aspect-ratio: 1 / 1.02;
    overflow: hidden;
    border-radius: 28px;
    background: #e8edf0;
}

.collage-image {
    position: absolute;
    object-fit: cover;
    border: 3px solid #fff;
}

.collage-image-1 {
    left: 0;
    top: 0;
    width: 24%;
    height: 50%;
}

.collage-image-2 {
    left: 24%;
    top: 0;
    width: 53%;
    height: 100%;
}

.collage-image-3 {
    right: 0;
    top: 0;
    width: 23%;
    height: 100%;
}

.collage-image-4 {
    left: 0;
    bottom: 0;
    width: 24%;
    height: 50%;
}

.hero-badge {
    position: absolute;
    top: 46px;
    right: -20px;
    width: 160px;
    min-height: 142px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 7px;
    padding: 18px;
    text-align: center;
    color: #fff;
    border: 5px solid #fff;
    border-radius: 32px;
    background: var(--ink);
    box-shadow: 0 24px 45px rgba(7, 29, 43, .25);
    transform: rotate(4deg);
}

.hero-badge strong {
    color: #ff9145;
    font-size: 27px;
}

.hero-badge span {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.visual-whatsapp {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    color: #fff;
    border-radius: 14px;
    background: linear-gradient(135deg, #20c877, var(--green-dark));
    box-shadow: 0 17px 33px rgba(8, 155, 80, .2);
    font-weight: 800;
}

.section {
    padding-block: 110px;
}

.section-heading {
    max-width: 900px;
    margin-bottom: 54px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading .eyebrow {
    margin-bottom: 10px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(42px, 4vw, 70px);
    line-height: 1.12;
    letter-spacing: -.04em;
}

.section-heading > p:last-child {
    margin: 18px auto 0;
    max-width: 790px;
    color: var(--muted);
    font-size: 18px;
}

.services-section {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px 28px;
}

.service-card {
    position: relative;
    height: 390px;
    overflow: hidden;
    border-radius: 28px;
    background: #d8e0e4;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.service-item:hover .service-card img {
    transform: scale(1.035);
}

.service-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 21, 32, .92) 0%, rgba(3, 21, 32, .12) 55%, rgba(3, 21, 32, .03) 100%);
}

.service-card h3 {
    position: absolute;
    left: 28px;
    right: 86px;
    bottom: 24px;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-size: 29px;
    line-height: 1.2;
}

.card-arrow {
    position: absolute;
    right: 23px;
    bottom: 22px;
    z-index: 1;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 15px;
    background: var(--orange);
    font-size: 25px;
}

.service-whatsapp {
    min-height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 15px;
    padding: 12px 20px;
    color: #fff;
    border-radius: 13px;
    background: linear-gradient(135deg, #21c875, #0da653);
    box-shadow: 0 16px 28px rgba(13, 166, 83, .18);
    font-weight: 800;
}

.packages-section {
    background: linear-gradient(180deg, #fbfcfd, #fff 72%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 28px;
}

.package-card {
    position: relative;
    min-height: 510px;
    display: flex;
    flex-direction: column;
    padding: 40px 36px 34px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 22px 50px rgba(7, 29, 43, .07);
}

.package-card.featured {
    min-height: 555px;
    padding-top: 50px;
    border: 2px solid var(--orange);
    box-shadow: 0 30px 60px rgba(242, 77, 11, .13);
}

.popular-badge {
    position: absolute;
    top: 22px;
    right: 24px;
    padding: 8px 16px;
    color: #fff;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff7714, #f24d0b);
    box-shadow: 0 10px 20px rgba(242, 77, 11, .22);
    font-size: 13px;
    font-weight: 800;
}

.package-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    color: var(--orange);
    border-radius: 18px;
    background: var(--orange-soft);
    font-size: 35px;
}

.package-card h3 {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 30px;
    line-height: 1.25;
}

.duration {
    margin: 12px 0 0;
    color: var(--muted);
    font-weight: 700;
}

.package-divider {
    height: 1px;
    margin: 28px 0 30px;
    background: var(--line);
}

.price {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: clamp(38px, 3vw, 56px);
    font-weight: 850;
    letter-spacing: -.04em;
}

.price small {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
}

.price-note {
    margin: 10px 0 30px;
    color: #a54815;
    font-size: 14px;
    font-weight: 700;
}

.package-button {
    width: 100%;
    margin-top: auto;
}

.budget-note {
    max-width: 800px;
    margin: 30px auto 0;
    color: var(--muted);
    text-align: center;
}

.why-section {
    position: relative;
    overflow: hidden;
    padding-block: 110px 120px;
    color: #fff;
    background: var(--ink);
}

.why-orbit {
    position: absolute;
    left: -230px;
    bottom: -340px;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, .018), 0 0 0 150px rgba(255, 255, 255, .012);
}

.dark-heading {
    position: relative;
    z-index: 1;
}

.dark-heading h2 {
    color: #fff;
}

.dark-heading > p:last-child {
    color: #9bb0bc;
}

.reasons-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.reason-card {
    min-height: 300px;
    padding: 34px 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 26px;
    background: rgba(255, 255, 255, .045);
}

.reason-card > span {
    color: #ff9c57;
    font-size: 14px;
    font-weight: 800;
}

.reason-card h3 {
    margin: 52px 0 14px;
    color: #fff;
    font-size: 24px;
    line-height: 1.3;
}

.reason-card p {
    margin: 0;
    color: #9bb0bc;
    font-size: 15px;
}

.site-footer {
    padding: 74px 0 26px;
    color: #adc0c9;
    background: #051724;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr .8fr;
    gap: 80px;
}

.footer-brand-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 20px;
}

.footer-brand-heading .brand-mark {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
}

.footer-brand > p {
    max-width: 560px;
    margin: 20px 0 0;
}

.footer-grid h2 {
    margin: 0 0 20px;
    color: #ff9a52;
    font-size: 16px;
}

.footer-grid > div > a,
.footer-grid button {
    display: block;
    margin: 12px 0;
    padding: 0;
    color: #c2d0d7;
    border: 0;
    background: none;
    cursor: pointer;
    text-align: left;
}

.footer-grid a:hover,
.footer-grid button:hover {
    color: #fff;
}

.business-detail {
    font-size: 14px;
}

.footer-disclaimer {
    margin-top: 46px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: #829aa6;
    font-size: 13px;
}

.footer-tracking-notice {
    margin-top: 42px;
    padding: 16px 18px;
    color: #9bb0bc;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 13px;
    background: rgba(255, 255, 255, .035);
    font-size: 13px;
}

.footer-tracking-notice a {
    color: #ff9a52;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    color: #78909c;
    font-size: 13px;
}

.footer-bottom a:hover {
    color: #fff;
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 3000;
    width: min(calc(100% - 32px), 980px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px;
    border: 1px solid #dce5e9;
    border-radius: 22px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 30px 80px rgba(7, 29, 43, .22);
    transform: translateX(-50%);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-copy strong {
    display: block;
    font-size: 18px;
}

.cookie-copy p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.cookie-copy a {
    color: var(--orange-dark);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.cookie-actions .button {
    min-height: 48px;
    padding: 10px 18px;
    border-radius: 13px;
}

.whatsapp-notice {
    position: fixed;
    left: 50%;
    bottom: 30px;
    z-index: 3500;
    padding: 13px 20px;
    color: #fff;
    border-radius: 12px;
    background: var(--ink);
    box-shadow: var(--shadow);
    transform: translateX(-50%);
}

.whatsapp-notice[hidden] {
    display: none;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 16px;
    background: var(--orange);
    box-shadow: 0 16px 30px rgba(242, 77, 11, .28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: .2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.legal-page {
    background: #f7f9fa;
}

.legal-header .header-inner {
    display: flex;
    justify-content: space-between;
}

.legal-main {
    padding: 90px 0 110px;
}

.legal-container {
    max-width: 960px;
}

.legal-container h1 {
    margin: 0;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.1;
}

.legal-updated {
    margin: 16px 0 40px;
    color: var(--muted);
}

.legal-copy {
    padding: clamp(28px, 5vw, 64px);
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(7, 29, 43, .07);
}

.legal-copy p {
    margin: 0 0 25px;
    color: #38505c;
    font-size: 17px;
}

.legal-copy p:last-child {
    margin-bottom: 0;
}

.legal-footer {
    padding-top: 12px;
}

.legal-footer .footer-tracking-notice {
    margin-top: 0;
}

.legal-footer button {
    padding: 0;
    color: inherit;
    border: 0;
    background: none;
    cursor: pointer;
}

@media (max-width: 1220px) {
    .header-inner {
        grid-template-columns: 1fr auto auto;
        gap: 20px;
    }

    .primary-nav {
        gap: 24px;
    }

    .hero {
        min-height: 760px;
    }

    .hero-grid {
        gap: 52px;
    }

    .service-card {
        height: 330px;
    }

    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 980px) {
    .container {
        width: min(calc(100% - 36px), var(--container));
    }

    .header-inner {
        min-height: 82px;
        grid-template-columns: 1fr auto;
    }

    .brand-copy strong {
        max-width: 250px;
        font-size: 17px;
    }

    .brand-copy small,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    .primary-nav {
        position: fixed;
        inset: 82px 0 auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px;
        border-bottom: 1px solid var(--line);
        background: #fff;
        box-shadow: 0 24px 42px rgba(7, 29, 43, .12);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav a {
        padding: 15px;
        border-bottom: 1px solid #edf1f3;
    }

    .primary-nav a:last-child {
        border-bottom: 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-block: 70px 90px;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-visual {
        max-width: 720px;
        justify-self: center;
        transform: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin-inline: auto;
    }

    .package-card,
    .package-card.featured {
        min-height: 480px;
    }

    .footer-grid {
        grid-template-columns: 1.3fr 1fr;
        gap: 45px;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand-mark {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 14px;
    }

    .brand-copy strong {
        max-width: 205px;
        font-size: 15px;
    }

    .hero-grid {
        padding-block: 54px 72px;
    }

    .hero h1 {
        font-size: clamp(48px, 15vw, 68px);
    }

    .hero-lead {
        margin-top: 26px;
        font-size: 20px;
    }

    .hero-actions,
    .hero-actions .button {
        width: 100%;
    }

    .hero-badge {
        top: 28px;
        right: -5px;
        width: 125px;
        min-height: 112px;
        padding: 12px;
        border-width: 3px;
        border-radius: 24px;
    }

    .hero-badge span {
        font-size: 13px;
    }

    .section,
    .why-section {
        padding-block: 78px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2 {
        font-size: 42px;
    }

    .section-heading > p:last-child {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        height: 340px;
    }

    .package-card,
    .package-card.featured {
        min-height: auto;
        padding: 32px 25px;
    }

    .package-button {
        margin-top: 25px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .reason-card {
        min-height: auto;
    }

    .reason-card h3 {
        margin-top: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid > div:first-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .cookie-banner {
        align-items: stretch;
        flex-direction: column;
        bottom: 12px;
    }

    .cookie-actions,
    .cookie-actions .button {
        width: 100%;
    }

    .legal-header .brand-copy small {
        display: none;
    }

    .legal-header .button {
        min-height: 45px;
        padding: 10px 14px;
        font-size: 13px;
    }

    .legal-main {
        padding: 64px 0 80px;
    }

    .legal-copy {
        padding: 25px 20px;
        border-radius: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
