index styles
<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial Black', Arial, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
            min-height: 100vh;
        }

        /* Header and Navigation */
        header {
            background: linear-gradient(135deg, #7cb342 0%, #8bc34a 100%);
            box-shadow: 0 4px 20px rgba(124, 179, 66, 0.4);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 4px solid #1a1a1a;
        }

        nav {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 20px;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo-nav {
            font-size: 1.8rem;
            font-weight: 900;
            color: #1a1a1a;
            text-decoration: none;
            display: flex;
            align-items: center;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1rem;
        }

        .nav-links a {
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 800;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            border: 3px solid transparent;
        }

        .nav-links a:hover,
        .nav-links a.active {
            background: #1a1a1a;
            color: white;
            border: 3px solid #1a1a1a;
            transform: translateY(-2px);
        }

        /* Main Content */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 20px;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 4rem 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
            border: 4px solid #1a1a1a;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, #7cb342, #8bc34a, #4caf50);
        }

        .logo-container {
            margin-bottom: 2rem;
            position: relative;
        }

        .logo {
            width: 280px;
            height: 280px;
            background: white;
            border-radius: 50%;
            margin: 0 auto 2rem;
            box-shadow: 0 12px 40px rgba(124, 179, 66, 0.4);
            border: 6px solid #1a1a1a;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .logo img {
            width: 240px;
            height: 240px;
            object-fit: contain;
            border-radius: 50%;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(5deg); }
        }

        .tagline {
            font-size: 1.4rem;
            color: #4a4a4a;
            margin-bottom: 2.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .cta-button {
            display: inline-block;
            background: #1a1a1a;
            color: white;
            padding: 1.2rem 2.5rem;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 800;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            border: 4px solid #1a1a1a;
        }

        .cta-button:hover {
            background: white;
            color: #1a1a1a;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        /* Features Section */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            border: 4px solid #1a1a1a;
            position: relative;
        }

        .feature-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #7cb342, #8bc34a);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .feature-card h3 {
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-size: 1.4rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .feature-card p {
            color: #4a4a4a;
            line-height: 1.7;
            font-weight: 500;
        }

        /* Mailing List Section */
        .mailing-list {
            background: #1a1a1a;
            color: white;
            padding: 4rem 3rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
            border: 4px solid #7cb342;
            position: relative;
            margin-bottom: 3rem;
        }

        .mailing-list::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, #7cb342, #8bc34a, #4caf50);
        }

        .mailing-list h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #7cb342;
        }

        .mailing-list p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            font-weight: 500;
        }

        /* Mailchimp Form Styling */
        #mc_embed_signup {
            background: transparent !important;
            width: 100% !important;
            font-family: inherit !important;
        }

        #mc_embed_signup form {
            padding: 0 !important;
        }

        #mc_embed_signup .mc-field-group {
            margin-bottom: 1.5rem;
        }

        #mc_embed_signup input[type="email"] {
            width: 100%;
            max-width: 400px;
            padding: 1.2rem;
            border: 3px solid #4a4a4a;
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            font-weight: 600;
            background: white;
            color: #1a1a1a;
            margin: 0 auto;
            display: block;
        }

        #mc_embed_signup input[type="email"]:focus {
            border-color: #7cb342;
        }

        #mc_embed_signup .input-group {
            margin: 1.5rem 0;
        }

        #mc_embed_signup .input-group strong {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            display: block;
            margin-bottom: 1rem;
        }

        #mc_embed_signup .checkbox-group {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        #mc_embed_signup .checkbox-group label {
            color: white;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            font-size: 1rem;
        }

        #mc_embed_signup .checkbox-group input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: #7cb342;
        }

        #mc_embed_signup .button {
            background: #7cb342 !important;
            color: #1a1a1a !important;
            border: 3px solid #7cb342 !important;
            padding: 1.2rem 2rem !important;
            border-radius: 8px !important;
            font-weight: 800 !important;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem !important;
            margin-top: 1rem;
        }

        #mc_embed_signup .button:hover {
            background: white !important;
            color: #1a1a1a !important;
            border-color: white !important;
            transform: translateY(-2px);
        }

        #mc_embed_signup .response {
            color: white;
            text-align: center;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 8px;
        }

        #mce-error-response {
            background-color: rgba(220, 53, 69, 0.2);
            border: 2px solid #dc3545;
        }

        #mce-success-response {
            background-color: rgba(40, 167, 69, 0.2);
            border: 2px solid #28a745;
        }

        /* Social Media Section */
        .social-section {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 4px solid #1a1a1a;
            position: relative;
            transition: transform 0.3s ease;
            margin-bottom: 3rem;
        }

        .social-section:hover {
            transform: translateY(-5px);
        }

        .social-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #4caf50, #66bb6a);
        }

        .social-section h2 {
            font-size: 2.2rem;
            font-weight: 900;
            color: #1a1a1a;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
        }

        .social-section .subtitle {
            font-size: 1.1rem;
            color: #4a4a4a;
            font-weight: 600;
            text-align: center;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .social-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .social-item {
            padding: 2rem;
            background: #f8f8f8;
            border-radius: 12px;
            border: 3px solid #7cb342;
            transition: all 0.3s ease;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-item:hover {
            transform: translateY(-3px);
            border-color: #1a1a1a;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .social-item a {
            color: #7cb342;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .social-item a:hover {
            color: #1a1a1a;
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            text-align: center;
            padding: 2.5rem;
            margin-top: 3rem;
            border-top: 6px solid #7cb342;
        }

        footer p {
            font-weight: 600;
            letter-spacing: 1px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-links {
                gap: 0.5rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .logo {
                width: 220px;
                height: 220px;
            }

            .logo img {
                width: 180px;
                height: 180px;
            }

            .mailing-list h2 {
                font-size: 2.2rem;
            }

            .hero {
                padding: 3rem 1.5rem;
            }

            .feature-card {
                padding: 2rem;
            }

            #mc_embed_signup .checkbox-group {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }

            #mc_embed_signup input[type="email"] {
                max-width: 100%;
            }

            .social-section {
                padding: 2rem;
            }

            .social-section h2 {
                font-size: 1.8rem;
            }

            .social-links {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .logo {
                width: 180px;
                height: 180px;
            }

            .logo img {
                width: 150px;
                height: 150px;
            }

            .mailing-list {
                padding: 3rem 2rem;
            }

            .social-section {
                padding: 1.5rem;
            }

            .social-item {
                padding: 1.5rem;
            }
        }
        
</style>