/* ============================================================
   Packing & Moving Box Calculator — standalone stylesheet
   ============================================================ */

.mgm-pack-page,
.mgm-pack-page * {
    box-sizing: border-box;
}

.mgm-pack-page {
    --pk-navy: #16395C;
    --pk-blue: #2E7FC4;
    --pk-blue-dark: #0d5c8a;
    --pk-orange: #F5821F;
    --pk-green: #1D9E75;
    --pk-ink: #17212f;
    --pk-text: #55606C;
    --pk-muted: #6C7076;
    --pk-border: #D5E5F3;
    --pk-soft: #F6F9FC;
    --pk-white: #FFFFFF;
    font-family: "Plus Jakarta Sans", "Outfit", Arial, sans-serif;
    color: var(--pk-ink);
    background: linear-gradient(180deg, #FBF3EF 0%, #ffffff 22%, #ffffff 100%);
}

.mgm-pack-page a {
    color: var(--pk-blue);
    text-decoration: none;
}

.mgm-pack-page a:hover {
    color: var(--pk-blue-dark);
    text-decoration: underline;
}

.mgm-pack-container {
    width: 1260px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
}

/* ============================================================
   Hero
   ============================================================ */
.mgm-pack-hero {
    padding: 34px 0 40px;
}

.mgm-pack-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--pk-muted);
    font-size: 14px;
    font-weight: 700;
}

.mgm-pack-breadcrumb a {
    color: var(--pk-blue);
    font-weight: 800;
}

.mgm-pack-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr);
    gap: 40px;
    align-items: start;
}

.mgm-pack-hero-grid h1 {
    margin: 0;
    font-family: "Noto Serif", Georgia, serif;
    font-weight: 800;
    font-size: 42px;
    line-height: 1.12;
    letter-spacing: -.02em;
    color: var(--pk-ink);
}

.mgm-pack-hero-grid p {
    margin: 6px 0 0;
    font-size: 15.5px;
    line-height: 165%;
    color: var(--pk-text);
}

/* ============================================================
   Calculator card
   ============================================================ */
.mgm-pack-calc-shell {
    padding: 0 0 20px;
}

.mgm-pack-calc-card {
    padding: 34px 36px;
    background: var(--pk-white);
    border: 1px solid var(--pk-border);
    border-radius: 22px;
    box-shadow: 0 20px 45px -30px rgba(16, 40, 70, .35);
}

.mgm-pack-calc-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 22px;
}

.mgm-pack-calc-head h2 {
    margin: 0 0 6px;
    font-family: "Noto Serif", Georgia, serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--pk-navy);
}

.mgm-pack-calc-head p {
    margin: 0;
    max-width: 520px;
    font-size: 13.5px;
    line-height: 160%;
    color: var(--pk-muted);
}

.mgm-pack-free-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #E9F9F1;
    border: 1px solid #B9EBD2;
    border-radius: 999px;
    color: var(--pk-green);
    font-size: 12.5px;
    font-weight: 800;
    white-space: nowrap;
}

.mgm-pack-free-badge:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pk-green);
}

.mgm-pack-input-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: end;
}

.mgm-pack-field label {
    display: block;
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--pk-navy);
}

.mgm-pack-input-wrap {
    position: relative;
}

.mgm-pack-input-wrap svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #9FB4C9;
    pointer-events: none;
}

.mgm-pack-field input[type="number"],
.mgm-pack-field select {
    width: 100%;
    padding: 13px 14px 13px 38px;
    background: var(--pk-soft);
    border: 1px solid var(--pk-border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--pk-ink);
    appearance: none;
}

.mgm-pack-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232E7FC4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 34px;
}

.mgm-pack-field input:focus,
.mgm-pack-field select:focus {
    outline: none;
    border-color: var(--pk-blue);
    background: var(--pk-white);
}

.mgm-pack-field-note {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--pk-navy);
}

.mgm-pack-field-hint {
    display: block;
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--pk-muted);
    text-align: right;
}

.mgm-pack-calc-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    background: var(--pk-orange);
    border: none;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 14.5px;
    font-weight: 800;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
}

.mgm-pack-calc-btn:hover {
    background: #DB6E0F;
}

.mgm-pack-calc-btn svg {
    width: 16px;
    height: 16px;
}

.mgm-pack-action-row {
    margin-top: 16px;
}

.mgm-pack-helper {
    margin: 0;
    font-size: 13px;
    color: var(--pk-muted);
}

