@charset "UTF-8";

/*
Theme Name: callapractitioner
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: callapractitioner is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how callapractitioner elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 7.0
Requires PHP: 5.6
Version: 2.8
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog, portfolio

callapractitioner WordPress Theme, (C) 2020 WordPress.org
callapractitioner is distributed under the terms of the GNU GPL.
*/

/**
 * SETTINGS
 * File-header..........The file header for the themes style.css file.
 * Fonts................Any font files, if the project needs specific fonts.
 * Global...............Project-specific, globally available variables.
 *
 * TOOLS
 * Functions............Global functions.
 * Mixins...............Global mixins.
 *
 * GENERIC
 * Normalize.css........Normalise browser defaults.
 * Breakpoints..........Mixins and variables for responsive styles
 * Vertical-margins.....Vertical spacing for the main components.
 * Reset................Reset specific elements to make them easier to style in other contexts.
 * Clearings............Clearings for the main components.
 *
 * ELEMENTS
 * Blockquote...........Default blockquote.
 * Forms................Element-level form styling.
 * Headings.............H1–H6
 * Links................Default links.
 * Lists................Default lists.
 * Media................Images, Figure, Figcaption, Embed, iFrame, Objects, Video.
 *
 * BLOCKS
 * Audio................Specific styles for the audio block.
 * Button...............Specific styles for the button block.
 * Code.................Specific styles for the code block.
 * Columns..............Specific styles for the columns block.
 * Cover................Specific styles for the cover block.
 * File.................Specific styles for the file block.
 * Gallery..............Specific styles for the gallery block.
 * Group................Specific styles for the group block.
 * Heading..............Specific styles for the heading block.
 * Image................Specific styles for the image block.
 * Latest comments......Specific styles for the latest comments block.
 * Latest posts.........Specific styles for the latest posts block.
 * Legacy...............Specific styles for the legacy gallery.
 * List.................Specific styles for the list block.
 * Media text...........Specific styles for the media and text block.
 * Navigation...........Specific styles for the navigation block.
 * Paragraph............Specific styles for the paragraph block.
 * Pullquote............Specific styles for the pullquote block.
 * Quote................Specific styles for the quote block.
 * Search...............Specific styles for the search block.
 * Separator............Specific styles for the separator block.
 * Table................Specific styles for the table block.
 * Poetry (Verse).......Specific styles for the poetry block.
 * Video................Specific styles for the video block.
 * Utilities............Block alignments.
 *
 * COMPONENTS
 * Header...............Header styles.
 * Footer...............Footer styles.
 * Comments.............Comment styles.
 * Archives.............Archive styles.
 * 404..................404 styles.
 * Search...............Search styles.
 * Navigation...........Navigation styles.
 * Footer Navigation....Footer Navigation styles.
 * Pagination...........Pagination styles.
 * Single...............Single page and post styles.
 * Posts and pages......Misc, sticky post styles.
 * Entry................Entry, author biography.
 * Widget...............Widget styles.
 * Editor...............Editor styles.
 *
 * UTILITIES
 * A11y.................Screen reader text, prefers reduced motion etc.
 * Color Palette........Classes for the color palette colors.
 * Editor Font Sizes....Editor Font Sizes.
 * Measure..............The width of a line of text, in characters.
 */

/* Categories 01 to 03 are the basics. */

/* Variables */

/**
 * Custom Color Overrides
 *
 * This file is automatically populated if the user chooses custom colors in the Customizer.
 */
:root {
    --cream: #FBF7EE;
    --cream-deep: #F4EDDC;
    --paper: #FFFFFF;
    --ink: #1A2826;
    --ink-soft: #4A5754;
    --ink-muted: #7A847F;
    --sage: #8FA68A;
    --sage-deep: #6B8266;
    --teal: #1F4D4A;
    --teal-deep: #163936;
    --clay: #B86F4F;
    --clay-soft: #E5C5A8;
    --line: #E5DDC9;
    --line-soft: #EFE7D3;
    --shadow-sm: 0 1px 2px rgba(26, 40, 38, 0.04), 0 2px 8px rgba(26, 40, 38, 0.04);
    --shadow-md: 0 4px 12px rgba(26, 40, 38, 0.06), 0 12px 32px rgba(26, 40, 38, 0.08);
    --shadow-lg: 0 8px 24px rgba(26, 40, 38, 0.08), 0 24px 56px rgba(26, 40, 38, 0.12);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;

}

.display {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: 'opsz' 144, 'SOFT' 30;
    letter-spacing: -0.01em;
    line-height: 1.05;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-narrow {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ================ NAVIGATION ================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 247, 238, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line-soft);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--teal);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.logo-mark svg {
    display: block;
}

.logo-text {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -0.01em;
    line-height: 1;
}

