@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=block');

/* Consolidated styles from all HTML files */

/* Light purple background for homepage only */
body.full-width.homepage {
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    background: #ECD3FF;
    overflow-x: hidden;
}

/* White background for all other pages */
body.full-width:not(.homepage) {
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    background: #ffffff;
    overflow-x: hidden;
    padding-top: 6rem;
}

body.full-width .container,
body.full-width .content-section,
body.full-width .results-container,
body.full-width .benefits-section,
body.full-width .intro-paragraphs {
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    box-sizing: border-box;
}


/* Universal box-sizing for better mobile layout */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: -apple-system, system-ui, "Segoe UI", Roboto, sans-serif;
    color: #1e293b;
    line-height: 1.5;
    background: #ECD3FF;
    display: flex;
    flex-direction: column;
}

body.full-width {
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    padding: 0;
}

body.full-width:not(.homepage) {
    padding-top: 6rem;
}

/* Footer */
.site-footer {
    flex-shrink: 0;
    width: 100%;
    padding: 3rem 0 2rem 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(167, 139, 250, 0.12) 100%);
    border-top: 1px solid rgba(124, 58, 237, 0.15);
    margin-top: auto;
    position: relative;
}

body .site-footer {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(167, 139, 250, 0.25) 100%) !important;
  border-top: 1px solid rgba(124, 58, 237, 0.3) !important;
}

body.homepage .site-footer {
  background: rgba(255, 255, 255, 0.8) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.6) !important;
}

.hero-image-wrapper {
  margin-bottom: 4rem;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(124, 58, 237, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 8px;
}

.non-tool-content-div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.input-group a {
    display: inline-block;
    margin: 1rem 0.5rem;
    padding: 1rem 2.2rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #a78bfa 0%, #8b5cf6 100%);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.input-group a:hover {
    background: linear-gradient(90deg, #c4b5fd 0%, #7c3aed 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.13);
}

label {
    font-weight: 500;
    color: #4b006e;
}

input, textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
    font-family: inherit;
    box-sizing: border-box;
}

textarea {
    min-height: 200px;
}

.button-link, button, .btn, input[type="submit"], input[type="button"] {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #7c3aed;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.2s ease;
    text-align: center;
}

.button-link:hover, button:hover, .btn:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background-color: #6d28d9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.results-container {
    background-color: #f8f9fa;
    padding: 2rem;
    max-width: 900px;
    margin: 2rem auto;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
}

.contact-form-div {
    padding: 2rem;
    max-width: 900px;
    margin: 2rem auto;
    width: 100%;
    border-radius: 8px;
}

.results-section {
    margin-bottom: 2rem;
}

.results-section h2 {
    color: #7c3aed;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.question-item, .comparison-item {
    background: white;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.06);
}

.question-item h3, .comparison-item h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: #10a37f;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.meta-info {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
}

.meta-info span {
    margin-right: 1rem;
}

pre {
    background-color: #f5f3ff;
    padding: 1rem;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    min-height: 100px;
}

.error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    background: #fbeffb;
    padding: 1rem;
}

.loading {
    color: #666;
    font-style: italic;
}

h1 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    color: #4b006e;
    text-align: center;
}

.subheadline {
    font-size: 1.3rem;
    color: #7c3aed;
    margin-bottom: 2.5rem;
    font-weight: 500;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

footer a {
    color: #7c3aed;
    text-decoration: underline;
    font-weight: 500;
}

/* Modern hero and tool button styles */

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  line-height: 1.5;
  background: #ECD3FF;
  color: #1e293b;
  padding-top: 4.2em;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.hero-image-wrapper {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  display: block;
  position: relative;
  z-index: 10;
}

.hero-image-wrapper img {
  width: 100vw;
  height: auto;
  min-height: 0;
  max-width: 100vw;
  border-radius: 0;
  box-shadow: none;
  background: none;
  display: block;
  object-fit: contain;
  margin: 0;
  padding: 0;
}

@media (max-width: 700px) {
  .hero-image-wrapper img {
    max-width: 100vw;
    padding: 0;
  }
}

/* Stats Container */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 9rem auto -3rem;
    max-width: 900px;
    padding: 0 2rem;
    box-sizing: border-box;
    position: relative;
    z-index: 20;
}

