 * { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; } body { background-color: #f9fafb; color: #1f2937; line-height: 1.7; padding: 20px; max-width: 100%; margin: 0 auto; } .container { background-color: white; border-radius: 16px; box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08); padding: 50px; margin-top: 30px; border: 1px solid #e5e7eb; } h1 { color: #111827; font-size: 2.8rem; margin-bottom: 15px; font-weight: 700; text-align: center; padding-bottom: 20px; border-bottom: 3px solid #10b981; } h2 { color: #059669; font-size: 1.8rem; margin-top: 40px; margin-bottom: 20px; font-weight: 600; } h3 { color: #374151; font-size: 1.3rem; margin-top: 25px; margin-bottom: 10px; } p { margin-bottom: 18px; font-size: 1.1rem; color: #4b5563; } .hero-image { width: 100%; max-width: 800px; height: auto; border-radius: 12px; margin: 30px auto; display: block; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); } .process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin: 40px 0; } .step-card { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border: 1px solid #bbf7d0; border-radius: 12px; padding: 25px; transition: transform 0.3s ease; } .step-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); } .step-number { display: inline-block; background-color: #10b981; color: white; width: 36px; height: 36px; border-radius: 50%; text-align: center; line-height: 36px; font-weight: bold; margin-right: 15px; font-size: 1.2rem; } .benefits-box { background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%); border-left: 5px solid #10b981; padding: 25px; margin: 30px 0; border-radius: 10px; } .benefits-box strong { color: #065f46; } ul, ol { margin-left: 30px; margin-bottom: 25px; } li { margin-bottom: 12px; padding-left: 5px; color: #4b5563; } .note-box { background-color: #fffbeb; border: 1px solid #fbbf24; padding: 25px; border-radius: 10px; margin: 30px 0; } .note-title { font-weight: bold; color: #92400e; margin-bottom: 15px; display: block; font-size: 1.2rem; } .cta-section { text-align: center; margin-top: 50px; padding: 40px; background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: white; border-radius: 12px; } .cta-button { display: inline-block; background-color: white; color: #059669; padding: 16px 40px; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 1.1rem; margin-top: 20px; transition: all 0.3s ease; border: 2px solid white; } .cta-button:hover { background-color: transparent; color: white; } .commission-structure { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; margin: 40px 0; } .commission-card { background-color: white; border: 2px solid #10b981; border-radius: 12px; padding: 25px; text-align: center; flex: 1; min-width: 250px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); } .commission-percent { font-size: 3rem; font-weight: bold; color: #10b981; margin-bottom: 10px; } .footer { margin-top: 50px; padding-top: 25px; border-top: 1px solid #d1d5db; font-size: 0.9rem; color: #6b7280; text-align: center; } @media (max-width: 768px) { .container { padding: 25px; } h1 { font-size: 2.2rem; } h2 { font-size: 1.5rem; } .process-steps { grid-template-columns: 1fr; } } 