.logo-text small {
    display: block;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 11px;
    color: var(--ink-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--teal);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 100px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 14.5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal);
    color: var(--cream);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--teal-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}

.btn-ghost:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.btn-lg {
    padding: 16px 30px;
    font-size: 15.5px;
}

.btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
}

.btn:hover svg {
    transform: translateX(3px);
}

/* ================ HERO ================ */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-bg-leaf {
    position: absolute;
    top: -60px;
    right: -100px;
    width: 520px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-leaf2 {
    position: absolute;
    bottom: -120px;
    left: -140px;
    width: 420px;
    opacity: 0.22;
    pointer-events: none;
    z-index: 0;
    transform: rotate(180deg);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(143, 166, 138, 0.18);
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--sage-deep);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage-deep);
}

.hero h1 {
    font-size: clamp(40px, 5.4vw, 68px);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: italic;
    color: var(--teal);
    font-weight: 400;
}

.hero-sub {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
    max-width: 540px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.trust-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cream-deep);
    color: var(--teal);
    display: grid;
    place-items: center;
    margin-top: 2px;
}

.trust-icon svg {
    width: 14px;
    height: 14px;
}

.trust-text {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.4;
    font-weight: 500;
}

/* Photo treatment */
.hero-photo-wrap {
    position: relative;
    justify-self: end;
}

.hero-photo {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4/5;
    border-radius: 200px 200px 24px 24px;
    overflow: hidden;
    background: var(--cream-deep);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
}

.hero-photo-deco {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--clay-soft), var(--clay) 80%);
    opacity: 0.55;
    z-index: 1;
    filter: blur(2px);
}

.hero-photo-deco-1 {
    top: -40px;
    left: -50px;
}

.hero-photo-deco-2 {
    bottom: -30px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at 30% 30%, rgba(143, 166, 138, 0.7), var(--sage-deep) 80%);
}

.hero-photo-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    z-index: 3;
    background: var(--paper);
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line-soft);
}

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--teal);
    display: grid;
    place-items: center;
    color: var(--cream);
    flex-shrink: 0;
}

.badge-icon svg {
    width: 18px;
    height: 18px;
}

.badge-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge-value {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.1;
    margin-top: 2px;
}

/* ================ STRIP ================ */
.strip {
    background: var(--teal);
    color: var(--cream);
    padding: 24px 0;
    overflow: hidden;
}

.strip-inner {
    display: flex;
    gap: 56px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-family: 'Fraunces', serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.strip-inner span {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    opacity: 0.92;
}

.strip-inner span::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--clay-soft);
}

.strip-inner span:first-child::before {
    display: none;
}

/* ================ SECTIONS ================ */
section {
    padding: 110px 0;
    position: relative;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--clay);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--clay);
}

.section-heading {
    font-size: clamp(32px, 3.8vw, 50px);
    font-weight: 400;
    margin-bottom: 18px;
    max-width: 820px;
}

.section-heading em {
    font-style: italic;
    color: var(--teal);
}

.section-lead {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 680px;
    line-height: 1.6;
}

/* ================ POSITIONING ================ */
.positioning {
    padding: 100px 0;
    background: var(--cream-deep);
    position: relative;
    overflow: hidden;
}

.positioning::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--cream), var(--cream-deep));
}

.positioning-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: 0 32px;
    position: relative;
}

.positioning-quote {
    font-family: 'Fraunces', serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 400;
    line-height: 1.35;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.positioning-quote em {
    font-style: italic;
    color: var(--teal);
}

.positioning-mark {
    font-family: 'Fraunces', serif;
    font-size: 100px;
    color: var(--clay);
    line-height: 0.6;
    margin-bottom: 12px;
    font-style: italic;
    opacity: 0.8;
}


/* ================ FINAL CTA ================ */
.final-cta {
    background: var(--teal);
    color: var(--cream);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-leaf {
    position: absolute;
    width: 600px;
    opacity: 0.1;
    pointer-events: none;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
}

.final-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
}

.final-cta h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 22px;
}

.final-cta h2 em {
    font-style: italic;
    color: var(--clay-soft);
}

.final-cta p {
    font-size: 18px;
    color: rgba(251, 247, 238, 0.8);
    margin-bottom: 36px;
    line-height: 1.55;
}

.final-cta .btn-primary {
    background: var(--cream);
    color: var(--teal);
}

.final-cta .btn-primary:hover {
    background: var(--paper);
    transform: translateY(-2px);
}