.stat-bubble {
    background: #99DEC8;
    color: #7c3aed;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
    animation: float 3s ease-in-out infinite;
    text-align: center;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    margin-bottom: 2rem;
    transform-origin: center bottom;
    will-change: transform;
}

.stat-bubble:first-child::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 20%;
    transform: translateX(-50%) translateY(0);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #99DEC8;
    filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.05));
    pointer-events: none;
}

.stat-bubble:last-child::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 20%;
    transform: translateX(50%) translateY(0);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #99DEC8;
    filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.05));
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Remove separate tail animation and let it move with parent */

.stat-bubble:nth-child(2) {
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .stats-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin: 7.5rem auto 0;
        padding: 0 1.5rem;
        max-width: 100%;
        position: relative;
        align-items: start;
    }

    .stat-bubble {
        padding: 1rem 1rem 1.5rem;
        width: 100%;
        margin: 0;
        box-shadow: 0 3px 10px rgba(124, 58, 237, 0.15);
        position: relative;
        z-index: 2;
        max-width: none;
    }

    .stat-bubble:first-child::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 20%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 12px solid #99DEC8;
        filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.05));
        pointer-events: none;
        z-index: 1;
    }

    .stat-bubble:last-child::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 20%;
        transform: translateX(50%);
        width: 0;
        height: 0;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 12px solid #99DEC8;
        filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.05));
        pointer-events: none;
        z-index: 1;
    }

    /* Adjust for very small screens */
    @media (max-width: 500px) {
        .stats-container {
            margin-top: 7.5rem;
            padding: 0 1rem;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }

        .stat-bubble {
            font-size: 0.8rem;
            padding: 0.5rem 0.5rem;
            line-height: 1.3;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 80px;
        }

        .stat-line {
            display: block;
            white-space: nowrap;
        }

        .stat-bubble:first-child::after {
            left: 25%;
            transform: translateX(-50%);
        }

        .stat-bubble:last-child::after {
            right: 25%;
            transform: translateX(50%);
        }
    }
  .index-main-title {
    font-size: 2em;
    text-align: center;
  }
}


/* Consolidated intro-paragraphs and intro-divider */
.intro-paragraphs, h1.page-title + .intro-paragraphs {
  text-align: left;
  max-width: 900px;
  margin: 0 auto 1.2em auto;
}
.intro-divider, h1.page-title + .intro-divider {
  border: none;
  border-top: 2px solid #e0e0e0;
  margin: 2em 0 1.5em 0;
}

/* New brief description styles */
.brief-description {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2em auto;
  padding: 0 1rem;
}

.brief-description p {
  font-size: 1.1rem;
  color: #4b006e;
  margin: 0;
  line-height: 1.5;
}

/* Work-with-me specific section spacing */
.work-with-me-content .content-section {
  margin: 2rem auto;
}

.work-with-me-content .content-section:first-child {
  margin-top: 0;
}

/* Work-with-me specific font size standardization */
.work-with-me-content .input-group h2 {
  font-size: 1.5rem;
  color: #7c3aed;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.work-with-me-content .input-group p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.work-with-me-content .input-group li {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
}

.work-with-me-content .input-group strong {
  font-size: 1.15rem;
  color: #374151;
  font-weight: 600;
}

/* Profile image styles */
.profile-card {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2.5rem 2.5rem 2.5rem 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
    display: flex;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
    align-items: flex-start;
    box-sizing: border-box;
}

.profile-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.profile-text p {
    margin-bottom: 1.25rem;
    line-height: 1.6;
    color: #333;
    margin-top: 0;
}

.profile-text p:last-child {
    margin-bottom: 0;
}

.contact-form-div {
    margin: 0;
    padding: 0;
}

.contact-form-div iframe {
    width: 100%;
    border: none;
    border-radius: 0;
    background: white;
    min-height: 400px;
    box-shadow: none !important;
}

.profile-image-container {
    width: 240px;
    flex-shrink: 0;
    margin-top: 0;
    align-self: flex-start;
}

