/* ==========================================
   RESET & BASE STYLES
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --black: #000000;
    --white: #FFFFFF;
    --gray: #888888;
    --neon-cyan: #00FFFF;
    --neon-lime: #CCFF00;
    --neon-pink: #FF00FF;

    /* Typography */
    --font-main: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* Spacing */
    --border-thick: 4px;
    --border-mega: 8px;
    --shadow-offset: 8px;
}

body {
    font-family: var(--font-main);
    background: var(--black);
    color: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.nav {
    background: var(--black);
    border-bottom: var(--border-thick) solid var(--white);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.accent {
    background: var(--neon-cyan);
    color: var(--black);
    padding: 4px 12px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    padding-bottom: 4px;
    transition: border-color 0.2s;
}

.nav-link:hover {
    border-color: var(--neon-lime);
}

.nav-cta {
    background: var(--neon-lime);
    color: var(--black);
    padding: 12px 32px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: var(--font-main);
    letter-spacing: 1px;
    display: inline-block;
}

.nav-cta:hover {
    box-shadow: 0 0 40px rgba(204, 255, 0, 0.8);
    transform: translate(-3px, -3px);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    padding: 80px 0 120px;
    position: relative;
}

.hero-content {
    border: var(--border-mega) solid var(--white);
    padding: 80px 60px;
    position: relative;
    background: var(--black);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: var(--shadow-offset);
    left: var(--shadow-offset);
    right: calc(-1 * var(--shadow-offset));
    bottom: calc(-1 * var(--shadow-offset));
    background: var(--neon-cyan);
    z-index: -1;
}

.hero-badge {
    display: inline-block;
    background: var(--neon-pink);
    color: var(--white);
    padding: 8px 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
}

.hero-title {
    font-size: 96px;
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -4px;
    margin-bottom: 40px;
}

.hero-highlight {
    background: var(--neon-lime);
    color: var(--black);
    padding: 0 24px;
    box-shadow: 0 0 50px rgba(204, 255, 0, 0.8);
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 60px;
    max-width: 900px;
    border-left: 6px solid var(--neon-pink);
    padding-left: 30px;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 0;
    margin-bottom: 80px;
}

.btn-primary {
    background: var(--neon-cyan);
    color: var(--black);
    padding: 24px 48px;
    border: var(--border-thick) solid var(--neon-cyan);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-main);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    box-shadow: 0 0 60px rgba(0, 255, 255, 1);
    transform: translate(-4px, -4px);
}

.btn-secondary {
    background: var(--black);
    color: var(--white);
    padding: 24px 48px;
    border: var(--border-thick) solid var(--white);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-main);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.hero-stats {
    display: flex;
    gap: 60px;
    padding-top: 40px;
    border-top: var(--border-thick) solid var(--white);
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    font-weight: 600;
}

/* ==========================================
   SECTION STYLES
   ========================================== */

.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

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

.section-title {
    font-size: 72px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -3px;
    line-height: 0.9;
    margin-bottom: 24px;
}

.section-title-highlight {
    background: var(--neon-lime);
    color: var(--black);
    padding: 0 20px;
    box-shadow: 0 0 40px rgba(204, 255, 0, 0.6);
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray);
    max-width: 700px;
}

.text-center .section-subtitle {
    margin: 0 auto;
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: var(--border-thick) solid var(--white);
}

.benefit-card {
    padding: 40px;
    border: 2px solid var(--white);
    background: var(--black);
    position: relative;
    transition: all 0.3s;
}

.benefit-card:hover {
    background: var(--white);
    color: var(--black);
    z-index: 10;
    transform: translate(-4px, -4px);
}

.benefit-card:hover .benefit-icon {
    background: var(--black);
    color: var(--neon-cyan);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--neon-cyan);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.benefit-title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.benefit-description {
    font-size: 16px;
    line-height: 1.6;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.process-step {
    border: var(--border-thick) solid var(--white);
    padding: 40px 30px;
    position: relative;
    background: var(--black);
    transition: all 0.3s;
}

.process-step:hover {
    background: var(--neon-pink);
    color: var(--black);
    transform: translateY(-8px);
    z-index: 10;
}

.process-step:hover .process-number {
    background: var(--black);
    color: var(--neon-pink);
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--neon-pink);
    color: var(--white);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
    transition: all 0.3s;
}

