/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-accept:hover {
    background: #e0e0e0;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.nav-minimal {
    padding: 2rem 4rem;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.95rem;
    color: #4a4a4a;
    font-weight: 400;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Hero Section */
.hero-minimal {
    padding: 10rem 2rem 8rem;
    background: #fafafa;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.display-xl {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
    margin-bottom: 3rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #333333;
    transform: translateY(-2px);
}

/* Container Styles */
.narrow-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.centered-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.insight-block {
    padding: 8rem 2rem;
    background: #ffffff;
}

.section-title-minimal {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.insight-copy {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Visual Sections */
.visual-pause,
.visual-break {
    padding: 0;
    margin: 4rem 0;
}

.image-container-wide {
    width: 100%;
    overflow: hidden;
}

.full-width-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Problem Section */
.problem-amplify {
    padding: 8rem 2rem;
    background: #fafafa;
}

.headline-medium {
    font-size: 2.2rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.consequence-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.consequence-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
}

.consequence-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.consequence-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
}

/* Trust Builder */
.trust-builder {
    padding: 8rem 2rem;
    background: #ffffff;
}

.method-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Testimonials */
.testimonial-inline {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.4rem;
    line-height: 1.7;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 1rem;
    font-style: normal;
    color: #b0b0b0;
}

/* Spacer */
.spacer-section {
    height: 6rem;
    background: #ffffff;
}

/* Process Flow */
.how-it-works {
    padding: 8rem 2rem;
    background: #ffffff;
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
}

.process-step {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 200;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.process-step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
}

/* Benefits */
.benefits-reveal {
    padding: 8rem 2rem;
    background: #fafafa;
}

.benefit-list-clean {
    list-style: none;
    margin-top: 3rem;
}

.benefit-list-clean li {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    font-weight: 300;
}

.benefit-list-clean li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

/* Social Proof */
.social-proof {
    padding: 8rem 2rem;
    background: #ffffff;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #fafafa;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.testimonial-card cite {
    font-size: 0.95rem;
    font-style: normal;
    color: #6a6a6a;
}

/* Services Section */
.services-presentation {
    padding: 8rem 2rem;
    background: #fafafa;
}

.services-intro {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 320px;
    padding: 3rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #1a1a1a;
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.service-details {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6a6a6a;
    margin-bottom: 2rem;
    font-weight: 300;
}

.service-price {
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.select-service-btn {
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background: #333333;
}

/* Urgency Block */
.urgency-block {
    padding: 8rem 2rem;
    background: #ffffff;
}

.urgency-copy {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Final CTA */
.final-cta-section {
    padding: 8rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.cta-container-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-headline {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-subtext {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #ffffff;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #6a6a6a;
    line-height: 1;
}

.close-modal:hover {
    color: #1a1a1a;
}

.form-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group input[readonly] {
    background: #f5f5f5;
    color: #6a6a6a;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #333333;
}

/* Footer */
.footer-minimal {
    padding: 4rem 2rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand .brand-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #b0b0b0;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #6a6a6a;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-btn {
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #333333;
    transform: translateY(-2px);
}

/* Page Styles */
.page-header-minimal {
    padding: 8rem 2rem 4rem;
    background: #fafafa;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #6a6a6a;
    font-weight: 300;
}

.content-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.section-heading {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.body-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.image-section {
    padding: 4rem 0;
    background: #ffffff;
}

/* Principle Blocks */
.principle-blocks {
    padding: 8rem 2rem;
    background: #fafafa;
}

.principle-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
}

.principle-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
}

.principle-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.principle-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
}

/* Quote Block */
.quote-block {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.large-quote {
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
}

/* CTA Section Simple */
.cta-section-simple {
    padding: 8rem 2rem;
    background: #fafafa;
}

/* Services Detailed */
.services-intro-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
}

.services-detailed {
    padding: 4rem 2rem;
    background: #ffffff;
}

.service-detail-card {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    position: relative;
}

.featured-service {
    border: 2px solid #1a1a1a;
}

.featured-badge {
    position: absolute;
    top: -1rem;
    left: 3rem;
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-header {
    margin-bottom: 2rem;
}

.service-header h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-duration {
    font-size: 0.95rem;
    color: #6a6a6a;
}

.service-body h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-overview {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2rem;
    font-weight: 300;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-weight: 300;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.service-fit {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
}

.service-price-block {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.price-label {
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
}

/* Program Guarantee */
.program-guarantee {
    padding: 6rem 2rem;
    background: #fafafa;
}

/* Contact Page */
.contact-info-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-block {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
}

.contact-block h2 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-detail {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
}

.contact-detail a {
    color: #1a1a1a;
    text-decoration: underline;
}

.contact-context {
    padding: 6rem 2rem;
    background: #fafafa;
}

.map-placeholder {
    padding: 0;
    margin: 4rem 0;
}

.contact-cta {
    padding: 6rem 2rem;
    background: #ffffff;
    text-align: center;
}

/* Thanks Page */
.thanks-hero {
    padding: 8rem 2rem 4rem;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.thanks-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.thanks-message {
    font-size: 1.2rem;
    color: #b0b0b0;
    font-weight: 300;
}

.thanks-content {
    padding: 6rem 2rem;
    background: #ffffff;
}

.next-steps {
    margin-top: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item .step-number {
    flex-shrink: 0;
    font-size: 2.5rem;
    font-weight: 200;
    color: #d0d0d0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
}

.thanks-info {
    padding: 6rem 2rem;
    background: #fafafa;
}

.enrollment-summary {
    margin: 2rem 0;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.summary-label {
    font-weight: 500;
    color: #1a1a1a;
}

.summary-value {
    color: #4a4a4a;
}

.thanks-expectations {
    padding: 6rem 2rem;
    background: #ffffff;
}

.thanks-contact {
    padding: 6rem 2rem;
    background: #fafafa;
}

/* Policy Pages */
.policy-header {
    padding: 6rem 2rem 3rem;
    background: #fafafa;
    text-align: center;
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.policy-date {
    font-size: 1rem;
    color: #6a6a6a;
}

.policy-content {
    padding: 4rem 2rem 6rem;
    background: #ffffff;
}

.policy-content h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.policy-content h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.policy-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1rem;
    font-weight: 300;
}

.policy-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.policy-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.policy-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-minimal {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        gap: 2rem;
    }

    .display-xl {
        font-size: 2.5rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .headline-medium {
        font-size: 1.8rem;
    }

    .consequence-item,
    .process-step,
    .principle-item {
        flex: 1 1 100%;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .contact-block {
        flex: 1 1 100%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .nav-minimal {
        padding: 1rem;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hero-minimal {
        padding: 6rem 1.5rem 4rem;
    }

    .display-xl {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .section-title-minimal,
    .headline-medium {
        font-size: 1.6rem;
    }

    .insight-block,
    .problem-amplify,
    .trust-builder,
    .how-it-works,
    .benefits-reveal,
    .social-proof,
    .services-presentation,
    .urgency-block,
    .final-cta-section {
        padding: 4rem 1.5rem;
    }

    .modal-content {
        padding: 2rem;
        width: 95%;
    }

    .service-detail-card {
        padding: 2rem;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .step-item {
        flex-direction: column;
        gap: 1rem;
    }

    .summary-row {
        flex-direction: column;
        gap: 0.3rem;
    }
}
