body {
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.logo-container {
    margin: 1.5rem 2rem 1rem;
    text-align: left;
}

.newsletter-banner {
    max-width: 330px;
    height: auto;
    display: block;
    margin: 0 0 1.5rem -40px;
}

h1 {
    font-size: 3rem;
    color: #333;
    font-family: 'Open Sans', sans-serif;
    margin-top: 50px;
}

h1 .thin {
    font-weight: 400;
}

h1 .bold {
    font-weight: 700;
}

/* Subscribe Section */
.subscribe-section {
    padding: 0 2rem 1.5rem;
}

.form-control {
    padding: 0.8rem;
    font-size: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
}

.subscriber-count {
    color: #666;
    font-size: 1.1rem;
    margin-top: 0;
}

.benefits-header {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    margin-bottom: 1rem;
    padding-left: 0;
    list-style: none;
}

/* Social Icons */
.social-icons {
    margin-top: 2rem;
}

.social-icon {
    font-size: 1.5rem;
    color: #333;
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #007bff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column-reverse;
    }

    .subscribe-section {
        padding: 1rem;
    }

    h1 {
        font-size: 2.2rem;  /* Increased by 10% from 2rem */
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .social-icon {
        margin: 0 0.5rem;
    }
    
    .copyright {
        font-size: 0.9rem;
    }

    .logo-container {
        text-align: left;
    }

    .newsletter-banner {
        margin: 0 0 1.5rem;
    }

    .image-container {
        margin-top: 2rem;
        margin-bottom: 2rem;
        z-index: 0;
    }
    
    .memecoin-image {
        max-width: 100%;
        margin-left: 0;
        display: block;
    }
}
.benefits-list li {
    font-size: 1rem;
}

.benefits-list li > span {
    font-size: 1.1em; /* 10% larger than parent */
}

/* Image Container Styles */
.image-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    position: relative;
    margin-top: -15rem;
    z-index: 0;
}

.memecoin-image {
    max-width: 156%;
    height: auto;
    display: block;
    margin-left: -28%;
}

/* Ensure all content stays above the image */
.logo-container, 
.subscribe-section,
header {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .image-container {
        margin: 2rem 0;
        position: static;
    }
    
    .memecoin-image {
        max-width: 100%;
        margin-left: 0;
        display: block;
    }

    .container {
        overflow-x: hidden;
        overflow-y: auto;
        min-height: 100vh;
    }

    footer {
        margin-top: 2rem;
        position: relative;
    }
}