/* ==========================================================================
   QuillSpace - Matching GeneratePress/GenerateBlocks WordPress Style
   ========================================================================== */

/* CSS Variables - matching old WordPress GeneratePress config */
:root {
    --contrast: #222222;
    --contrast-2: #575760;
    --contrast-3: #b2b2be;
    --base: #f0f0f0;
    --base-2: #f7f8f9;
    --base-3: #ffffff;
    --fc-darkcolor: #1b2032;
    --orange-color: #e73e3b;
    --text-color: #5c6770;
    --green: #8bc34a;
    --gray-color: #f7f8fa;
    --accent: #082E52;
    --accent-color: #082E52;
    --accent-2: #a0aec0;
    --icon-blue: #A2D2FF;

    --font-body: 'Poppins', sans-serif;
    --font-nav: 'Inter', sans-serif;

    --container-max: 1300px;
}

/* Reset & Base - matching GeneratePress */
blockquote, body, dd, dl, dt, fieldset, figure, h1, h2, h3, h4, h5, h6,
hr, html, iframe, legend, li, ol, p, pre, textarea, ul {
    margin: 0;
    padding: 0;
    border: 0;
}

html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
    color: var(--contrast);
    background-color: #ffffff;
    background-image: linear-gradient(to right, #f9f9f9 1px, transparent 1px), linear-gradient(to bottom, #f9f9f9 1px, transparent 1px);
    background-size: 15px 15px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
}

a:hover {
    color: var(--contrast);
}

ul {
    list-style: none;
}

p {
    margin-bottom: 1.5em;
    color: var(--text-color);
}

/* Typography - matching GeneratePress */
h1 {
    font-size: 54px;
    line-height: 1.3em;
    font-weight: 400;
    margin-bottom: 20px;
    color: #333333;
}

h2 {
    font-size: 46px;
    line-height: 1.2em;
    font-weight: 400;
    margin-bottom: 20px;
    color: #333333;
}

h3 {
    font-size: 36px;
    line-height: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

h5 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 400;
}

strong {
    font-weight: 700;
}

/* Container - matching GeneratePress grid-container */
.container, .grid-container {
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    width: auto;
}

/* ==========================================================================
   Promo Banner - matching Simple Banner plugin (black bg, orange link)
   ========================================================================== */
.promo-banner {
    background: #000000;
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    width: 100%;
}

.promo-banner strong {
    background: none;
    padding: 0;
}

.promo-spots {
    opacity: 0.9;
}

.promo-cta {
    color: #f16521;
    text-decoration: none;
    margin-left: 5px;
}

.promo-cta:hover {
    color: #f16521;
    text-decoration: underline;
}

/* ==========================================================================
   Header - matching GeneratePress inside-header
   ========================================================================== */
.site-header {
    background: var(--base-3);
    position: relative;
}

.header-inner {
    display: flex;
    align-items: center;
    padding: 40px 20px;
}

.site-logo img {
    height: auto;
    width: auto;
    max-height: 99px;
}

.main-nav {
    font-family: var(--font-nav);
    margin-left: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    display: block;
    color: var(--contrast);
    font-weight: 500;
    font-size: 16px;
    padding-left: 30px;
    padding-right: 30px;
    line-height: 40px;
    text-decoration: none;
    position: relative;
}

.nav-menu li a::after {
    content: "";
    position: absolute;
    right: 0;
    left: 50%;
    bottom: 5px;
    transform: translate3d(-50%, 0, 0);
    display: block;
    width: 0;
    height: 2px;
    color: var(--accent);
    background-color: currentColor;
    transition: 0.3s width ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 50%;
}

.nav-cta {
    /* No special styling in old site - Downloads is a regular nav link */
}

.nav-cta::after {
    content: "";
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 20px;
    line-height: 60px;
    font-weight: 400;
    font-size: 15px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--contrast);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ==========================================================================
   Hero Section - matching GenerateBlocks centered layout
   ========================================================================== */
.hero {
    max-width: var(--container-max);
    padding: 120px 20px 20px;
    margin: 0 auto;
}