/* Results */
.results {
    display: none;
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid var(--pk-border);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin: 14px 0 18px;
}

.box-result {
    padding: 18px 14px;
    background: var(--pk-soft);
    border: 1px solid var(--pk-border);
    border-radius: 14px;
    text-align: center;
}

.box-result img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    margin: 0 auto 10px;
}

.lower_boxes {
    font-size: 13px;
    color: var(--pk-navy);
    margin-bottom: 4px;
}

.min_max_cost {
    font-size: 13px;
    font-weight: 700;
    color: var(--pk-blue-dark);
}

.disclaimer {
    display: none;
    margin: 10px 0 0;
    font-size: 12.5px;
    color: var(--pk-muted);
    text-align: center;
}

.download_btn {
    display: none;
    margin: 18px auto 0;
    padding: 12px 24px;
    background: var(--pk-navy);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.thank_you {
    display: none;
    margin: 12px 0 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--pk-green);
    text-align: center;
}

/* ============================================================
   Generic content section wrapper
   ============================================================ */
.mgm-pack-section {
    padding: 50px 0 10px;
}

.mgm-pack-eyebrow {
    display: block;
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #2D91EB;
}

.mgm-pack-section h2 {
    margin: 0 0 14px;
    font-family: "Noto Serif", Georgia, serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 125%;
    letter-spacing: -.01em;
    color: var(--pk-navy);
}

.mgm-pack-section > p {
    margin: 0 0 30px;
    max-width: 760px;
    font-size: 15px;
    line-height: 165%;
    color: var(--pk-text);
}

/* ============================================================
   3-card numbered plan grid
   ============================================================ */
.mgm-pack-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mgm-pack-plan-card {
    padding: 26px 24px;
    background: var(--pk-white);
    border: 1px solid var(--pk-border);
    border-radius: 18px;
}

.mgm-pack-plan-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin: 0 0 16px;
    background: #E9F3FB;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    color: var(--pk-blue);
}

.mgm-pack-plan-card h3 {
    margin: 0 0 8px;
    font-family: "Noto Serif", Georgia, serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--pk-navy);
}

.mgm-pack-plan-card p {
    margin: 0;
    font-size: 13.5px;
    line-height: 160%;
    color: var(--pk-muted);
}

/* ============================================================
   Tables
   ============================================================ */
.mgm-pack-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--pk-border);
    border-radius: 12px;
}

.mgm-pack-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    font-family: inherit;
}

.mgm-pack-table thead th {
    padding: 13px 18px;
    background: var(--pk-blue);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    line-height: 150%;
    text-align: left;
    white-space: nowrap;
}

.mgm-pack-table tbody td {
    padding: 13px 18px;
    font-size: 13.5px;
    line-height: 150%;
    color: #3A3A3C;
    border-top: 1px solid #E7F0F8;
}

.mgm-pack-table tbody td:first-child {
    font-weight: 700;
    color: var(--pk-navy);
    white-space: nowrap;
}

.mgm-pack-table tbody tr:nth-child(even) {
    background: var(--pk-soft);
}

.mgm-pack-table .ok {
    color: var(--pk-green);
    font-weight: 700;
}

.mgm-pack-table .total {
    color: var(--pk-green);
    font-weight: 800;
    white-space: nowrap;
}

.mgm-pack-check {
    color: var(--pk-green);
    font-weight: 800;
    margin-right: 4px;
}

.mgm-pack-note {
    margin-top: 18px;
    padding: 16px 20px;
    background: #FEF6E7;
    border: 1px solid #F5E1B0;
    border-radius: 12px;
    font-size: 13.5px;
    line-height: 160%;
    color: #6B5622;
}

.mgm-pack-note strong {
    color: #8A6D14;
}

/* ============================================================
   2-card adjust grid
   ============================================================ */
.mgm-pack-adjust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mgm-pack-mini-card {
    padding: 26px 24px;
    background: var(--pk-white);
    border: 1px solid var(--pk-border);
    border-radius: 18px;
}

.mgm-pack-mini-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 0 16px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
}

.mgm-pack-mini-icon.plus {
    background: #E9F3FB;
    color: var(--pk-blue);
}

.mgm-pack-mini-icon.minus {
    background: #E9F9F1;
    color: var(--pk-green);
}

.mgm-pack-mini-card h3 {
    margin: 0 0 8px;
    font-family: "Noto Serif", Georgia, serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--pk-navy);
}

.mgm-pack-mini-card p {
    margin: 0;
    font-size: 13.5px;
    line-height: 160%;
    color: var(--pk-muted);
}

