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

body {
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header Section */
.header-section {
    width: 100%;
    padding: 0 1rem;
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .header-section {
        padding-top: 2rem;
        padding-bottom: 4rem;
        min-height: auto;
        display: block;
    }
}

@media (min-width: 1024px) {
    .header-section {
        padding-top: 2.5rem;
        padding-bottom: 5rem;
    }
}

.container {
    max-width: 1152px;
    margin: 0 auto;
    text-align: center;
}

.logo {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-family: 'Poppins', sans-serif;
}

@media (min-width: 768px) {
    .logo {
        font-size: 1.375rem;
        margin-bottom: 4rem;
    }
}

.headline {
    font-size: 2.25rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

@media (min-width: 768px) {
    .headline {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .headline {
        font-size: 3.75rem;
    }
}

.highlight {
    background-color: #FF6B35;
    padding: 0.25rem 0.5rem;
    display: inline-block;
}

.subheadline {
    font-size: 1rem;
    color: #000;
    font-weight: 400;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .subheadline {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .subheadline {
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }
}

/* CTA Button */
.cta-button {
    background-color: #FF6B35;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 1rem;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.15), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button:focus {
    outline: 2px solid #FF6B35;
    outline-offset: 2px;
}

@media (min-width: 768px) {
    .cta-button {
        font-size: 1rem;
        padding: 0.875rem 2.25rem;
    }
}

@media (min-width: 1024px) {
    .cta-button {
        font-size: 1.125rem;
        padding: 1rem 2.5rem;
    }
}

/* About Me Section */
.about-section {
    width: 100%;
    padding: 4rem 1rem;
    background-color: #FFFFFF;
}

@media (min-width: 768px) {
    .about-section {
        padding: 5rem 1rem;
    }
}

@media (min-width: 1024px) {
    .about-section {
        padding: 6rem 1rem;
    }
}

.about-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .about-label {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .about-title {
        font-size: 2.75rem;
        margin-bottom: 3.5rem;
    }
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .about-content {
        text-align: left;
    }
}

.about-paragraph {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-paragraph:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .about-paragraph {
        font-size: 1.125rem;
        margin-bottom: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .about-paragraph {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
}

/* What I Help With Section */
.help-section {
    width: 100%;
    padding: 4rem 1rem;
    background-color: #FFFFFF;
}

@media (min-width: 768px) {
    .help-section {
        padding: 5rem 1rem;
    }
}

@media (min-width: 1024px) {
    .help-section {
        padding: 6rem 1rem;
    }
}

.help-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .help-label {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.help-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
}

@media (min-width: 768px) {
    .help-title {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .help-title {
        font-size: 2.75rem;
        margin-bottom: 2.5rem;
    }
}

.help-intro {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .help-intro {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .help-intro {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }
}

.help-list {
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    text-align: left;
}

.help-item {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    position: relative;
}

.help-item:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-size: 1.25rem;
    line-height: 1.4;
}

.help-item:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .help-item {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
        padding-left: 2rem;
    }
}

@media (min-width: 1024px) {
    .help-item {
        font-size: 1.25rem;
        margin-bottom: 1.75rem;
    }
}

/* How I Work Section */
.work-section {
    width: 100%;
    padding: 4rem 1rem;
    background-color: #FFFFFF;
}

@media (min-width: 768px) {
    .work-section {
        padding: 5rem 1rem;
    }
}

@media (min-width: 1024px) {
    .work-section {
        padding: 6rem 1rem;
    }
}

.work-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .work-label {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.work-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 2.5rem;
    line-height: 1.3;
    text-align: center;
}

@media (min-width: 768px) {
    .work-title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .work-title {
        font-size: 2.75rem;
        margin-bottom: 3.5rem;
    }
}

.work-list {
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2.5rem;
}

.work-item {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    position: relative;
}

.work-item:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-size: 1.25rem;
    line-height: 1.4;
}

.work-item:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .work-item {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
        padding-left: 2rem;
    }
}

@media (min-width: 1024px) {
    .work-item {
        font-size: 1.25rem;
        margin-bottom: 1.75rem;
    }
}

.work-paragraph {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    line-height: 1.7;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .work-paragraph {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .work-paragraph {
        font-size: 1.25rem;
    }
}

/* Work With Me Section */
.work-with-me-section {
    width: 100%;
    padding: 4rem 1rem;
    background-color: #FFFFFF;
}

@media (min-width: 768px) {
    .work-with-me-section {
        padding: 5rem 1rem;
    }
}

@media (min-width: 1024px) {
    .work-with-me-section {
        padding: 6rem 1rem;
    }
}

.work-with-me-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .work-with-me-label {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.work-with-me-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 2.5rem;
    line-height: 1.3;
    text-align: center;
}

@media (min-width: 768px) {
    .work-with-me-title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .work-with-me-title {
        font-size: 2.75rem;
        margin-bottom: 3.5rem;
    }
}

.work-with-me-paragraph {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    line-height: 1.7;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

.work-with-me-paragraph:last-of-type {
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .work-with-me-paragraph {
        font-size: 1.125rem;
        margin-bottom: 1.75rem;
    }
    
    .work-with-me-paragraph:last-of-type {
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .work-with-me-paragraph {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .work-with-me-paragraph:last-of-type {
        margin-bottom: 3.5rem;
    }
}

.work-with-me-link {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: opacity 0.3s ease;
}

.work-with-me-link:hover {
    opacity: 0.7;
}

@media (min-width: 768px) {
    .work-with-me-link {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .work-with-me-link {
        font-size: 1.25rem;
    }
}

/* Footer Section */
.footer {
    width: 100%;
    background-color: #1a1a1a;
    padding: 3rem 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1152px;
    margin: 0 auto;
    text-align: center;
}

.footer-name {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .footer-name {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
}

.footer-tags {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .footer-tags {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-contact {
        margin-bottom: 2rem;
    }
}

.footer-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-email:hover {
    opacity: 0.8;
}

.email-icon {
    width: 20px;
    height: 20px;
    color: inherit;
}

@media (min-width: 768px) {
    .email-icon {
        width: 22px;
        height: 22px;
    }
}

.footer-separator {
    color: #FFFFFF;
    font-size: 0.875rem;
    margin: 0 0.25rem;
}

@media (min-width: 768px) {
    .footer-separator {
        font-size: 1rem;
        margin: 0 0.5rem;
    }
}

.footer-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-instagram:hover {
    opacity: 0.8;
}

.instagram-icon {
    width: 20px;
    height: 20px;
    color: inherit;
}

@media (min-width: 768px) {
    .instagram-icon {
        width: 22px;
        height: 22px;
    }
}

.footer-youtube {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-youtube:hover {
    opacity: 0.8;
}

.youtube-icon {
    width: 20px;
    height: 20px;
    color: inherit;
}

@media (min-width: 768px) {
    .youtube-icon {
        width: 22px;
        height: 22px;
    }
}

.footer-tagline {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    font-style: italic;
}

@media (min-width: 768px) {
    .footer-tagline {
        font-size: 1rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: #6B7280;
    border: none;
    border-radius: 0.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    z-index: 50;
}

.scroll-to-top:hover {
    background-color: #4B5563;
}

.scroll-to-top.visible {
    display: flex;
}

.arrow-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #FFFFFF;
}

.scroll-to-top:focus {
    outline: 2px solid #6B7280;
    outline-offset: 2px;
}


