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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: white;
            overflow-x: hidden;
            height: 100vh;
            display: flex;
            flex-direction: column;
            /* padding: 20px; */
        }

        .main{
            flex: 1;
        }

        .hero {
            min-height: 100vh;
             display: flex;
             flex-direction: column;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 2rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.1;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(1deg); }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 80px;
            display: flex;
            flex-direction: column;
            gap: 4rem;
            align-items: top;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff6b6b, #feca57, #48cae4);
            background-size: 200% 200%;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient 3s ease infinite;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .calculator-card { 
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .calculator-card:hover {
            box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
        }

       
        .calculator-header {
            background:#1e293b;
            color: white;
            padding: 30px;
            text-align: center;
        }

        .calculator-header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .calculator-header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

         .main-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .input-section {
            padding: 40px;
            background: #f8f9ff;
        }

        .results-section {
            padding: 40px;
            background: white;
        }

        .form-group {
            margin-bottom: 25px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
            font-size: 0.95rem;
        }

        input, select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e1e5e9;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        input:focus, select:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .calculate-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .calculate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .results-container {
            display: none;
        }

        .results-container.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .result-card {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 20px;
            text-align: center;
        }

        .result-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .result-card .value {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .result-card .unit {
            font-size: 1rem;
            opacity: 0.8;
        }

        .macro-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin: 20px 0;
        }

        .macro-card {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            color: #333;
        }

        .macro-card h4 {
            font-size: 0.9rem;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .macro-card .macro-value {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .macro-card .macro-calories {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        .timeline-section {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            padding: 25px;
            border-radius: 15px;
            margin-top: 20px;
        }

        .timeline-section h3 {
            color: #333;
            margin-bottom: 15px;
            text-align: center;
        }

        .timeline-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
        }

        .timeline-item {
            text-align: center;
            padding: 15px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 10px;
        }

        .timeline-item .period {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 5px;
        }

        .timeline-item .weight {
            font-size: 1.3rem;
            font-weight: bold;
            color: #333;
        }

        .tips-section {
            background: #f8f9ff;
            padding: 25px;
            border-radius: 15px;
            margin-top: 20px;
        }

        .tips-section h3 {
            color: #333;
            margin-bottom: 15px;
            text-align: center;
        }

        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .tip-item {
            background: white;
            padding: 15px;
            border-radius: 10px;
            border-left: 4px solid #667eea;
        }

        .tip-item h4 {
            color: #667eea;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .tip-item p {
            color: #666;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .macro-grid {
                grid-template-columns: 1fr;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .input-section, .results-section {
                padding: 20px;
            }
        }

        .start-btn {
            width: 100%;
            padding: 1.5rem;
            background: linear-gradient(45deg, #48cae4, #0096c7);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0;
            transform: scale(0.8);
        }

        .start-btn.show {
            opacity: 1;
            transform: scale(1);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(72, 202, 228, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(72, 202, 228, 0); }
            100% { box-shadow: 0 0 0 0 rgba(72, 202, 228, 0); }
        }

        .start-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 20px 40px rgba(72, 202, 228, 0.4);
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: floatUp 15s infinite linear;
        }

        @keyframes floatUp {
            0% {
                opacity: 0;
                transform: translateY(100vh) rotate(0deg);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateY(-100px) rotate(360deg);
            }
        }

        
        .hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    margin-top: 30px;
    flex-wrap: wrap;
}

.primary-cta,
.secondary-cta {
    position: relative;
    padding: 24px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 280px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.primary-cta {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
    color: white;
    border: 2px solid transparent;
}

.primary-cta:hover {
    background: linear-gradient(135deg, #ff4500 0%, #e63e00 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.secondary-cta {
    background: white;
    color: #333;
    border: 2px solid #ff6b35;
}

.secondary-cta:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-subtitle {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 6px;
    display: block;
}

/* Active states */
.primary-cta:active,
.secondary-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-cta,
    .secondary-cta {
        width: 100%;
        max-width: 350px;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .primary-cta,
    .secondary-cta {
        padding: 20px 24px;
        font-size: 16px;
        min-height: 80px;
    }
    
    .cta-subtitle {
        font-size: 12px;
    }
}
        .social-proof {
            margin-top: 2rem;
        }

        .proof-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 1.5rem;
            font-weight: 800;
            color: #48cae4;
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Enhanced Start Button */
        .start-btn {
            width: 100%;
            padding: 1.5rem;
            background: linear-gradient(45deg, #48cae4, #0096c7);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0;
            transform: scale(0.8);
            position: relative;
            overflow: hidden;
        }

        .start-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .start-btn:hover::before {
            left: 100%;
        }

        .start-btn.show {
            opacity: 1;
            transform: scale(1);
            animation: pulse 2s infinite;
        }

        .personalized-note {
            display: block;
            font-size: 0.9rem;
            font-weight: 400;
            margin-top: 0.5rem;
            opacity: 0.9;
            text-transform: none;
            letter-spacing: 0.5px;
        } 

        .buy-now-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.4);
}

.buy-now-btn:hover {
    background: linear-gradient(135deg, #ff4500, #e63e00);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.5);
}

/* pricing section */

 .pricing-section {
            padding: 5rem 2rem;
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            opacity: 0.3;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(1deg); }
        }

        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
        }

        @keyframes fadeInUp {
            from { 
                opacity: 0; 
                transform: translateY(30px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

        .pricing-container {
            position: relative;
            z-index: 2;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInUp 0.8s ease;
        }

        .pricing-header h2 {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff6b6b, #feca57, #48cae4);
            background-size: 200% 200%;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient 3s ease infinite;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .pricing-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .pricing-card {
            max-width: 500px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease 0.2s both;
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 107, 107, 0.3);
        }

        .pricing-badge {
            position: absolute;
            top: -5px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #ff6b35, #ff4500);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
            animation: pulse 2s infinite;
        }

        .pricing-card h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #fff;
        }

        .price-container {
            margin: 2rem 0;
            padding: 2rem 0;
            border: 2px solid rgba(255, 107, 107, 0.2);
            border-radius: 16px;
            background: rgba(255, 107, 107, 0.05);
        }

        .price {
            font-size: 4rem;
            font-weight: 900;
            color: #ff6b6b;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .price-note {
            font-size: 1rem;
            opacity: 0.8;
            margin-bottom: 0.5rem;
        }

        .limited-offer {
            font-size: 0.9rem;
            color: #feca57;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .features-list {
            text-align: left;
            margin: 2rem 0;
        }

        .feature {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1rem;
            line-height: 1.5;
        }

        .feature-icon {
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #48cae4, #0096c7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .feature-icon::after {
            content: '✓';
            color: white;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .cta-button {
            width: 100%;
            padding: 1.5rem;
            background: linear-gradient(135deg, #ff6b35, #ff4500);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 1rem;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, #ff4500, #e63e00);
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
        }

        .guarantee {
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(72, 202, 228, 0.1);
            border: 1px solid rgba(72, 202, 228, 0.3);
            border-radius: 12px;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .guarantee-icon {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            display: block;
        }

        @media (max-width: 768px) {
            .pricing-section {
                padding: 3rem 1rem;
            }

            .pricing-header h2 {
                font-size: 2.5rem;
            }

            .pricing-card {
                padding: 2rem;
            }

            .price {
                font-size: 3rem;
            }

            .cta-button {
                padding: 1.25rem;
                font-size: 1.1rem;
            }
        }

        /* Blog CTA Enhancement */
        .blog-cta {
            text-align: center;
            background: rgba(255, 255, 255, 0.05);
            padding: 3rem 2rem;
            border-radius: 20px;
            margin-top: 2rem;
        }

        .blog-cta h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: #feca57;
        }

        .blog-cta p {
            font-size: 1.1rem;
            opacity: 0.8;
            margin-bottom: 2rem;
        }

        .blog-checkout-btn {
            display: inline-block;
            padding: 1.25rem 2.5rem;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            margin-right: 1rem;
            margin-bottom: 1rem;
        }

        .blog-checkout-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
        }

        .view-all-btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: rgba(72, 202, 228, 0.2);
            border: 2px solid #48cae4;
            color: #48cae4;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .view-all-btn:hover {
            background: rgba(72, 202, 228, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(72, 202, 228, 0.3);
        }
        .blog-section {
            padding: 5rem 2rem;
            background: linear-gradient(180deg, #1a1a2e 0%, #0f1419 100%);
            position: relative;
        }

        .blog-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            opacity: 0.3;
        }

        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .blog-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .blog-header h2 {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff6b6b, #feca57, #48cae4);
            background-size: 200% 200%;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient 3s ease infinite;
            margin-bottom: 1rem;
        }

        .blog-meta{
            margin-top: 20px;
            padding: 0 20px;
        }

        .blog-title{
            margin-top: 20px;
             padding: 0 20px;
        }

        .blog-title a{
            text-decoration: none;
        }

        .blog-title:hover{
            text-decoration: underline;
        }

        .blog-title a:visited{
            color: white;
        }

        .blog-header p {
            font-size: 1.2rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .blog-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            margin-top: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .blog-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(254, 202, 87, 0.3);
        }

        .blog-card.featured {
            grid-column: span 2;
            background: rgba(255, 107, 107, 0.1);
            border-color: rgba(255, 107, 107, 0.3);
        }

        .blog-image {
            height: 200px;
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .blog-card.featured .blog-image {
            height: 250px;
        }

        .image-placeholder {
            font-size: 4rem;
            opacity: 0.8;
        }

        .blog-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255, 255, 255, 0.9);
            color: #1a1a2e;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .blog-category {
            background: rgba(72, 202, 228, 0.2);
            color: #48cae4;
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .blog-date {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .blog-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #fff;
            line-height: 1.3;
        }

        .blog-card.featured h3 {
            font-size: 1.5rem;
        }

        .blog-card 
            p  {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .blog-card .excerpt{
            padding: 0 20px;
        }

        .read-more {
            color: #feca57;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            padding: 20px 20px;
        }

        .read-more:hover {
            color: #ff6b6b;
            transform: translateX(5px);
        }

        .read-more span {
            transition: transform 0.3s ease;
        }

        .read-more:hover span {
            transform: translateX(5px);
        }

        .blog-cta {
            text-align: center;
        }

        .view-all-btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: linear-gradient(45deg, #48cae4, #0096c7);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .view-all-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(72, 202, 228, 0.4);
        }

        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 1rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .input-row {
                flex-direction: column;
            }

            .macro-grid {
                grid-template-columns: 1fr;
            }

            .blog-section {
                padding: 3rem 1rem;
            }

            .blog-header h2 {
                font-size: 2rem;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .blog-card.featured {
                grid-column: span 1;
            }

            .blog-card.featured .blog-image {
                height: 200px;
            }

            .blog-card.featured h3 {
                font-size: 1.25rem;
            }
            .buy-now-btn {
        width: 100%;
    }
        }


            .main-content-howTo {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

           .quick-overview {
            background: rgba(254, 202, 87, 0.1);
            border: 1px solid rgba(254, 202, 87, 0.3);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 4rem;
            text-align: center;
        }

        .quick-overview h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #feca57;
            margin-bottom: 1rem;
        }

        .quick-overview p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .overview-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .overview-step {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
        }

        .overview-step .number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #feca57, #ff6b6b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            margin-bottom: 1rem;
            margin: 0 auto 1rem auto;
        }

        .overview-step h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .overview-step p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

         @media (max-width: 768px) {
            /* .hero-content h1 {
                font-size: 2.5rem;
            }

            .main-content {
                padding: 2rem 1rem;
            } */

            .step {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2rem;
            }

            .step:nth-child(even) .step-content {
                order: 1;
            }

            .step:nth-child(even) .step-image {
                order: 2;
            }

            .step h2 {
                font-size: 1.5rem;
            }

            .overview-steps {
                grid-template-columns: 1fr;
            }

            .quick-overview,
            .cta-section {
                padding: 2rem;
            }

            .quick-overview h2,
            .cta-section h2 {
                font-size: 2rem;
            }
        }

        /* 404 */
#four-o-four-heading{
    font-size: 4rem;
    font-weight: 900;
}