@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&family=Roboto:wght@300;400;500&display=swap');

:root {
    --0sh-primary: #059669;
    --0sh-secondary: #047857;
    --0sh-accent: #f97316;
    --0sh-background: #fafaf9;
    --0sh-text: #1c1917;
    --0sh-muted: #78716c;
    --0sh-white: #ffffff;

    --0sh-border-radius-sm: 8px;
    --0sh-border-radius-md: 12px;
    --0sh-border-radius-lg: 16px;

    --0sh-spacing-xs: 8px;
    --0sh-spacing-sm: 16px;
    --0sh-spacing-md: 24px;
    --0sh-spacing-lg: 48px;
    --0sh-spacing-xl: 80px;

    --0sh-font-raleway: 'Raleway', sans-serif;
    --0sh-font-roboto: 'Roboto', sans-serif;
}

/* Base Reset & Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--0sh-font-roboto);
    line-height: 1.6;
    color: var(--0sh-text);
    background-color: var(--0sh-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--0sh-primary);
    color: var(--0sh-white);
}

a {
    color: var(--0sh-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--0sh-accent);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--0sh-font-raleway);
    font-weight: 700;
    line-height: 1.2;
    color: var(--0sh-text);
    margin-bottom: var(--0sh-spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    letter-spacing: -0.01em;
}

h4 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--0sh-primary);
}

p {
    margin-bottom: var(--0sh-spacing-sm);
    font-size: 1.125rem;
}

small {
    font-size: 0.875rem;
    color: var(--0sh-muted);
}

/* Utility Classes */
.lp-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--0sh-spacing-sm);
    padding-right: var(--0sh-spacing-sm);
}

.lp-grid {
    display: grid;
    gap: var(--0sh-spacing-md);
}

.lp-flex {
    display: flex;
    align-items: center;
    gap: var(--0sh-spacing-md);
}

.lp-text-center {
    text-align: center;
}

.lp-section {
    padding-top: var(--0sh-spacing-xl);
    padding-bottom: var(--0sh-spacing-xl);
    position: relative;
    overflow: hidden;
}

.lp-section:nth-of-type(even) {
    background-color: rgba(var(--0sh-primary), 0.05);
}

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--0sh-border-radius-sm);
    font-family: var(--0sh-font-raleway);
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    line-height: 1;
}

.lp-btn-primary {
    background-color: var(--0sh-primary);
    color: var(--0sh-white);
}

.lp-btn-primary:hover {
    background-color: var(--0sh-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(var(--0sh-primary), 0.3);
}

.lp-btn-secondary {
    background-color: var(--0sh-accent);
    color: var(--0sh-white);
}

.lp-btn-secondary:hover {
    background-color: #e0620f;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(var(--0sh-accent), 0.3);
}

.lp-btn-outline {
    background-color: transparent;
    color: var(--0sh-primary);
    border-color: var(--0sh-primary);
}

.lp-btn-outline:hover {
    background-color: var(--0sh-primary);
    color: var(--0sh-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(var(--0sh-primary), 0.2);
}

/* Header & Navigation */
.lp-header {
    background-color: var(--0sh-white);
    padding: var(--0sh-spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.lp-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-logo {
    font-family: var(--0sh-font-raleway);
    font-size: 2rem;
    font-weight: 700;
    color: var(--0sh-primary);
}

.lp-logo span {
    color: var(--0sh-accent);
}

.lp-nav-menu {
    list-style: none;
    display: flex;
    gap: var(--0sh-spacing-md);
}

.lp-nav-menu a {
    padding: var(--0sh-spacing-xs) var(--0sh-spacing-sm);
    font-family: var(--0sh-font-raleway);
    font-weight: 600;
    color: var(--0sh-text);
    position: relative;
}

.lp-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--0sh-accent);
    transition: width 0.3s ease;
}

.lp-nav-menu a:hover::after {
    width: 100%;
}

.lp-hamburger {
    display: none;
    cursor: pointer;
    padding: var(--0sh-spacing-xs);
    border: none;
    background: none;
    font-size: 1.8rem;
    color: var(--0sh-text);
}

/* Mobile Menu */
.lp-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background-color: var(--0sh-secondary);
    color: var(--0sh-white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    padding: var(--0sh-spacing-lg);
    transition: right 0.4s ease-out;
    z-index: 1001;
}

.lp-mobile-nav.active {
    right: 0;
}

.lp-mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--0sh-spacing-md);
    margin-top: var(--0sh-spacing-lg);
}

