/* ==========================================================================
   HopkinsRidge Telehealth - Professional Website Styles
   Optimized for performance, accessibility, and mobile-first design
   ========================================================================== */

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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    font-display: swap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 16px;
    background: #007bff;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    z-index: 1000;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    min-height: 64px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    color: #007bff;
    letter-spacing: -0.025em;
}

.nav__logo svg {
    color: #007bff;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-line {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav__menu {
    display: flex;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav__link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    transition: color 0.2s ease;
    position: relative;
}

.nav__link:hover,
.nav__link:focus {
    color: #007bff;
}

.nav__link.contact-btn {
    background: #007bff;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav__link.contact-btn:hover,
.nav__link.contact-btn:focus {
    background: #0056b3;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
    }

    .nav__link {
        display: block;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav__link.contact-btn {
        margin: 8px 20px;
        text-align: center;
        border-bottom: none;
    }
}

/* ==========================================================================
   Button Styles
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1.2;
}

.btn--primary {
    background: #007bff;
    color: white;
}

.btn--primary:hover,
.btn--primary:focus {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.btn--outline {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn--outline:hover,
.btn--outline:focus {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    padding: 140px 0 100px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 123, 255, 0.9) 0%,
        rgba(0, 86, 179, 0.8) 50%,
        rgba(26, 26, 26, 0.7) 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23f8f9fa"/><stop offset="100%" style="stop-color:%23e9ecef"/></linearGradient></defs><rect width="1200" height="800" fill="url(%23bg)"/><g opacity="0.1"><circle cx="200" cy="150" r="120" fill="%23007bff"/><circle cx="800" cy="300" r="80" fill="%230056b3"/><circle cx="1000" cy="600" r="100" fill="%23007bff"/><path d="M0 400Q300 200 600 400T1200 400V800H0V400Z" fill="%23007bff"/></g></svg>') center/cover;
    z-index: -1;
}

.hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero__features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature svg {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        min-height: 60vh;
    }

    .hero__features {
        gap: 20px;
    }

    .feature {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

.section {
    padding: 60px 0;
}

.section--alt {
    background: #f8f9fa;
}

.section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px;
}

.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section__subtitle {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Section Responsive */
@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    
    .section__header {
        margin-bottom: 40px;
    }
    
    .section__title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        margin-bottom: 12px;
    }
    
    .section__subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }
    
    .section__header {
        margin-bottom: 32px;
    }
}

/* ==========================================================================
   Trust Indicators Section
   ========================================================================== */

.trust-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 0;
    border-top: 1px solid rgba(0, 123, 255, 0.1);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #495057;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