.process-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.process-description {
    font-size: 14px;
    line-height: 1.5;
}

.process-duration {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   PRICING SECTION
   ========================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.pricing-card {
    border: var(--border-thick) solid var(--white);
    padding: 50px 40px;
    background: var(--black);
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-12px);
    z-index: 10;
}

.pricing-card.featured {
    background: var(--neon-cyan);
    color: var(--black);
    border-width: var(--border-mega);
    z-index: 5;
}

.pricing-card.featured:hover {
    box-shadow: 0 0 80px rgba(0, 255, 255, 0.8);
}

.pricing-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--neon-pink);
    color: var(--white);
    padding: 8px 24px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
}

.pricing-name {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.pricing-price {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray);
}

.pricing-currency-small {
    font-size: 32px;
    font-weight: 600;
    color: var(--gray);
    opacity: 0.7;
}

.pricing-card.featured .pricing-currency {
    color: var(--black);
    opacity: 0.6;
}

.pricing-card.featured .pricing-currency-small {
    color: var(--black);
    opacity: 0.5;
}

.pricing-description {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 3px solid;
    font-size: 16px;
}

.pricing-features {
    margin-bottom: 40px;
}

.pricing-feature {
    font-size: 16px;
    margin-bottom: 16px;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
}

.pricing-feature::before {
    content: '■';
    position: absolute;
    left: 0;
    font-size: 20px;
    font-weight: 700;
}

.pricing-card.featured .pricing-feature::before {
    color: var(--neon-pink);
}

.pricing-cta {
    width: 100%;
    padding: 20px;
    background: var(--white);
    color: var(--black);
    border: var(--border-thick) solid var(--white);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-main);
    text-decoration: none;
    display: block;
    text-align: center;
}

.pricing-cta:hover {
    background: var(--black);
    color: var(--white);
}

.pricing-card.featured .pricing-cta {
    background: var(--black);
    color: var(--neon-cyan);
    border-color: var(--black);
}

.pricing-card.featured .pricing-cta:hover {
    background: var(--neon-pink);
    color: var(--white);
    border-color: var(--neon-pink);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.6);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-wrapper {
    border: var(--border-mega) solid var(--white);
    padding: 80px 60px;
    position: relative;
    background: var(--black);
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: var(--shadow-offset);
    left: var(--shadow-offset);
    right: calc(-1 * var(--shadow-offset));
    bottom: calc(-1 * var(--shadow-offset));
    background: var(--neon-lime);
    z-index: -1;
}

.contact-title {
    font-size: 64px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.contact-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 800px;
    color: var(--gray);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-bottom: 60px;
}

.contact-cta-primary,
.contact-cta-secondary {
    border: var(--border-thick) solid var(--white);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.contact-cta-primary {
    background: var(--neon-cyan);
    color: var(--black);
}

.contact-cta-primary:hover {
    box-shadow: 0 0 60px rgba(0, 255, 255, 1);
    transform: translate(-4px, -4px);
}

.contact-cta-secondary {
    background: var(--black);
    color: var(--white);
}

.contact-cta-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.cta-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    opacity: 0.7;
}

.cta-text {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-mono);
}

.contact-alternative {
    text-align: center;
    padding-top: 40px;
    border-top: var(--border-thick) solid var(--white);
}

.contact-alternative-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.linkedin-link {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.2s;
}

.linkedin-link:hover {
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    border-top: var(--border-thick) solid var(--white);
    padding: 60px 0 40px;
    margin-top: 120px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
    color: var(--white);
}

.footer-link:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid var(--white);
    font-size: 14px;
    color: var(--gray);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1200px) {
    .hero-title { font-size: 72px; }
    .section-title { font-size: 56px; }
    .contact-title { font-size: 48px; }
}