.lp-mobile-nav-list a {
    color: var(--0sh-white);
    font-family: var(--0sh-font-raleway);
    font-weight: 600;
    font-size: 1.25rem;
    padding: var(--0sh-spacing-sm) 0;
    display: block;
    border-bottom: 1px solid rgba(var(--0sh-white), 0.2);
}

.lp-mobile-nav-list a:hover {
    color: var(--0sh-accent);
}

.lp-close-btn {
    position: absolute;
    top: var(--0sh-spacing-md);
    right: var(--0sh-spacing-md);
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--0sh-white);
    cursor: pointer;
}

/* Hero Section */
.lp-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--0sh-white);
    position: relative;
    overflow: hidden;
    padding: var(--0sh-spacing-xl) 0;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.8) 0%, rgba(4, 120, 87, 0.7) 100%);
    z-index: 1;
}

.lp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.lp-hero h1 {
    color: var(--0sh-white);
    margin-bottom: var(--0sh-spacing-md);
}

.lp-hero p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: var(--0sh-spacing-lg);
    color: rgba(var(--0sh-white), 0.9);
}

.lp-hero .lp-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.25rem;
    border-radius: 50px;
}

/* Wave Separator for Hero */
.lp-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 3;
}

.lp-hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.lp-hero-wave .shape-fill {
    fill: var(--0sh-background);
}

/* Section Styles */
.lp-section-header {
    text-align: center;
    margin-bottom: var(--0sh-spacing-xl);
}

.lp-section-header h2 {
    margin-bottom: var(--0sh-spacing-sm);
    position: relative;
    display: inline-block;
}

.lp-section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--0sh-accent);
    border-radius: 2px;
}

/* Feature Highlights / Card components */
.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--0sh-spacing-md);
}

.lp-feature-card {
    background-color: var(--0sh-white);
    border-radius: var(--0sh-border-radius-lg);
    padding: var(--0sh-spacing-md);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
}

.lp-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.lp-feature-card-icon {
    font-size: 3.5rem;
    color: var(--0sh-primary);
    margin-bottom: var(--0sh-spacing-sm);
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: rgba(var(--0sh-primary), 0.1);
    border-radius: 50%;
}

.lp-feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--0sh-border-radius-md);
    margin-bottom: var(--0sh-spacing-sm);
}

.lp-feature-card h3 {
    color: var(--0sh-secondary);
    margin-bottom: var(--0sh-spacing-xs);
}

/* Intro Section */
.lp-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--0sh-spacing-xl);
    align-items: center;
}

.lp-intro-image-container {
    position: relative;
    border-radius: var(--0sh-border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lp-intro-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-color: var(--0sh-primary);
    z-index: -1;
    border-radius: var(--0sh-border-radius-lg);
    transform: rotate(-3deg);
}

.lp-intro-image {
    border-radius: var(--0sh-border-radius-md);
    filter: brightness(0.95);
}

/* Benefits Circles */
.lp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--0sh-spacing-lg);
}

.lp-benefit-circle {
    text-align: center;
    position: relative;
}

.lp-benefit-circle-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(var(--0sh-primary), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--0sh-spacing-sm);
    font-size: 3.5rem;
    color: var(--0sh-primary);
    border: 3px solid var(--0sh-primary);
    transition: all 0.3s ease;
}

.lp-benefit-circle:hover .lp-benefit-circle-icon {
    background-color: var(--0sh-primary);
    color: var(--0sh-white);
    transform: scale(1.05);
}

.lp-benefit-circle h4 {
    color: var(--0sh-secondary);
    font-weight: 600;
}

/* Customer Stories / Testimonials */
.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--0sh-spacing-md);
}

.lp-testimonial-card {
    background-color: var(--0sh-white);
    border-radius: var(--0sh-border-radius-lg);
    padding: var(--0sh-spacing-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #eee;
}

.lp-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.lp-testimonial-quote {
    font-style: italic;
    color: var(--0sh-muted);
    margin-bottom: var(--0sh-spacing-sm);
    font-size: 1.1rem;
}

.lp-testimonial-author {
    font-weight: 600;
    color: var(--0sh-text);
}

.lp-testimonial-role {
    font-size: 0.9rem;
    color: var(--0sh-muted);
}

/* FAQ Section */
.lp-faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: var(--0sh-spacing-sm);
}