.profile-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .profile-card {
        flex-direction: column;
        padding: 2rem 2rem 2.5rem 2rem;
        gap: 1.5rem;
        max-width: 600px;
        margin: 2rem auto;
    }

    .profile-image-container {
        order: -1;
        width: 200px;
        margin: 0 auto 1rem;
        padding: 0;
    }

    .profile-image {
        max-height: 250px;
    }

    .profile-content {
        width: 100%;
    }

    .contact-form-div iframe {
        min-height: 350px;
    }
}

@media (max-width: 600px) {
    .profile-card {
        padding: 1.5rem;
    }

    .profile-image {
        max-height: 250px;
    }
}

/* Tool CTA styles - based on profile-card but optimized for tool pages */
.tool-cta {
    max-width: 900px;
    margin: 2rem auto 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
    display: flex;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    align-items: flex-start;
}

.tool-cta-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tool-cta-text h4 {
    font-size: 1.25rem;
    color: #7c3aed;
    margin: 0 0 0.75rem 0;
    font-weight: 600;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.3;
}

.tool-cta-text p {
    margin: 0 0 1rem 0;
    line-height: 1.5;
    color: #374151;
    font-size: 0.95rem;
}

.cta-text-link {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-block;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.cta-text-link:hover {
    color: #6d28d9;
    text-decoration: none;
    border-bottom: 1px solid #7c3aed;
}

.tool-cta .profile-image-container {
    width: 140px;
    flex-shrink: 0;
    margin-top: 0;
    align-self: flex-start;
}

.tool-cta .profile-image {
    width: 100%;
    height: auto;
    max-height: 110px;
    object-fit: contain;
}

/* Tool CTA responsive adjustments */
@media (max-width: 900px) {
    .tool-cta {
        flex-direction: row;
        padding: 1.25rem;
        gap: 1.5rem;
        margin: 1.5rem 0.5rem 0.5rem 0.5rem;
        width: calc(100% - 1rem);
        align-items: flex-start;
    }

    .tool-cta .profile-image-container {
        order: 1;
        width: 120px;
        flex-shrink: 0;
        align-self: flex-start;
    }

    .tool-cta .profile-image {
        max-height: 100px;
    }

    .tool-cta-content {
        flex: 1;
        order: 0;
    }

    .tool-cta-text h4 {
        font-size: 1.15rem;
        text-align: left;
    }

    .tool-cta-text p {
        text-align: left;
        font-size: 0.9rem;
    }

    .cta-text-link {
        align-self: flex-start;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .tool-cta {
        flex-direction: row !important;
        padding: 1rem;
        margin: 1.5rem 0.5rem 0.5rem 0.5rem;
        width: calc(100% - 1rem);
        gap: 1rem;
        align-items: center;
    }

    .tool-cta .profile-image-container {
        order: 0 !important;
        width: 80px;
        flex-shrink: 0;
        align-self: center;
    }

    .tool-cta .profile-image {
        max-height: 80px;
    }

    .tool-cta-content {
        flex: 1;
        gap: 0.5rem;
    }

    .tool-cta-text h4 {
        font-size: 1rem;
        text-align: left !important;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .tool-cta-text p {
        text-align: left !important;
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .cta-text-link {
        align-self: flex-start !important;
        font-size: 0.85rem;
    }
}

/* Work with me page styles */
.work-with-me-content .button-link {
  background-color: #8b5cf6;
  color: white !important;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  margin-top: 0.5rem;
}

.work-with-me-content .button-link:hover {
  background: linear-gradient(90deg, #a78bfa 0%, #8b5cf6 100%);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.15);
  color: white !important;
  text-decoration: none;
}

/* Learn More section styles */
.learn-more-section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0;
}

.learn-more-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.learn-more-toggle:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.learn-more-arrow {
  transition: transform 0.2s ease;
  font-size: 0.9rem;
}

.learn-more-toggle[aria-expanded="true"] .learn-more-arrow {
  transform: rotate(180deg);
}

.learn-more-content {
  border: 1px solid #e5e7eb;
  border-top: none;
  border-radius: 0 0 8px 8px;
  background: #fff;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.learn-more-inner {
  padding: 2rem;
}

.learn-more-inner h3 {
  color: #374151;
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
  font-weight: 600;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.learn-more-inner h3:not(:first-child) {
  margin-top: 2rem;
}

.learn-more-inner p {
  color: #4b006e;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.learn-more-inner ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.learn-more-inner li {
  padding: 0.5rem 0;
  color: #4b006e;
  position: relative;
  padding-left: 1.5rem;
}

.learn-more-inner li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7c3aed;
  font-weight: bold;
}

.learn-more-inner .styled-link {
  color: #7c3aed;
  text-decoration: underline;
  font-weight: 500;
}

.learn-more-inner .styled-link:hover {
  color: #6d28d9;
}

.tools-list {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Override for tools-list inside main-content */
.main-content .tools-list {
  padding: 0;
  margin: 0 auto;
}
.tools-list .tool-btn {
  width: 640px;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}
.tool-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(90deg, #a084ee 0%, #7f53e9 100%);
  color: #fff;
  text-decoration: none;
  font-size: 1.25em;
  font-weight: 600;
  padding: 1.2em 1em;
  box-shadow: 0 2px 12px rgba(127, 83, 233, 0.08);
  transition: transform 0.12s, box-shadow 0.12s, background 0.2s;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.tool-btn:hover, .tool-btn:focus {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(127, 83, 233, 0.16);
  background: linear-gradient(90deg, #7f53e9 0%, #a084ee 100%);
}
.tool-btn span {
  font-size: 1.2em;
  font-weight: 700;
}
.tool-btn small {
  font-size: 0.98em;
  font-weight: 400;
  margin-top: 0.4em;
  color: #e0d7fa;
  letter-spacing: 0.01em;
}
.tool-btn.small {
  font-size: 1em;
  padding: 0.7em 0.8em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(90deg, #a084ee 0%, #7f53e9 100%);
  padding: 1.1em 1em 1.1em 2em;
  box-shadow: 0 2px 12px rgba(127, 83, 233, 0.08);
  margin-bottom: 0;
  margin-top: 0;
  font-size: 1.15em;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  min-width: 0;
  overflow: visible;
}
.main-nav-links {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  flex-shrink: 1;
}
.nav-header-logo {
  max-height: 67px;
  height: 67px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 2em;
  display: block;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin-right: 2em;
  transition: color 0.18s;
}
.main-nav a:last-child {
  margin-right: 0;
}
.main-nav a:hover {
  color: #ffe066;
}
.main-nav .nav-right {
  font-weight: 400;
  font-size: 0.98em;
  color: #e0e7ff;
  padding-right: 0.5em;
}
.main-nav .nav-right a {
  color: #ffe066;
  text-decoration: underline;
  font-weight: 500;
}
.main-nav a[href="/work-with-me"] {
  background: linear-gradient(
    90deg,
    #ff6ec4 0%,
    #f7971e 20%,
    #43e97b 40%,
    #38f9d7 60%,
    #ff6ec4 80%,
    #f7971e 100%
  );
  background-size: 400% 100%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
  animation: rainbow-move 6s linear infinite;
  transition: text-shadow 0.2s;
  text-shadow: 0 1px 8px rgba(127,83,233,0.08);
}

@keyframes rainbow-move {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Dropdown menu styles */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.8em;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

/* Ensure arrow rotation works on mobile */
@media (max-width: 899px) {
  .nav-dropdown:hover .dropdown-arrow {
    transform: none;
  }
  .nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(90deg, #a084ee 0%, #7f53e9 100%);
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(127, 83, 233, 0.15);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
  margin-right: 0;
}

.dropdown-menu a:last-child {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}

.dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffe066;
}

@media (max-width: 899px) {
  .main-nav {
    flex-direction: row;
    align-items: center;
    padding: 1.1em 0.5em 1.1em 0.5em;
  }

  .nav-toggle {
    display: flex !important;
    z-index: 3000;
    position: relative;
  }
  .main-nav-links {
    z-index: 2000;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(90deg, #a084ee 0%, #7f53e9 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    box-shadow: 0 2px 12px rgba(127, 83, 233, 0.08);
    padding: 5em 0 1em 1.5em;
    margin-top: 0;
  }
  .main-nav-links.open {
    display: flex;
  }
  .main-nav a {
    margin: 0.25em 0;
    font-size: 1.1em;
    width: 100%;
  }

  /* Mobile dropdown styles */
  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown.active .dropdown-menu {
    max-height: 300px;
  }

  .dropdown-menu a {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.25em 0;
  }

  .nav-header-logo {
    margin-left: auto;
    margin-right: 2.5em;
    order: 99;
  }
  footer {
    font-size: 0.95em !important;
    padding: 1.2em 0.5em 0.8em 0.5em !important;
    line-height: 1.4;
    word-break: break-word;
  }
  footer a {
    display: inline-block;
    margin-bottom: 0.3em;
    word-break: break-word;
  }
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #7c3aed;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.footer-links a:hover {
  color: #6d28d9;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.12);
  transform: translateY(-2px);
  border-color: rgba(124, 58, 237, 0.2);
}

#primary-topic-label {
  text-align: center;
}

.index-main-title {
  text-align: center;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@media (max-width: 740px) {
  /* .hero styles removed as .hero is deprecated */

  /* Additional mobile fixes for smaller screens */
  body {
    padding: 0 0.5rem;
  }

  body.full-width {
    padding: 0;
  }

  .container {
    padding: 1.5rem 0.75rem 1rem 0.75rem;
    margin: 0.5rem;
    width: calc(100% - 1rem);
  }

  input, textarea {
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  button {
    padding: 0.65rem 0.75rem;
    font-size: 0.9rem;
  }
}

/* Base h1 styles */
h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Benefits section */
.benefits-section {
  margin: 1rem auto;
  padding: 1.5rem;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

/* Tools list styles */
.tools-list {
  width: 100%;
  padding: 0;
  margin: 0 0 2rem 0;
  list-style: none;
}

.tools-list .input-group {
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 0;
}

.tools-list input[type="text"] {
  width: 100%;
  padding: 0.75rem;
  margin: 0 0 0.5rem 0;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
}

.tools-list button {
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.75rem 1.5rem;
  background-color: #7c3aed;
  color: white;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s;
}

.tools-list button:hover {
  background-color: #6d28d9;
}

/* Extra small screens */
@media (max-width: 480px) {
  .container {
    padding: 1rem 0.5rem;
    margin: 0.25rem;
    width: calc(100% - 0.5rem);
  }

  body.full-width .container,
  body.full-width .content-section,
  body.full-width .results-container,
  body.full-width .benefits-section,
  body.full-width .intro-paragraphs {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
    width: calc(100% - 0.5rem) !important;
  }

  input, textarea, #content-input {
    padding: 0.5rem 0.25rem;
  }

  h1 {
    font-size: 1.8rem;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
}

/* Main content wrapper for consistent alignment */
.main-content {
    flex: 1 0 auto;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
}

.main-content > * {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Reset individual element widths to inherit from parent */
.main-content .brief-description,
.main-content .tools-list,
.main-content .results-container,
.main-content .learn-more-section {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

/* Adjust input group and button widths */
.main-content .input-group {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.main-content .input-group h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.main-content .tool-btn {
  max-width: 640px;
  margin: 0 auto;
  display: block;
}

/* Ensure results container is consistently aligned */
.main-content .results-container {
  text-align: left;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Ensure learn more section is consistently aligned */
.main-content .learn-more-section {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Upsell CTA styles - Direct rule */
.upsell-cta {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem auto 0 auto;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
  border-left: 4px solid #8b5cf6;
}

/* Page title styles */
h1.page-title {
  display: block;
  font-size: 2.2em;
  font-weight: 800;
  color: #6c2eb7;
  letter-spacing: -1px;
  margin: 1.5rem auto 0.7em auto;
  text-align: center;
  max-width: 900px;
  z-index: 2;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@media (max-width: 899px) {
  h1.page-title {
    font-size: 2em;
    max-width: 98vw;
  }
}


@media (max-width: 700px) {
  h1.page-title {
    font-size: 1.8em;
    max-width: 99vw;
  }
}


@media (max-width: 480px) {
  h1.page-title {
    font-size: 1.5em;
    max-width: 100vw;
  }
}






  .benefits-section {
    margin: 0.25rem !important;
    padding: 0.5rem !important;
    width: calc(100% - 0.5rem) !important;
  }

  /* Mobile styles for new elements */
  .main-content {
    padding: 0 0.5rem;
  }

  .brief-description {
    margin: 0 auto 1rem auto;
    padding: 0;
  }

  .brief-description p {
    font-size: 0.95rem;
  }

  .learn-more-section {
    margin: 2rem auto;
    padding: 0;
  }

  .learn-more-toggle {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .learn-more-inner {
    padding: 1.5rem;
  }

  .learn-more-inner h3 {
    font-size: 1rem;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }

  /* Tools-list fixes for extra small screens */
  .tools-list {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .tools-list .input-group {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .tools-list input[type="text"] {
    width: 100%;
    padding: 0.5rem 0.25rem;
    margin: 0;
    font-size: 0.85rem;
  }

  .tools-list button {
    width: 100%;
    margin: 0.25rem 0;
    padding: 0.5rem 0.5rem;
    font-size: 0.85rem;
  }
}

a, .styled-link {
    color: #7c3aed;
    text-decoration: underline;
}
.styled-link {
    font-weight: 500;
}
.styled-link:visited {
    color: #7c3aed;
}

/* Hamburger menu styles */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 7px;
  box-sizing: border-box;
  position: relative;
}
.nav-toggle:focus {
  outline: 2px solid #7c3aed;
}
.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 4px;
  margin: 4px 0;
  background: #4b006e;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}
.nav-toggle.open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 899px) {
  .nav-toggle {
    display: flex !important;
    z-index: 3000;
    position: relative;
  }
  .main-nav-links {
    z-index: 2000;
  }
}

/* About page styles */
.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.lead-text {
    font-size: 1.2rem;
    color: #4b006e;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tool-card {
    background: #f8f5ff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.06);
}

.tool-card h3 {
    color: #7c3aed;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.tool-card ul {
    margin: 0;
    padding-left: 1.2rem;
}

.tool-card li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.tool-card li:last-child {
    margin-bottom: 0;
}

.tool-card strong {
    color: #4b006e;
}

.content-section h2 {
    color: #7c3aed;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.content-section h2:first-of-type {
    margin-top: 0;
}

.content-section ul {
    list-style-type: none;
    padding-left: 0;
}

.content-section ul li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.content-section a {
    color: #7c3aed;
    text-decoration: underline;
    font-weight: 500;
}

.content-section a:hover {
    color: #6d28d9;
}

.input-feedback-group {
  min-height: 3.5em;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  margin-bottom: 0.5em;
}
#format-indicator {
  color: #059669;
  font-size: 0.98em;
}
#char-warning {
  color: #dc2626;
  font-weight: 600;
  background: #fff4f4;
  border-radius: 4px;
  padding: 0.2em 0.6em;
  font-size: 0.98em;
  display: none;
}
#char-counter {
  color: #666;
  font-size: 0.96em;
  text-align: right;
  min-height: 1.2em;
}

.hero.full-bg {
  background: #fff;
  min-height: 100vh;
  box-shadow: none;
  margin-bottom: 0;
}

.work-with-me-bg {
  background: #fff;
  max-width: 900px;
  margin: 3em auto 3em auto;
}
.work-with-me-inner {
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
  border-radius: 0.8em;
  padding: 0 0 2em 0;
}
.work-with-me-inner .hero,
.work-with-me-inner .content-section {
  box-shadow: none;
}
/* .hero styles removed as .hero is deprecated */
.work-with-me-inner {
  margin-bottom: 0;
  border-radius: 0.8em 0.8em 0 0;
  padding-bottom: 0.5em;
}
.work-with-me-inner .hero .intro-paragraphs {
  margin-bottom: 0.5em;
}
.work-with-me-inner .content-section {
  margin-top: 0;
  border-radius: 0 0 0.8em 0.8em;
}
@media (max-width: 899px) {
  .work-with-me-bg {
    max-width: 98vw;
    margin: 1em 1vw;
  }

  /* Mobile fixes for all tool pages */
  body.full-width .container,
  body.full-width .content-section,
  body.full-width .results-container,
  body.full-width .benefits-section,
  body.full-width .intro-paragraphs {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
    width: calc(100% - 1rem) !important;
  }

  .container {
    padding: 2rem 1rem 1.5rem 1rem;
    margin: 1rem 0.5rem;
    width: calc(100% - 1rem);
  }

  .input-group {
    width: 100%;
    margin: 0;
  }

  input, textarea, #content-input {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 0.75rem 0.5rem;
  }

  button {
    width: 100%;
    max-width: none;
    margin: 0.5rem 0;
    padding: 0.75rem 1rem;
    box-sizing: border-box;
  }

  .results-container {
    padding: 1rem 0.5rem;
    margin: 0.5rem;
    width: calc(100% - 1rem);
  }

  /* Fix for upsell CTAs */


  /* Fix for benefits sections */
  .benefits-section {
    margin: 0.5rem !important;
    padding: 1rem !important;
    width: calc(100% - 1rem) !important;
    max-width: none !important;
  }

  /* Responsive styles for new elements */
  .main-content {
    padding: 0 1rem;
  }

  .brief-description {
    margin: 0 auto 1.5rem auto;
    padding: 0;
  }

  .brief-description p {
    font-size: 1rem;
  }

  .learn-more-section {
    margin: 2rem auto 1.5rem auto;
    padding: 0;
  }

  .learn-more-toggle {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .learn-more-inner {
    padding: 1rem;
  }

  .learn-more-inner h3 {
    font-size: 1.1rem;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }

  /* Mobile navigation adjustments - removed padding override */

  /* Fix for export buttons and interactive elements */
  .export-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .export-buttons button {
    width: 100%;
    margin: 0.25rem 0;
  }

  /* Fix for any remaining wide elements */
  .input-feedback-group,
  .format-indicator,
  .char-counter {
    width: 100%;
    max-width: none;
  }

  /* Fix for contenteditable elements */
  #content-input[contenteditable] {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  /* Fix for any tables or wide content */
  table {
    width: 100%;
    table-layout: fixed;
    word-wrap: break-word;
  }

  pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-x: auto;
    max-width: 100%;
  }

  /* Fix for tools-list and form elements */
  .tools-list {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
  }

  .tools-list .input-group {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .tools-list input[type="text"] {
    width: 100%;
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
    padding: 0.75rem 0.5rem;
    margin: 0;
  }

  .tools-list button,
  .tool-btn {
    width: 100%;
    max-width: none;
    margin: 0.5rem 0;
    padding: 0.75rem 1rem;
    box-sizing: border-box;
  }

  #primary-topic {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  #analyze-btn {
    width: 100% !important;
    max-width: none !important;
  }
}
/* Privacy/Terms Page Specific Styling */
.main-content .legal-document {
  max-width: 800px;
  margin: 0 auto;
  padding: 2em 1em;
}

.main-content .legal-document h1 {
  color: #6b46c1;
  margin-bottom: 0.5em;
  font-size: 2.5em;
  line-height: 1.2;
}

.main-content .legal-document h2 {
  color: #374151;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 0.75em;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.25em;
}

.main-content .legal-document h3 {
  color: #4b5563;
  font-size: 1.25em;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.main-content .legal-document p {
  line-height: 1.6;
  margin-bottom: 1em;
  color: #374151;
}

.main-content .legal-document ul {
  margin-bottom: 1em;
  padding-left: 1.5em;
}

.main-content .legal-document li {
  line-height: 1.6;
  margin-bottom: 0.5em;
  color: #374151;
}

.main-content .legal-document strong {
  color: #1f2937;
  font-weight: 600;
}

.main-content .legal-document em {
  color: #6b7280;
  font-style: italic;
}

.main-content .legal-document a {
  color: #6b46c1;
  text-decoration: none;
}

.main-content .legal-document a:hover {
  text-decoration: underline;
}

.footer-credit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #6b7280;
  flex-wrap: wrap;
}

.footer-credit span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-credit a {
  color: #7c3aed;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: #6d28d9;
  text-decoration: underline;
}

.footer-credit span:not(:last-child)::after {
  content: '•';
  margin-left: 1.5rem;
  color: #d1d5db;
}

.legal-notice {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
  padding-top: 1.5rem;
}
