:root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --accent-color: #dc2626;
    /* Hapoel Red roughly */
    --accent-glow: rgba(220, 38, 38, 0.4);
    --secondary-bg: #111111;
    --card-bg: #1a1a1a;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline:hover {
    border-color: white;
    background: white;
    color: black;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -1px;
}

.logo .highlight {
    color: var(--accent-color);
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: white;
}

.nav-link.btn-primary {
    color: white;
    padding: 0.6rem 1.2rem;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 4rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('hero-bg-generated.png');
    /* Will generate this */
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.hero-subtitle {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(235, 94, 40, 0.3);
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient {
    color: var(--accent-color);
    font-weight: 600;
}

.hero-bio {
    font-size: 1.5rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: white;
}

/* Sections */
.section {
    padding: 8rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 500px;
    margin: 2rem auto 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
}



.stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Methodology */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.method-card {
    padding: 2.5rem;
    background: var(--card-bg);
    border-radius: 8px;
    transition: var(--transition);
}

.method-card:hover {
    transform: translateY(-10px);
    background: #222;
}

.method-icon {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.method-card p {
    color: rgba(255, 255, 255, 0.6);
}

/* Gallery Preview */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    background: #222;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img,
.gallery-item div {
    /* div fallback for placeholders */
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover div {
    transform: scale(1.05);
}

.gallery-actions {
    text-align: center;
}

/* Gallery Overlay */
.gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 9000;
    /* Super high z-index */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    flex-direction: column;
}

.gallery-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* New Scroll Container */
.gallery-scroll-container {
    flex: 1;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 9001;
    /* Content container */
}

/* Ensure close button is hidden when overlay isn't active to prevent ghosts */
.gallery-overlay:not(.active) .close-btn {
    display: none;
}

.close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--text-color);
    /* Use theme text color */
    font-size: 3rem;
    cursor: pointer;
    z-index: 9999;
    /* Highest z-index */
    transition: transform 0.3s ease, color 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
    color: var(--accent-color);
}

.gallery-overlay-content {
    padding: 6rem 0 4rem;
}

.overlay-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-masonry .gallery-item {
    margin-bottom: 0;
    /* Grid handles gap */
    aspect-ratio: 1 / 1;
    /* Fixed square ratio for stability */
    width: 100%;
    /* Ensure content fits */
}

/* Optional: if you still want portrait/landscape variety without masonry shifting, 
   you would need complex grid-row/col spans, but basic square grid is safest for "scrolling feel". */

@media (max-width: 768px) {
    .gallery-masonry {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 480px) {
    .gallery-masonry {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 9500;
    /* Higher than gallery overlay (9000) */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Ensure ALL close buttons are hidden when their parent is not active */
.gallery-overlay:not(.active) .close-btn,
.lightbox:not(.active) .close-btn {
    display: none;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    z-index: 9501;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 9999;
    /* Ensure it's on top of everything */
}

/* Contact */
.contact-section {
    background: linear-gradient(to top, #111, transparent);
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.big-btn {
    margin-top: 2rem;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
}

.footer-links a {
    color: #666;
    margin-left: 1.5rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cursor Customization (Optional) */
.cursor-dot,
.cursor-dot-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
}

.cursor-dot-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Commercial & Brand Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.portfolio-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(235, 94, 40, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
}

.portfolio-card:hover::before {
    opacity: 1;
}

.card-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
}

.portfolio-card:hover .card-number {
    color: var(--accent-color);
}

.portfolio-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    z-index: 1;
}

.portfolio-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    z-index: 1;
}

.card-arrow {
    align-self: flex-end;
    font-size: 1.5rem;
    color: var(--accent-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
    margin-top: 1rem;
}

.portfolio-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Strategy Modal */
.strategy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    /* Darker opacity for reading */
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
}

.strategy-modal.active {
    opacity: 1;
    pointer-events: all;
}

.strategy-modal-content {
    background: #1a1a1a;
    /* Slight contrast from bg */
    width: 90%;
    max-width: 700px;
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    max-height: 90vh;
    /* Prevent overflow */
    overflow-y: auto;
}

.strategy-modal-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.strategy-modal-content #modal-subtitle {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.modal-body-text ul {
    list-style: none;
    padding: 0;
}

.modal-body-text li {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--accent-color);
}

.modal-body-text strong {
    color: white;
    display: block;
    margin-bottom: 0.3rem;
}

.modal-body-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =========================================
   Mobile Responsiveness & Navigation
   ========================================= */

/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu Active State (Hamburger Animation) */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Responsive Media Queries */

@media (max-width: 1024px) {
    :root {
        --container-width: 90%;
    }

    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {

    /* Global Constraints */
    html,
    body {
        width: 100%;
        overflow-x: hidden;
        position: relative;
    }

    .container {
        width: 100%;
        padding: 0 1.5rem;
        overflow: hidden;
        /* Prevent child overflow */
    }

    /* Global Adjustments */
    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.2rem;
        word-break: break-word;
    }

    /* Navigation - Mobile Overlay */
    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 0;
        width: 100%;
    }

    .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        display: block;
    }

    /* Hero Section */
    .hero {
        padding-top: 6rem;
        text-align: center;
        height: auto;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 3rem;
        /* Reduced from 3.5rem */
        line-height: 1.1;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero-bio {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        /* Stack stats too */
        gap: 1rem;
    }

    /* Portfolio Section */
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .portfolio-card {
        background: var(--card-bg);
        padding: 2rem;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        /* Increased visibility */
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 320px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        /* Added shadow for depth */
    }

    /* ... exist ... */



    .portfolio-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom right, rgba(235, 94, 40, 0.1), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .portfolio-card:hover {
        transform: translateY(-8px);
        border-color: var(--accent-color);
    }

    .portfolio-card:hover::before {
        opacity: 1;
    }

    .card-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.1);
        margin-bottom: 1.5rem;
        transition: color 0.4s ease;
    }

    .portfolio-card:hover .card-number {
        color: var(--accent-color);
    }

    .portfolio-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        line-height: 1.3;
        z-index: 1;
    }

    .portfolio-card p {
        font-size: 1rem;
        color: var(--text-secondary);
        z-index: 1;
    }

    .card-arrow {
        align-self: flex-end;
        font-size: 1.5rem;
        color: var(--accent-color);
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.4s ease;
        margin-top: 1rem;
    }

    .portfolio-card:hover .card-arrow {
        opacity: 1;
        transform: translateX(0);
    }

    /* Modal Styles */
    .strategy-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        z-index: 10000;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .strategy-modal.active {
        opacity: 1;
        visibility: visible;
    }

    .strategy-modal-content {
        background: #111;
        width: 90%;
        max-width: 600px;
        padding: 3rem;
        border-radius: 12px;
        border: 1px solid var(--accent-color);
        position: relative;
        transform: translateY(20px);
        transition: transform 0.3s ease;
        max-height: 90vh;
        overflow-y: auto;
    }

    .strategy-modal.active .strategy-modal-content {
        transform: translateY(0);
    }

    .strategy-modal-content h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        color: white;
    }

    .strategy-modal-content #modal-subtitle {
        font-size: 1.1rem;
        color: var(--accent-color);
        margin-bottom: 2rem;
        font-style: italic;
    }

    .modal-body-text ul {
        list-style: none;
        padding: 0;
    }

    .modal-body-text li {
        margin-bottom: 1.5rem;
        padding-left: 1rem;
        border-left: 2px solid var(--accent-color);
    }

    .modal-body-text strong {
        color: white;
        display: block;
        margin-bottom: 0.3rem;
    }

    .modal-body-text {
        color: var(--text-secondary);
        line-height: 1.7;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        /* Stack links for touch targets */
        gap: 1rem;
    }

    .footer-links a {
        margin: 0;
    }
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    /* Ensure no padding causing overflow */
    .container {
        padding: 0 1.25rem;
    }
}

/* Desktop Overrides to fix layout regressions */
@media (min-width: 769px) {
    .hero-top {
        flex-direction: row !important;
        justify-content: center;
        gap: 3rem;
    }

    .hero-title {
        margin-bottom: 0;
        text-align: left;
    }

    .profile-img {
        margin-bottom: 0;
    }



    .hero-content {
        align-items: flex-start !important;
        /* Align text to start on desktop */
        text-align: left !important;
    }

    .hero-bio {
        margin-left: 0 !important;
        text-align: left !important;
    }
}