/* ============================================================
   5-card weight guide grid
   ============================================================ */
.mgm-pack-weight-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.mgm-pack-weight-card {
    padding: 22px 18px;
    background: var(--pk-white);
    border: 1px solid var(--pk-border);
    border-radius: 16px;
    text-align: center;
}

.mgm-pack-weight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 14px;
    background: #E9F3FB;
    border-radius: 10px;
    color: var(--pk-blue);
}

.mgm-pack-weight-icon svg {
    width: 20px;
    height: 20px;
}

.mgm-pack-weight-card h3 {
    margin: 0 0 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--pk-navy);
}

.mgm-pack-weight-value {
    display: block;
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 800;
    color: var(--pk-blue-dark);
}

.mgm-pack-weight-card span.cap {
    font-size: 11.5px;
    color: var(--pk-muted);
}

/* ============================================================
   CTA banner
   ============================================================ */
.mgm-pack-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 34px;
    background: linear-gradient(120deg, #EAF3FC 0%, #DCEBFA 60%, #CFE4F8 100%);
    border-radius: 22px;
}

.mgm-pack-cta-banner h2 {
    margin: 0 0 6px;
    font-family: "Noto Serif", Georgia, serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--pk-ink);
}

.mgm-pack-cta-banner p {
    margin: 0;
    max-width: 460px;
    font-size: 13.5px;
    line-height: 160%;
    color: var(--pk-text);
}

.mgm-pack-cta-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    background: var(--pk-blue);
    border-radius: 12px;
    color: #FFFFFF !important;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    text-decoration: none !important;
}

.mgm-pack-cta-btn:hover {
    background: var(--pk-blue-dark);
}

.mgm-pack-cta-btn svg {
    width: 15px;
    height: 15px;
}

/* ============================================================
   8-card supplies grid
   ============================================================ */
.mgm-pack-supplies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mgm-pack-supply-card {
    padding: 22px 20px;
    background: var(--pk-white);
    border: 1px solid var(--pk-border);
    border-radius: 16px;
}

.mgm-pack-supply-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 0 16px;
    background: #E9F3FB;
    border-radius: 10px;
    color: var(--pk-blue);
}

.mgm-pack-supply-icon svg {
    width: 18px;
    height: 18px;
}

.mgm-pack-supply-card h3 {
    margin: 0 0 6px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--pk-navy);
}

.mgm-pack-supply-card p {
    margin: 0;
    font-size: 12.5px;
    line-height: 155%;
    color: var(--pk-muted);
}

/* ============================================================
   Feature list (how calculator works, plain list)
   ============================================================ */
.mgm-pack-feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mgm-pack-feature-list li {
    padding-left: 26px;
    position: relative;
    font-size: 14.5px;
    line-height: 165%;
    color: var(--pk-text);
}

.mgm-pack-feature-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pk-blue);
}

.mgm-pack-feature-list li b {
    color: var(--pk-navy);
}

/* ============================================================
   Dark band — How Our Calculator Estimates Your Boxes
   ============================================================ */
.mgm-pack-dark-band {
    position: relative;
    width: 100vw;
    margin: 70px calc(50% - 50vw) 0;
    padding: 70px 0 220px;
    background: linear-gradient(180deg, #0E2740 0%, #122E4D 100%);
    color: #FFFFFF;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 82%);
}

.mgm-pack-dark-inner {
    width: 1260px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
}

.mgm-pack-dark-band .mgm-pack-eyebrow {
    color: #5CB0FF;
}

.mgm-pack-dark-band h2 {
    margin: 0 0 14px;
    font-family: "Noto Serif", Georgia, serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    color: #FFFFFF;
}

.mgm-pack-dark-band > .mgm-pack-dark-inner > p {
    max-width: 560px;
    margin: 0 auto 50px;
    font-size: 15px;
    line-height: 165%;
    color: rgba(255, 255, 255, .75);
}

.mgm-pack-step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mgm-pack-step {
    position: relative;
    padding: 0 10px;
}

.mgm-pack-step:not(:last-child):after {
    content: "";
    position: absolute;
    top: 18px;
      left: calc(50% + 18px);
    width: calc(100% - 17px);
    height: 0;
    border-top: 2px dotted rgba(92, 176, 255, .55);
}

.mgm-pack-step-num {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    margin: 0 0 16px;
    background: var(--pk-blue);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
}

.mgm-pack-step h3 {
    margin: 0 0 8px;
    font-family: "Noto Serif", Georgia, serif;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
}

.mgm-pack-step p {
    margin: 0 auto;
    max-width: 240px;
    font-size: 13px;
    line-height: 160%;
    color: rgba(255, 255, 255, .7);
}

/* ============================================================
   FAQ card (overlaps the dark band)
   ============================================================ */
.mgm-pack-faq-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .34fr) minmax(0, 1fr);
    gap: 64px;
    margin: -190px 0 60px;
    padding: 64px 56px;
    background: #FFFFFF;
    border: 1px solid var(--pk-border);
    border-radius: 28px;
}