.hero-content {
    display: block;
    text-align: center;
    padding-left: 20px;
    margin-left: 4%;
}

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

.hero-text h1 {
    font-size: 54px;
    line-height: 1.3em;
    text-align: center;
    padding-bottom: 20px;
    margin-right: auto;
    margin-left: auto;
    color: #333333;
}

.hero-text .subtitle {
    font-size: 35px;
    text-align: center;
    padding-bottom: 20px;
    color: var(--contrast);
    font-weight: 400;
    margin-bottom: 0;
}

.hero-text > p {
    text-align: center;
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    text-align: center;
    padding: 20px 0;
}

.hero-image {
    margin-top: 60px;
    border-radius: 5px;
    overflow: hidden;
}

.hero-image img,
.hero-image video {
    width: 100%;
    border-radius: 5px;
}

/* ==========================================================================
   Buttons - matching GenerateBlocks button style
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 30px;
    border: 0;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
    text-decoration: none;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--base-3);
}

.btn-primary:hover {
    background-color: #222222;
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: #fff;
}

.btn-orange {
    background: var(--orange-color);
    color: #fff;
}

.btn-orange:hover {
    background: #c93532;
    color: #fff;
}

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

/* ==========================================================================
   Section Styles - matching WordPress spacer blocks
   ========================================================================== */