@media (max-width: 968px) {
    .container { padding: 0 24px; }

    .nav-links { display: none; }

    .hero-title {
        font-size: 56px;
        letter-spacing: -2px;
    }

    .hero-content {
        padding: 60px 40px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-title { font-size: 36px; }
}

@media (max-width: 640px) {
    .hero-title { font-size: 42px; }

    .hero-subtitle { font-size: 18px; }

    .hero-cta-group {
        flex-direction: column;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

/* ==========================================
   EXPERIENCE BAR
   ========================================== */

.experience-bar {
    background: var(--black);
    border-top: var(--border-thick) solid var(--white);
    border-bottom: var(--border-thick) solid var(--white);
    padding: 30px 0;
}

.experience-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.experience-number {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.experience-label {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
}

.experience-tech {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.experience-divider {
    font-size: 24px;
    color: var(--neon-lime);
    opacity: 0.5;
}

/* ==========================================
   CONTACT BIO
   ========================================== */

.contact-bio {
    font-size: 18px;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 24px;
    max-width: 600px;
    opacity: 0.9;
}

/* ==========================================
   PROVEN APPROACH (CASE STUDY)
   ========================================== */

.proven-approach {
    background: var(--black);
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 60px;
}

.case-study-card {
    border: var(--border-thick) solid var(--white);
    padding: 40px 30px;
    background: var(--black);
    position: relative;
    transition: all 0.3s;
}

.case-study-card.highlight {
    background: var(--white);
    color: var(--black);
}

.case-study-card:hover {
    transform: translateY(-8px);
    z-index: 10;
}

.case-study-card.highlight:hover {
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

.case-study-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--neon-cyan);
    margin-bottom: 16px;
}

.case-study-card.highlight .case-study-label {
    color: var(--black);
}

.case-study-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.case-study-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-study-list li {
    font-size: 15px;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.case-study-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--neon-lime);
    font-weight: 700;
}

.case-study-card.highlight .case-study-list li:before {
    color: var(--black);
}

/* ==========================================
   WHY TRUST ME SECTION
   ========================================== */

.why-trust {
    background: var(--black);
    border-top: var(--border-mega) solid var(--white);
    border-bottom: var(--border-mega) solid var(--white);
}

.why-trust-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-trust-title {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 60px;
    text-align: center;
}

.why-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 20px;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.trust-item:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.05);
    transform: translateX(4px);
}

.trust-icon {
    font-size: 24px;
    font-weight: 700;
    color: var(--neon-lime);
    flex-shrink: 0;
    margin-top: 2px;
}

.trust-text {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================
   TECH STACK SECTION
   ========================================== */

.tech-stack {
    background: var(--black);
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.tech-category {
    text-align: center;
}

.tech-category-title {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--neon-pink);
    margin-bottom: 24px;
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tech-item {
    font-size: 15px;
    font-weight: 600;
    padding: 12px 16px;
    border: 2px solid var(--white);
    background: var(--black);
    transition: all 0.3s;
    cursor: default;
}

.tech-item:hover {
    background: var(--white);
    color: var(--black);
    transform: translateX(4px);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--neon-cyan);
}

/* ==========================================
   LINKEDIN INTEGRATION (FOOTER)
   ========================================== */

.footer-linkedin {
    margin: 40px 0;
    padding: 40px 0;
    border-top: var(--border-thick) solid var(--white);
    border-bottom: var(--border-thick) solid var(--white);
}

.linkedin-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    border: var(--border-thick) solid var(--white);
    background: var(--black);
    transition: all 0.3s;
    text-decoration: none;
    color: var(--white);
}

.linkedin-profile:hover {
    background: var(--white);
    color: var(--black);
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--neon-cyan);
}

.linkedin-icon {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid currentColor;
    flex-shrink: 0;
}

.linkedin-info {
    flex: 1;
}

.linkedin-name {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.linkedin-title {
    font-family: var(--font-mono);
    font-size: 13px;
    opacity: 0.7;
}

.linkedin-arrow {
    font-size: 28px;
    font-weight: 700;
    opacity: 0.5;
    transition: all 0.3s;
}

.linkedin-profile:hover .linkedin-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* ==========================================
   RESPONSIVE - NEW SECTIONS
   ========================================== */

@media (max-width: 968px) {
    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .why-trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .experience-content {
        gap: 20px;
    }

    .experience-number {
        font-size: 24px;
    }

    .experience-label {
        font-size: 11px;
    }
}

@media (max-width: 640px) {
    .experience-content {
        flex-direction: column;
        gap: 16px;
    }

    .experience-divider {
        display: none;
    }

    .why-trust-title {
        font-size: 28px;
    }

    .tech-stack-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .linkedin-profile {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .linkedin-arrow {
        transform: rotate(90deg);
    }

    .contact-bio {
        font-size: 16px;
    }
}