.mgm-pack-faq-head {
    display: flex;
    flex-direction: column;
}

.mgm-pack-faq-head h2 {
    margin: 0 0 16px;
    font-family: "Noto Serif", Georgia, serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -.01em;
    color: var(--pk-navy);
}

.mgm-pack-faq-head p {
    margin: 0;
    font-size: 14px;
    line-height: 160%;
    color: var(--pk-muted);
}

.mgm-pack-faq-list {
    display: flex;
    flex-direction: column;
}

.mgm-pack-faq-item {
    border-bottom: 1px solid #E7F0F8;
}

.mgm-pack-faq-item summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    list-style: none;
    cursor: pointer;
    font-size: 15.5px;
    font-weight: 500;
    color: #3A3A3C;
}

.mgm-pack-faq-item summary::-webkit-details-marker {
    display: none;
}

.mgm-pack-faq-num {
    display: inline-flex;
    width: 28px;
    flex: 0 0 28px;
    font-size: 13px;
    font-weight: 700;
    color: var(--pk-blue);
}

.mgm-pack-faq-item summary:after {
    content: "";
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin-left: auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232E7FC4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform .2s ease;
}

.mgm-pack-faq-item[open] summary:after {
    transform: rotate(180deg);
}

.mgm-pack-faq-item p {
    margin: 0 0 20px 44px;
    max-width: 560px;
    font-size: 13.5px;
    line-height: 160%;
    color: #6C7076;
}

.mgm-pack-faq-item ul {
    margin: 0 0 20px 44px;
    padding: 0 0 0 18px;
    font-size: 13.5px;
    line-height: 190%;
    color: #6C7076;
}

.mgm-pack-faq-more {
    display: none;
}

.mgm-pack-faq-more.is-open {
    display: block;
}

.mgm-pack-faq-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 16px 0 0 auto;
    padding: 0;
    background: none;
    border: none;
    color: var(--pk-blue);
    font-size: 13.5px;
    font-weight: 800;
    cursor: pointer;
}

.mgm-pack-faq-more-btn svg {
    width: 14px;
    height: 14px;
    transition: transform .2s ease;
}

.mgm-pack-faq-more-btn[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
    .mgm-pack-hero-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mgm-pack-hero-grid h1 {
        font-size: 32px;
    }

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

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

    .mgm-pack-plan-grid {
        grid-template-columns: 1fr;
    }

    .mgm-pack-adjust-grid {
        grid-template-columns: 1fr;
    }

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

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

    .mgm-pack-step-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 18px;
    }

    .mgm-pack-step:not(:last-child):after {
        display: none;
    }

    .mgm-pack-step:nth-child(odd):not(:last-child):after {
        display: none;
    }

    .mgm-pack-cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .mgm-pack-faq-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 32px;
        margin-top: -110px;
    }
}

@media (max-width: 640px) {
    .mgm-pack-hero-grid h1 {
        font-size: 26px;
    }

    .mgm-pack-calc-card {
        padding: 24px 20px;
    }

    .mgm-pack-calc-head {
        flex-direction: column;
    }

    .mgm-pack-input-grid {
        grid-template-columns: 1fr;
    }

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

    .mgm-pack-section h2 {
        font-size: 25px;
    }

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

    .mgm-pack-supplies-grid {
        grid-template-columns: 1fr;
    }

    .mgm-pack-step-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mgm-pack-dark-band h2 {
        font-size: 24px;
    }

    .mgm-pack-dark-band {
        padding: 50px 0 140px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%);
    }

    .mgm-pack-faq-card {
        padding: 28px 22px;
        margin-top: -70px;
    }

    .mgm-pack-faq-head h2 {
        font-size: 25px;
    }

    .mgm-pack-cta-banner {
        padding: 24px 22px;
    }

    .mgm-pack-cta-btn {
        width: 100%;
        justify-content: center;
    }
}