
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.8; color: #333; background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); overflow-x: hidden; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        .hero { background: linear-gradient(135deg, #089616 0%, #06d420 100%); color: white; padding: 60px 20px; text-align: center; border-radius: 20px; margin-bottom: 40px; box-shadow: 0 10px 40px rgba(8, 150, 22, 0.3); animation: fadeInDown 1s ease-out; }
        .hero h1 { font-size: 3em; margin-bottom: 20px; animation: slideInLeft 1s ease-out; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); }
        .hero p { font-size: 1.3em; max-width: 800px; margin: 0 auto; animation: slideInRight 1s ease-out; }
        .stat-box { background: rgba(255,255,255,0.2); padding: 20px; border-radius: 15px; margin: 30px 0; display: inline-block; backdrop-filter: blur(10px); animation: pulse 2s infinite; }
        .stat-box .number { font-size: 3em; font-weight: bold; display: block; }
        .content-section { background: white; padding: 40px; margin-bottom: 30px; border-radius: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); animation: fadeInUp 1s ease-out; transition: transform 0.3s ease; }
        .content-section:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(8, 150, 22, 0.2); }
        .content-section h2 { color: #089616; font-size: 2.5em; margin-bottom: 25px; display: flex; align-items: center; gap: 15px; border-bottom: 3px solid #089616; padding-bottom: 15px; }
        .content-section h3 { color: #06d420; font-size: 1.8em; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .icon-box { display: inline-block; width: 60px; height: 60px; background: linear-gradient(135deg, #089616, #06d420); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5em; color: white; animation: rotateIn 1s ease-out; }
        .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin: 30px 0; }
        .benefit-card { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); padding: 30px; border-radius: 15px; text-align: center; transition: all 0.3s ease; border: 2px solid transparent; animation: fadeIn 1s ease-out; }
        .benefit-card:hover { transform: scale(1.05); border-color: #089616; box-shadow: 0 8px 25px rgba(8, 150, 22, 0.3); }
        .benefit-card i { font-size: 3em; color: #089616; margin-bottom: 15px; animation: bounce 2s infinite; }
        .benefit-card h4 { color: #089616; font-size: 1.3em; margin-bottom: 10px; }
        .platform-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin: 30px 0; }
        .platform-card { background: white; border: 3px solid #089616; border-radius: 15px; padding: 25px; text-align: center; transition: all 0.3s ease; animation: fadeInUp 1s ease-out; }
        .platform-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(8, 150, 22, 0.3); background: linear-gradient(135deg, #089616, #06d420); color: white; }
        .platform-card i { font-size: 4em; margin-bottom: 15px; }
        .platform-card.instagram i { color: #E1306C; }
        .platform-card.facebook i { color: #1877F2; }
        .platform-card.tiktok i { color: #000000; }
        .platform-card.youtube i { color: #FF0000; }
        .platform-card.pinterest i { color: #E60023; }
        .platform-card:hover i { color: white; }
        .platform-card h3 { margin-bottom: 10px; }
        .stats-inline { display: inline-block; background: #f8f9fa; padding: 8px 15px; border-radius: 8px; margin: 5px; font-weight: bold; color: #089616; border: 2px solid #089616; }
        .pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 30px 0; }
        .pros, .cons { background: #f8f9fa; padding: 30px; border-radius: 15px; }
        .pros { border-left: 5px solid #089616; }
        .cons { border-left: 5px solid #dc3545; }
        .pros h4, .cons h4 { margin-bottom: 20px; font-size: 1.5em; }
        .pros h4 { color: #089616; }
        .cons h4 { color: #dc3545; }
        .pros ul li, .cons ul li { margin: 12px 0; padding-left: 30px; position: relative; }
        .pros ul li:before { content: "✓"; position: absolute; left: 0; color: #089616; font-weight: bold; font-size: 1.3em; }
        .cons ul li:before { content: "✗"; position: absolute; left: 0; color: #dc3545; font-weight: bold; font-size: 1.3em; }
        .cta-section { background: linear-gradient(135deg, #089616, #06d420); color: white; padding: 50px; text-align: center; border-radius: 20px; margin: 40px 0; animation: fadeIn 1s ease-out; }
        .cta-button { background: white; color: #089616; padding: 15px 40px; border: none; border-radius: 30px; font-size: 1.2em; font-weight: bold; cursor: pointer; transition: all 0.3s ease; display: inline-block; margin: 10px; text-decoration: none; }
        .cta-button:hover { transform: scale(1.1); box-shadow: 0 8px 25px rgba(255,255,255,0.3); }
        .faq-section { margin: 40px 0; }
        .faq-item { background: white; margin: 15px 0; border-radius: 15px; overflow: hidden; box-shadow: 0 3px 10px rgba(0,0,0,0.1); animation: fadeInUp 1s ease-out; }
        .faq-question { background: linear-gradient(135deg, #089616, #06d420); color: white; padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s ease; }
        .faq-question:hover { background: linear-gradient(135deg, #06d420, #089616); }
        .faq-question i { transition: transform 0.3s ease; }
        .faq-item.active .faq-question i { transform: rotate(180deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 20px; background: #f8f9fa; }
        .faq-item.active .faq-answer { max-height: 500px; padding: 20px; }
        .highlight-box { background: linear-gradient(135deg, #fff3cd, #ffeaa7); border-left: 5px solid #089616; padding: 20px; margin: 20px 0; border-radius: 10px; animation: slideInLeft 1s ease-out; }
        .warning-box { background: linear-gradient(135deg, #ffe5e5, #ffcccb); border-left: 5px solid #dc3545; padding: 20px; margin: 20px 0; border-radius: 10px; }
        .success-box { background: linear-gradient(135deg, #d4edda, #c3e6cb); border-left: 5px solid #089616; padding: 20px; margin: 20px 0; border-radius: 10px; }
        .tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 30px 0; }
        .tool-card { background: white; padding: 20px; border-radius: 15px; text-align: center; border: 2px solid #089616; transition: all 0.3s ease; }
        .tool-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(8, 150, 22, 0.3); }
        .tool-card i { font-size: 2.5em; color: #089616; margin-bottom: 10px; }
        @keyframes fadeInDown { from { opacity: 0; transform: translateY(-50px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes slideInLeft { from { opacity: 0; transform: translateX(-100px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes slideInRight { from { opacity: 0; transform: translateX(100px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-15px); } 60% { transform: translateY(-7px); } }
        @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
        @keyframes rotateIn { from { opacity: 0; transform: rotate(-200deg); } to { opacity: 1; transform: rotate(0); } }
        .scroll-indicator { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: #089616; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5em; cursor: pointer; box-shadow: 0 5px 15px rgba(8, 150, 22, 0.5); transition: all 0.3s ease; z-index: 1000; }
        .scroll-indicator:hover { transform: scale(1.1); background: #06d420; }
        @media (max-width: 768px) { .hero h1 { font-size: 2em; } .hero p { font-size: 1em; } .content-section h2 { font-size: 1.8em; } .pros-cons { grid-template-columns: 1fr; } .platform-grid, .benefits-grid { grid-template-columns: 1fr; } }
        .step-list { counter-reset: step-counter; list-style: none; padding: 0; }
        .step-list li { counter-increment: step-counter; margin: 20px 0; padding: 20px; background: #f8f9fa; border-radius: 10px; position: relative; padding-left: 80px; }
        .step-list li:before { content: counter(step-counter); position: absolute; left: 20px; top: 50%; transform: translateY(-50%); background: linear-gradient(135deg, #089616, #06d420); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.3em; }
        .metric-card { background: white; padding: 20px; border-radius: 15px; text-align: center; box-shadow: 0 3px 10px rgba(0,0,0,0.1); margin: 10px; flex: 1; min-width: 200px; }
        .metric-card .icon { font-size: 2.5em; color: #089616; margin-bottom: 10px; }
        .metric-card .value { font-size: 2em; font-weight: bold; color: #089616; }
        .metric-card .label { color: #666; margin-top: 10px; }
        .metrics-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin: 30px 0; }
    