:root {
    --primary-green: #0cad09;
    /* Updated specific green */
    --text-white: #ffffff;
    --font-main: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: #050f05;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    /* Horizontally center */
    align-items: flex-start;
    /* Vertically top alignment */
    padding-top: 5vh;
    /* Move everything up */
    overflow-x: hidden;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.profile-section {
    margin-bottom: 1rem;
    /* Reduced from 1.5rem (~33%) */
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 250px;
    height: auto;
}

.text-section {
    color: var(--text-white);
    width: 100%;
}

.tagline {
    color: #0cad09;
    /* Specific user requested green */
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-align: center;
    white-space: nowrap;
}

.bio-text {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.logo-container {
    display: flex;
    justify-content: center;
    /* Centered as requested */
    margin-top: 1rem;
}

.brand-logo {
    height: 56px;
    /* Reduced by 20% from 70px */
    width: auto;
}

@media (max-width: 900px) {
    .tagline {
        white-space: normal;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .body {
        padding-top: 2rem;
    }

    .text-section {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 1.5rem;
    }

    .profile-image {
        width: 200px;
    }

    .tagline {
        font-size: 1.25rem;
        text-transform: none;
    }

    .bio-text {
        text-align: left;
    }

    .logo-container {
        justify-content: center;
    }
}