.lp-faq-item {
    background-color: var(--0sh-white);
    border-radius: var(--0sh-border-radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lp-faq-item.active {
    box-shadow: 0 5px 15px rgba(var(--0sh-primary), 0.1);
    border-color: var(--0sh-primary);
}

.lp-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--0sh-spacing-md);
    font-weight: 600;
    font-size: 1.15rem;
    cursor: pointer;
    color: var(--0sh-text);
    transition: color 0.3s ease;
}

.lp-faq-q:hover {
    color: var(--0sh-primary);
}

.lp-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--0sh-primary);
    transition: transform 0.3s ease;
}

.lp-faq-item.active .lp-faq-q::after {
    content: '-';
    transform: rotate(0deg);
}

.lp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 var(--0sh-spacing-md);
    color: var(--0sh-muted);
}

.lp-faq-item.active .lp-faq-a {
    max-height: 500px; /* Sufficiently large value */
    padding-bottom: var(--0sh-spacing-md);
}

/* CTA Warm */
.lp-cta-warm {
    background: linear-gradient(135deg, var(--0sh-primary) 0%, var(--0sh-secondary) 100%);
    color: var(--0sh-white);
    text-align: center;
    border-radius: var(--0sh-border-radius-lg);
    padding: var(--0sh-spacing-xl) var(--0sh-spacing-md);
    margin: var(--0sh-spacing-xl) auto;
    max-width: 1000px;
    box-shadow: 0 15px 30px rgba(var(--0sh-primary), 0.3);
}

.lp-cta-warm h2 {
    color: var(--0sh-white);
    margin-bottom: var(--0sh-spacing-md);
}

.lp-cta-warm p {
    font-size: 1.25rem;
    margin-bottom: var(--0sh-spacing-lg);
    opacity: 0.9;
}

.lp-cta-warm .lp-btn-secondary {
    padding: 1.2rem 2.8rem;
    font-size: 1.3rem;
    border-radius: 50px;
}

/* Form Styling */
.lp-form-group {
    margin-bottom: var(--0sh-spacing-md);
    position: relative;
}

.lp-form-group label {
    display: block;
    margin-bottom: var(--0sh-spacing-xs);
    color: var(--0sh-text);
    font-weight: 500;
    font-size: 0.95rem;
}

.lp-form-group input[type='text'],
.lp-form-group input[type='email'],
.lp-form-group input[type='tel'],
.lp-form-group textarea {
    width: 100%;
    padding: var(--0sh-spacing-sm);
    border: 1px solid #ddd;
    border-radius: var(--0sh-border-radius-sm);
    font-family: var(--0sh-font-roboto);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--0sh-white);
}

.lp-form-group input:focus,
.lp-form-group textarea:focus {
    border-color: var(--0sh-primary);
    box-shadow: 0 0 0 3px rgba(var(--0sh-primary), 0.2);
    outline: none;
}

.lp-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.lp-form-submit-btn {
    width: 100%;
    font-size: 1.25rem;
    padding: 1rem;
    border-radius: var(--0sh-border-radius-sm);
    background-color: var(--0sh-primary);
    border: none;
    color: var(--0sh-white);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.lp-form-submit-btn:hover {
    background-color: var(--0sh-secondary);
    transform: translateY(-2px);
}

.lp-form-message {
    padding: var(--0sh-spacing-sm);
    border-radius: var(--0sh-border-radius-sm);
    margin-top: var(--0sh-spacing-md);
    font-weight: 500;
    display: none;
}

.lp-form-message.lp-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.lp-form-message.lp-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Trust Badges */
.lp-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--0sh-spacing-lg);
    margin-top: var(--0sh-spacing-xl);
    text-align: center;
}