/* ================ FOOTER ================ */
footer {
    background: var(--ink);
    color: var(--cream);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(229, 197, 168, 0.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
}

.footer-brand .logo-text {
    color: var(--cream);
}

.footer-brand .logo-text small {
    color: rgba(251, 247, 238, 0.5);
}

.footer-brand p {
    margin-top: 18px;
    color: rgba(251, 247, 238, 0.55);
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h5 {
    font-family: 'Fraunces', serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--clay-soft);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(251, 247, 238, 0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--clay-soft);
}

.footer-bottom {
    border-top: 1px solid rgba(251, 247, 238, 0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(251, 247, 238, 0.45);
    font-size: 13px;
}

.footer-disclaimer {
    max-width: 100%;
    margin-top: 24px;
    color: rgba(251, 247, 238, 0.4);
    font-size: 12px;
    line-height: 1.6;
    font-style: italic;
}


/* ================ SAHIL CSS ================ */
.close-menu,
.mobile-link,
.open-menu {
    display: none;
}

.icons-flow {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icons-flow img {
    max-width: 35px;
}
.woocommerce-checkout article,
.woocommerce-account article,
.woocommerce-cart article{
    padding: 40px 0px;
}
.woocommerce-page table.cart td.actions .coupon{
    max-width: 450px !important;
    width: 100% !important;
    display: flex;
    align-items: center;
    flex-wrap: wrap !important;
 }
.woocommerce table.cart td.actions .input-text {
    width: 60% !important;
    padding: 20px;
    height: auto !important;
    padding: 9px !important;
}
.woocommerce-cart article img {
    max-width: 100px !important;
    width: 100% !important;
}
table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents td.product-name a {
    pointer-events: none !important;
}
.woocommerce-account article a,
.woocommerce-checkout article a, 
.woocommerce-cart article a {
    text-decoration: none !important;
    color: #000 !important;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt{
        background: var(--teal-deep) !important;
        color: #fff !important;
}
article .container .container{
    padding: 0px !important;
}
.woocommerce-privacy-policy-text {
    margin-bottom: 15px;
}
nav.woocommerce-MyAccount-navigation ul {
    list-style: none;
}
nav.woocommerce-MyAccount-navigation li {
  max-width: 150px;
  width: 100%;
  margin: 10px 0px;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 100px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 14.5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    background: var(--teal);
    color: var(--cream);
    box-shadow: var(--shadow-sm);
    text-align: center; 
     border: 2px solid var(--teal-deep) !important;
}
nav.woocommerce-MyAccount-navigation li a{
    color: #fff !important;
}
nav.woocommerce-MyAccount-navigation li.is-active{
    background-color: transparent !important;
}
nav.woocommerce-MyAccount-navigation li.is-active a {
   color:var(--teal-deep) !important ;
}
/* ================ RESPONSIVE ================ */
@media(max-width:1200px) {
    .nav-links {
        gap: 15px !important;
    }
}

@media (max-width: 960px) {
    .nav-links {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .hero-photo-wrap {
        justify-self: center;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-photo-wrap {
        max-width: 380px;
        margin: 0 auto;
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .how-grid::before {
        display: none;
    }

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

    .price-card.featured {
        transform: none;
    }

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

    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

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

    section {
        padding: 80px 0;
    }

    .container,
    .container-narrow {
        padding: 0 24px;
    }

    .icons-flow {
        display: none;
    }


    .menu {
        position: fixed;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        right: -50%;
        top: 0px;
        transition: 0.5s ease-in;
        padding: 30px;

    }

    .menu.active {
        right: 0px;
    }

    .close-menu,
    .mobile-link,
    .open-menu,
    nav.nav .menu .nav-links {
        display: block;
    }

    .close-menu {
        display: block;
        margin: 0 auto;
        width: fit-content;
        max-width: 35px;
        margin-bottom: 10px;
    }
    

    nav.nav .menu .nav-links {
        width: fit-content;
   margin: 0 auto;
    }

    nav.nav .menu .nav-links li {
      text-align: center;
        padding: 6px 0px;

    }

    .mobile-link {
        width: fit-content;
        margin: 0 auto;
        margin-top: 15px;
    }

    .open-menu {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .on-menu img {
        max-width: 35px;
    }

    .on-menu a,
    .on-menu {
        display: flex;
        align-items: center;
    }
    span.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #0000009e;
    height: 100vh;
    display: none;
}
.nav-links a {
    font-size: 17px !important;
    line-height: 32px !important;
}
.nav-inner .btn{
    font-size: 17px !important;
}
}
@media(max-width:600px){
    .menu{
        right: -100%;
    }
    .nav-inner .btn{
        display: block !important;
    }
}

@media (max-width: 560px) {
    .nav-inner .btn {
        display: none;
    }

    .hero {
        padding: 56px 0 80px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-ctas .btn {
        justify-content: center;
    }

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

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

    .strip-inner {
        gap: 24px;
        font-size: 13px;
    }

    .strip-inner span::before {
        display: none;
    }
    article h1,
    article h2{
        font-size: 22px !important;
    }
}

@media(max-width: 768px) {
    .wellness-card {
        grid-template-columns: 1fr;
    }
}