 
    .containeig {
        max-width: 1280px;
        margin: 0 auto;
        padding: 32px 24px;
        background: white;
        box-shadow: 0 0 20px rgba(0,0,0,0.05);
    }
    
    /* Typography */
    h1 {
        font-size: 44.8px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 16px;
        color: #0a0a0a;
        letter-spacing: -0.02em;
    }
    
    h2 {
        font-size: 30.4px;
        font-weight: 600;
        margin-top: 40px;
        margin-bottom: 16px;
        padding-bottom: 8px;
        border-bottom: 3px solid #e1306c;
        display: inline-block;
    }
    
    h3 {
        font-size: 22.4px;
        font-weight: 600;
        margin-top: 28.8px;
        margin-bottom: 12px;
        color: #262626;
    }
    
    p {
        margin-bottom: 19.2px;
        font-size: 16.8px;
        color: #2c2c2c;
    }
    
    a {
        color: #e1306c;
        text-decoration: none;
    }
    
    a:hover {
        text-decoration: underline;
    }
    
    /* Layout components */
    .hero {
        text-align: center;
        padding: 16px 0 32px 0;
        background: linear-gradient(135deg, #fef3e8 0%, #fff 100%);
        border-radius: 24px;
        margin-bottom: 32px;
    }
    
    .hero p {
        font-size: 19.2px;
        color: #4a4a4a;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-button {
        display: inline-block;
        background: #e1306c;
        color: white;
        padding: 16px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 17.6px;
        margin: 16px 0;
        transition: background 0.2s ease;
        border: none;
        cursor: pointer;
    }
    
    .cta-button:hover {
        background: #bc1a5c;
        text-decoration: none;
    }
    
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 32px;
        margin: 32px 0;
    }
    
    .feature-card {
        background: #fafaf8;
        padding: 28.8px;
        border-radius: 16px;
        border: 1px solid #e8e8e5;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    
    .feature-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }
    
    .feature-card h4 {
        font-size: 20.8px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #0a0a0a;
    }
    
    .step-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
        margin: 32px 0;
    }
    
    .step-item {
        background: #f5f5f0;
        padding: 24px;
        border-radius: 16px;
        text-align: center;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        background: #e1306c;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: bold;
        margin: 0 auto 16px auto;
    }
    
    table {
        width: 100%;
        border-collapse: collapse;
        margin: 32px 0;
        background: #fafaf8;
        border-radius: 16px;
        overflow: hidden;
    }
    
    th {
        background: #1a1a1a;
        color: white;
        padding: 16px;
        text-align: left;
        font-weight: 600;
    }
    
    td {
        padding: 16px;
        border-bottom: 1px solid #e8e8e5;
    }
    
    tr:last-child td {
        border-bottom: none;
    }
    
    .faq-item {
        margin-bottom: 24px;
        border-bottom: 1px solid #e8e8e5;
        padding-bottom: 24px;
    }
    
    .faq-question {
        font-weight: 700;
        font-size: 17.6px;
        color: #0a0a0a;
        margin-bottom: 8px;
        cursor: pointer;
    }
    
    .faq-answer {
        color: #4a4a4a;
        padding-left: 16px;
        border-left: 3px solid #e1306c;
    }
    
    .warning-box {
        background: #fff8e7;
        border-left: 4px solid #f5a623;
        padding: 19.2px 24px;
        margin: 24px 0;
        border-radius: 8px;
    }
    
    .success-box {
        background: #e8f5e9;
        border-left: 4px solid #4caf50;
        padding: 19.2px 24px;
        margin: 24px 0;
        border-radius: 8px;
    }
  
    @media (max-width: 768px) {
        h1 {
            font-size: 30.4px;
        }
        h2 {
            font-size: 24px;
        }
        .containeig {
            padding: 16px;
        }
        .feature-grid {
            gap: 16px;
        }
    }