.trust-item svg {
    color: #28a745;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-section {
        padding: 40px 0;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .trust-item {
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .trust-item svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================================================
   Testimonial Section
   ========================================================================== */

.testimonial-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    padding: 80px 0;
    color: white;
}

.testimonial {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial__content blockquote {
    font-size: 1.375rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 32px;
    position: relative;
    quotes: """ """;
}

.testimonial__content blockquote::before {
    content: open-quote;
    font-size: 4rem;
    position: absolute;
    left: -20px;
    top: -10px;
    color: rgba(255, 255, 255, 0.3);
    font-family: serif;
}

.testimonial__author strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
}

.testimonial__author span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.testimonial__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 24px 16px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat__label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 0;
    }
    
    .testimonial {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .testimonial__content blockquote {
        font-size: 1.2rem;
    }
    
    .testimonial__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .stat {
        padding: 20px 12px;
    }
    
    .stat__number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonial__stats {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.service {
    background: linear-gradient(145deg, #ffffff 0%, #f8fffe 100%);
    padding: 36px 28px;
    border-radius: 20px;
    border: 1px solid rgba(0, 123, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff 0%, #0056b3 50%, #007bff 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 123, 255, 0.12);
    border-color: rgba(0, 123, 255, 0.15);
}

.service:hover::before {
    opacity: 1;
}

.service__icon {
    color: #007bff;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 123, 255, 0.1));
}

.service__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.service__description {
    color: #495057;
    line-height: 1.65;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service__meta {
    color: #007bff;
    font-weight: 600;
    font-size: 0.85rem;
    background: rgba(0, 123, 255, 0.06);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Responsive Design */
@media (max-width: 1024px) {
    .services {
        max-width: 900px;
        gap: 20px;
    }
    
    .service {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .services {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }
    
    .service {
        padding: 28px 20px;
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
    }
    
    .service__title {
        font-size: 1.2rem;
    }
    
    .service__description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .service__meta {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .services {
        max-width: 350px;
    }
    
    .service {
        padding: 24px 16px;
        max-width: 320px;
    }
    
    .service__icon svg {
        width: 40px;
        height: 40px;
    }
    
    .service__title {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   Process Section
   ========================================================================== */

.process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process__step {
    text-align: center;
}

.process__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.process__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.process__description {
    color: #6c757d;
    line-height: 1.6;
}

.process__cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 123, 255, 0.1);
}

.process__guarantee {
    margin-top: 16px;
    color: #6c757d;
    font-size: 0.9rem;
    font-style: italic;
}

.btn--large {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing__card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.pricing__card--featured {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.2);
    transform: scale(1.05);
}

.pricing__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing__title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}

.pricing__price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
}

.pricing__period {
    color: #6c757d;
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.pricing__card--featured .pricing__period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing__features {
    list-style: none;
    text-align: left;
}

.pricing__features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    padding-left: 28px;
}

.pricing__card--featured .pricing__features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing__features li:last-child {
    border-bottom: none;
}

.pricing__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: 700;
}

.pricing__card--featured .pricing__features li::before {
    color: white;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item:hover {
    border-color: rgba(0, 123, 255, 0.2);
}

.faq__question {
    padding: 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a1a1a;
    list-style: none;
    position: relative;
    transition: background-color 0.2s ease;
}

.faq__question:hover {
    background: #f8f9fa;
}

.faq__question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #007bff;
    transition: transform 0.3s ease;
}

.faq__item[open] .faq__question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq__answer {
    padding: 0 24px 24px;
    color: #6c757d;
    line-height: 1.6;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact__method h3 {
    font-size: 1.375rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact__method p {
    margin-bottom: 12px;
    color: #6c757d;
    line-height: 1.6;
}

.contact__credentials {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 123, 255, 0.1);
}

.credential {
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #007bff;
}

.credential strong {
    display: block;
    color: #007bff;
    margin-bottom: 4px;
    font-weight: 600;
}

.credential span {
    color: #495057;
    font-size: 0.9rem;
}

.contact__crisis {
    background: #fff3f3;
    border-left: 4px solid #dc3545;
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.contact__crisis h4 {
    color: #dc3545;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact__form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.form__group {
    margin-bottom: 24px;
}

.form__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #f8f9fa;
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: #007bff;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__disclaimer {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 16px;
    text-align: center;
}

@media (max-width: 768px) {
    .contact {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__form {
        padding: 32px 24px;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 32px;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 32px;
}

.footer__brand h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.footer__brand p {
    color: #adb5bd;
    font-size: 1.1rem;
}

.footer__legal p {
    color: #adb5bd;
    margin-bottom: 8px;
    line-height: 1.6;
}


@media (max-width: 768px) {
    .footer__content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}

/* ==========================================================================
   Focus Styles & Accessibility
   ========================================================================== */

*:focus-visible {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn--outline {
        border-width: 3px;
    }
    
    .service,
    .pricing__card,
    .contact__form,
    .faq__item {
        border-width: 2px;
    }
}

/* Print styles */
@media print {
    .header,
    .nav__toggle,
    .btn,
    .contact__form {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .section {
        padding: 20pt 0;
        page-break-inside: avoid;
    }
}