.section {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section-spacer {
    height: 100px;
}

.section-light {
    background: transparent;
}

.section-header {
    text-align: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 20px;
}

.section-header h2 {
    font-size: 46px;
    text-align: center;
    color: #333333;
}

.section-header p {
    text-align: center;
}

/* Dots separator - matching WP separator */
.separator-dots {
    text-align: center;
    padding: 40px 0;
    border: none;
    background: none;
}

.separator-dots::before {
    content: "···";
    color: var(--contrast-3);
    font-family: serif;
    font-size: 1.5em;
    letter-spacing: 2em;
    padding-left: 2em;
}

/* ==========================================================================
   Problem/Dilemma Section - checklist items (NOT cards)
   ========================================================================== */
.problem-section {
    max-width: var(--container-max);
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
}

.problem-section h2 {
    font-size: 46px;
    text-align: center;
    padding-top: 20px;
    color: #333333;
}

.problem-section > p {
    text-align: center;
}

.checklist-items {
    max-width: 600px;
    margin: 30px auto 0;
    text-align: left;
}

.checklist-item {
    display: flex;
    align-items: center;
    column-gap: 0.5em;
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 1em;
}

.checklist-item .check-icon {
    line-height: 0;
    color: var(--icon-blue);
    flex-shrink: 0;
}

.checklist-item .check-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.problem-footer-text {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* ==========================================================================
   Feature Sections - matching GenerateBlocks 50/50 grid
   ========================================================================== */
.feature-section {
    max-width: var(--container-max);
    margin: 40px auto 0;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.feature-text {
    width: 50%;
    padding: 0 20px;
}

.feature-image {
    width: 50%;
    padding: 0 20px;
}

.feature-grid.reverse .feature-text {
    order: 2;
    padding-left: 60px;
}

.feature-grid.reverse .feature-image {
    order: 1;
}

.feature-text h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.feature-text > p {
    margin-bottom: 1.5em;
}

.feature-list {
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    align-items: center;
    column-gap: 0.5em;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 400;
    max-width: 450px;
}

.feature-list li .check-icon {
    line-height: 0;
    color: var(--icon-blue);
    flex-shrink: 0;
}

.feature-list li .check-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.feature-image img,
.feature-image video {
    width: 100%;
    border-radius: 0;
}

.rounded-container {
    border-radius: 5px;
    overflow: hidden;
}

/* ==========================================================================
   Stats / Social Proof - matching old GenerateBlocks layout
   ========================================================================== */
.stats {
    max-width: var(--container-max);
    background-color: var(--gray-color);
    padding: 20px 0 0;
    margin: 100px auto 0;
}

.stats-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

.stat-item {
    width: 33.33%;
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    font-weight: 700;
    color: var(--contrast);
    margin-bottom: 10px;
}

.stat-item .stat-emoji {
    font-size: 24px;
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-color);
    margin: 0;
}

.stat-trust {
    width: 33.33%;
    text-align: center;
    padding: 20px;
}

.stat-trust h2 {
    font-size: 35px;
    text-align: center;
}

.stat-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.stat-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    object-fit: cover;
}

.stat-avatars img + img {
    margin-left: -12px;
}

/* ==========================================================================
   Testimonials - matching old GenerateBlocks column layout
   ========================================================================== */
.testimonials-section {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-section h2 {
    font-size: 46px;
    text-align: center;
    margin-top: 100px;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    margin-top: 100px;
}

.testimonial-container {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    transition: background-color 0.2s ease;
}

.testimonial-container:hover {
    background-color: var(--base);
}

.testimonial-header {
    display: flex;
    align-items: center;
    padding-top: 20px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    object-fit: cover;
}

.testimonial-name {
    font-size: 19px;
    font-weight: 700;
    margin-left: 10px;
    margin-top: auto;
    margin-bottom: auto;
    color: var(--contrast);
}

.testimonial-stars {
    margin-bottom: 5px;
}

.testimonial-stars svg {
    width: 24px;
    height: 24px;
}

.testimonial-stars .star {
    fill: #FFB621;
}

.testimonial-screenshot {
    margin-top: 5px;
    margin-bottom: 20px;
}

.testimonial-screenshot img {
    width: 100%;
}

.testimonial-text {
    color: var(--text-color);
}

/* ==========================================================================
   FAQ - matching Otter Blocks accordion with details/summary
   ========================================================================== */
.faq-section {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section > h2 {
    font-size: 46px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.faq-list {
    max-width: var(--container-max);
    margin: 0 auto;
}

.faq-item {
    border-top: 1px solid var(--base);
}

.faq-item:last-child:not([open]) {
    border-bottom: 1px solid var(--base);
}

.faq-item:last-child[open] .faq-answer {
    border-bottom: 1px solid var(--base);
}

.faq-item summary {
    position: relative;
    z-index: 2;
    padding: 18px 24px;
    list-style: none;
    cursor: pointer;
    user-select: none;
    display: grid;
    grid-template-columns: auto min-content;
    align-items: center;
    font-size: 17px;
    font-weight: 400;
    color: var(--contrast);
}

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

.faq-item summary::after {
    content: "";
    justify-self: end;
    align-self: center;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    width: 8px;
    height: 8px;
    transform: rotate(45deg) translate(-25%, 0%);
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(225deg) translate(0%, -45%);
}

.faq-answer {
    padding: 0 24px 18px;
}

.faq-answer p {
    margin-bottom: 0;
}

/* Separator */
.faq-separator {
    border: none;
    height: 0;
    border-top: 1px solid var(--gray-color);
    margin: 40px 0;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Downloads / CTA Section
   ========================================================================== */
.cta-section {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px 20px 30px;
    text-align: center;
}

.cta-section h2 {
    font-size: 46px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 30px;
    margin-bottom: 60px;
    color: #333333;
}

.cta-section > p {
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.cta-buttons img {
    height: 51px;
    width: auto;
}

/* ==========================================================================
   Footer - matching GenerateBlocks dark footer
   ========================================================================== */
.site-footer {
    background-color: var(--fc-darkcolor);
    color: var(--base-3);
}

.footer-content {
    max-width: var(--container-max);
    padding: 100px 20px 20px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
}

.footer-grid > div {
    padding-left: 30px;
    width: 25%;
    height: 100%;
    padding-bottom: 60px;
}

.footer-links h4 {
    display: inline-block;
    border-bottom: 1px solid;
    color: var(--base-3);
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: 700;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a {
    color: var(--base-3);
    text-decoration: none;
    font-size: 17px;
}

.footer-links a:hover {
    color: var(--contrast-3);
}

.footer-bottom {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--fc-darkcolor);
}

.footer-bottom p {
    color: var(--base-3);
    font-size: 15px;
    margin: 0;
}

.footer-bottom a {
    color: var(--base-3);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--contrast-3);
}

/* ==========================================================================
   Pricing Page
   ========================================================================== */
.page-title-section {
    text-align: center;
    padding: 40px 0 0;
}

.page-title-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--contrast);
}

.pricing-subtitle {
    text-align: center;
    padding: 20px 0 0;
}

.pricing-subtitle h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    color: var(--contrast);
}

.pricing-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

.pricing-column {
    border: 2px solid var(--contrast);
    padding: 24px;
    text-align: center;
    width: 100%;
    max-width: 450px;
}

.pricing-plan-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px;
    color: var(--contrast);
}

.pricing-plan-icon {
    display: inline-flex;
    align-items: center;
    color: var(--contrast);
}

.pricing-plan-icon svg {
    width: 1em;
    height: 1em;
}

.pricing-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.pricing-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--contrast);
    line-height: 1;
}