.lp-trust-item {
    display: inline-flex;
    align-items: center;
    gap: var(--0sh-spacing-xs);
    background-color: rgba(var(--0sh-accent), 0.1);
    padding: var(--0sh-spacing-sm) var(--0sh-spacing-md);
    border-radius: 50px;
    font-weight: 500;
    color: var(--0sh-text);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.lp-trust-item:hover {
    background-color: rgba(var(--0sh-accent), 0.2);
    transform: translateY(-3px);
}

.lp-trust-item svg {
    width: 24px;
    height: 24px;
    fill: var(--0sh-primary);
}

/* Footer */
.lp-footer {
    background-color: var(--0sh-text);
    color: var(--0sh-white);
    padding: var(--0sh-spacing-xl) 0 var(--0sh-spacing-md);
    font-size: 0.95rem;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--0sh-spacing-lg);
    margin-bottom: var(--0sh-spacing-xl);
}

.lp-footer-col h4 {
    color: var(--0sh-primary);
    margin-bottom: var(--0sh-spacing-md);
    font-size: 1.1rem;
}

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

.lp-footer-col ul li {
    margin-bottom: var(--0sh-spacing-xs);
}

.lp-footer-col ul a {
    color: rgba(var(--0sh-white), 0.8);
    transition: color 0.3s ease;
}

.lp-footer-col ul a:hover {
    color: var(--0sh-accent);
}

.lp-social-icons {
    display: flex;
    gap: var(--0sh-spacing-sm);
    margin-top: var(--0sh-spacing-md);
}

.lp-social-icons a {
    color: var(--0sh-white);
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.lp-social-icons a:hover {
    color: var(--0sh-accent);
    transform: translateY(-3px) scale(1.1);
}

.lp-footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(var(--0sh-white), 0.1);
    padding-top: var(--0sh-spacing-md);
    color: rgba(var(--0sh-white), 0.7);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-animate {
    opacity: 0;
}

.lp-animate.lp-is-visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Contact Page specific styles */
.lp-contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--0sh-spacing-xl);
    align-items: flex-start;
}

.lp-contact-info-card {
    background-color: var(--0sh-white);
    border-radius: var(--0sh-border-radius-lg);
    padding: var(--0sh-spacing-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.lp-contact-info-card h3 {
    color: var(--0sh-primary);
    margin-bottom: var(--0sh-spacing-md);
}

.lp-contact-item {
    display: flex;
    align-items: center;
    gap: var(--0sh-spacing-sm);
    margin-bottom: var(--0sh-spacing-sm);
}

.lp-contact-item .icon {
    color: var(--0sh-accent);
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .lp-navbar {
        padding: 0 var(--0sh-spacing-md);
    }

    .lp-nav-menu {
        gap: var(--0sh-spacing-sm);
    }

    .lp-section {
        padding-top: var(--0sh-spacing-lg);
        padding-bottom: var(--0sh-spacing-lg);
    }

    .lp-intro-content {
        grid-template-columns: 1fr;
        gap: var(--0sh-spacing-lg);
    }

    .lp-intro-image-container {
        order: -1; /* Image appears above text on smaller screens */
    }

    .lp-contact-content {
        grid-template-columns: 1fr;
    }

    .lp-contact-info-card {
        order: -1;
    }

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

@media (max-width: 768px) {
    .lp-nav-menu {
        display: none;
    }

    .lp-hamburger {
        display: block;
    }

    .lp-hero h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .lp-hero p {
        font-size: clamp(1rem, 3vw, 1.25rem);
    }

    .lp-feature-grid, .lp-testimonials-grid, .lp-benefits-grid {
        grid-template-columns: 1fr;
    }

    .lp-section-header {
        margin-bottom: var(--0sh-spacing-lg);
    }

    .lp-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lp-social-icons {
        justify-content: center;
    }

    .lp-hero-wave svg {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .lp-container {
        padding-left: var(--0sh-spacing-xs);
        padding-right: var(--0sh-spacing-xs);
    }

    .lp-logo {
        font-size: 1.8rem;
    }

    .lp-btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .lp-hero .lp-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .lp-cta-warm {
        margin: var(--0sh-spacing-lg) auto;
        padding: var(--0sh-spacing-lg) var(--0sh-spacing-sm);
    }

    .lp-cta-warm .lp-btn-secondary {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }

    .lp-faq-q {
        font-size: 1rem;
        padding: var(--0sh-spacing-sm);
    }

    .lp-faq-a {
        padding: 0 var(--0sh-spacing-sm) var(--0sh-spacing-sm);
    }

    .lp-trust-item {
        width: 100%;
        justify-content: center;
    }
}