.pricing-period {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--contrast);
}

.pricing-icon-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
    padding: 0 10px;
}

.pricing-icon-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--contrast);
}

.pricing-icon-list-item p {
    margin: 0;
}

.pricing-check-icon {
    color: var(--accent);
    font-style: normal;
    font-size: 18px;
    font-weight: 700;
}

.pricing-button-wrap {
    text-align: center;
}

.pricing-buy-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    background-color: var(--accent);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.pricing-buy-btn:hover {
    background-color: #222222;
}

/* ==========================================================================
   Contact Form
   ========================================================================== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--base-3);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--contrast);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--base);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--contrast);
    background-color: var(--base-2);
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--contrast-3);
}

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

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
}

/* ==========================================================================
   Downloads Page
   ========================================================================== */
.download-card {
    background: var(--base-3);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.download-card img {
    max-width: 200px;
    margin: 0 auto 30px;
}

/* ==========================================================================
   Back to Top - matching GeneratePress
   ========================================================================== */
.back-to-top {
    font-size: 20px;
    border-radius: 3px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    line-height: 40px;
    width: 40px;
    text-align: center;
    z-index: 10;
    transition: opacity 300ms ease-in-out;
    opacity: 0;
    transform: translateY(1000px);
    background-color: rgba(0,0,0,0.4);
    color: #ffffff;
    text-decoration: none;
    display: block;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: rgba(0,0,0,0.6);
    color: #ffffff;
}

/* ==========================================================================
   Responsive - matching GeneratePress breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 265px;
        height: 100vh;
        background: var(--orange-color);
        padding: 20px 0;
        z-index: 100001;
    }

    .nav-menu.active li a {
        color: var(--gray-color);
        line-height: 60px;
    }

    .header-inner {
        padding: 20px;
    }

    .stats-grid {
        flex-direction: column;
    }

    .stat-item, .stat-trust {
        width: 100%;
    }

    .footer-grid > div {
        width: 50%;
    }

    .page-title-section h1 {
        font-size: 42px;
    }

    .pricing-subtitle h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 26px;
    }

    .hero {
        padding-top: 40px;
    }

    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
        margin-left: 0;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text .subtitle {
        font-size: 26px;
    }

    .feature-text,
    .feature-image {
        width: 100%;
    }

    .feature-grid.reverse .feature-text {
        order: 1;
        padding-left: 20px;
    }

    .feature-grid.reverse .feature-image {
        order: 2;
    }

    .feature-text {
        margin-bottom: 10px;
    }

    .feature-image {
        margin-bottom: 10px;
    }

    .testimonials-grid {
        flex-direction: column;
        margin-top: 40px;
    }

    .testimonials-section h2 {
        margin-top: 40px;
    }

    .faq-section > h2 {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .footer-grid > div {
        width: 100%;
    }

    .stats {
        margin-top: 40px;
    }

    .stat-avatars {
        justify-content: center;
    }

    .cta-section h2 {
        font-size: 30px;
    }

    .section-spacer {
        height: 40px;
    }

    .page-title-section h1 {
        font-size: 36px;
    }

    .pricing-subtitle h2 {
        font-size: 26px;
    }

    .pricing-wrapper {
        padding: 0 20px;
    }

    .pricing-amount {
        font-size: 36px;
    }

    .pricing-period {
        font-size: 18px;
    }
}
