.maincontent {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;
}     

 :root {
        --main-color-200: #ac3f11;
        --main-color-300: #ffb377;
        --main-color-400: #ff9440;
        --main-color-500: #882602;
        --main-color-600: #d8661d;
        --main-color-700: #b35618;
        --main-color-800: #8c4513;
        --main-color-900: #662f0d;
        --off-white: #faf6f2;
        --dark: #1a1109;
    }

    .ty-page {
        font-family: 'DM Sans', sans-serif;
        background-color: var(--dark);
        color: var(--off-white);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 24px;
        position: relative;
        overflow: hidden;
    }

    /* Textured background rings */
    .ty-page::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        border: 120px solid rgba(216, 102, 29, 0.06);
        pointer-events: none;
    }
    .ty-page::after {
        content: '';
        position: absolute;
        bottom: -250px;
        left: -150px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        border: 90px solid rgba(255, 148, 64, 0.05);
        pointer-events: none;
    }

    /* Animated top accent bar */
    .ty-accent-bar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--main-color-900), var(--main-color-600), var(--main-color-400), var(--main-color-300));
    }

    .ty-card {
        position: relative;
        z-index: 2;
        max-width: 680px;
        width: 100%;
        text-align: center;
        animation: ty-fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    @keyframes ty-fadeUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Check icon */
    .ty-icon-wrap {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--main-color-800), var(--main-color-600));
        box-shadow: 0 0 0 12px rgba(216, 102, 29, 0.12), 0 0 0 24px rgba(216, 102, 29, 0.06);
        margin-bottom: 36px;
        animation: ty-popIn 0.6s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    }

    @keyframes ty-popIn {
        from {
            opacity: 0;
            transform: scale(0.5);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .ty-icon-wrap svg {
        width: 38px;
        height: 38px;
        stroke: #fff;
    }

    /* Eyebrow label */
    .ty-eyebrow {
        display: inline-block;
        font-family: 'DM Sans', sans-serif;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--main-color-400);
        margin-bottom: 16px;
        animation: ty-fadeUp 0.6s 0.2s both;
    }

    /* Main heading */
    .ty-heading {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: clamp(42px, 6vw, 64px);
        font-weight: 900;
        line-height: 1.08;
        color: var(--off-white);
        margin: 0 0 24px 0;
        animation: ty-fadeUp 0.6s 0.3s both;
    }

    .ty-heading span {
        color: var(--main-color-400);
    }

    /* Body copy */
    .ty-body {
        font-size: 17px;
        font-weight: 400;
        line-height: 1.7;
        color: rgba(250, 246, 242, 0.72);
        max-width: 520px;
        margin: 0 auto 44px;
        animation: ty-fadeUp 0.6s 0.4s both;
    }

    /* Divider */
    .ty-divider {
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, var(--main-color-700), var(--main-color-400));
        margin: 0 auto 44px;
        animation: ty-fadeUp 0.6s 0.45s both;
    }

    /* What happens next cards */
    .ty-next-label {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--main-color-400);
        margin-bottom: 20px;
        animation: ty-fadeUp 0.6s 0.5s both;
    }

    .ty-steps {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 48px;
        animation: ty-fadeUp 0.6s 0.55s both;
    }

    .ty-step {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 148, 64, 0.15);
        border-radius: 12px;
        padding: 20px 22px;
        flex: 1 1 160px;
        max-width: 200px;
        text-align: center;
        transition: border-color 0.2s, background 0.2s;
    }

    .ty-step:hover {
        background: rgba(216, 102, 29, 0.08);
        border-color: rgba(255, 148, 64, 0.35);
    }

    .ty-step-num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--main-color-800), var(--main-color-600));
        font-size: 13px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 10px;
    }

    .ty-step p {
        font-size: 13px;
        color: rgba(250, 246, 242, 0.65);
        line-height: 1.5;
        margin: 0;
    }

    /* CTA buttons */
    .ty-btns {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
        animation: ty-fadeUp 0.6s 0.65s both;
    }

    .ty-btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, var(--main-color-700), var(--main-color-500));
        color: #fff;
        font-family: 'DM Sans', sans-serif;
        font-weight: 600;
        font-size: 15px;
        padding: 14px 32px;
        border-radius: 6px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 20px rgba(136, 38, 2, 0.4);
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .ty-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(136, 38, 2, 0.5);
        color: #fff;
        text-decoration: none;
    }

    .ty-btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: var(--off-white);
        font-family: 'DM Sans', sans-serif;
        font-weight: 600;
        font-size: 15px;
        padding: 13px 32px;
        border-radius: 6px;
        text-decoration: none;
        border: 1px solid rgba(250, 246, 242, 0.2);
        cursor: pointer;
        transition: border-color 0.2s, background 0.2s;
    }

    .ty-btn-secondary:hover {
        border-color: var(--main-color-400);
        background: rgba(255, 148, 64, 0.06);
        color: var(--off-white);
        text-decoration: none;
    }

    /* Footer note */
    .ty-footnote {
        margin-top: 52px;
        font-size: 13px;
        color: rgba(250, 246, 242, 0.3);
        animation: ty-fadeUp 0.6s 0.75s both;
    }

    .ty-footnote a {
        color: var(--main-color-400);
        text-decoration: none;
    }

    .ty-footnote a:hover {
        text-decoration: underline;
    }

    @media (max-width: 480px) {
        .ty-steps {
            flex-direction: column;
            align-items: center;
        }
        .ty-step {
            max-width: 100%;
            width: 100%;
        }
        .ty-btns {
            flex-direction: column;
            align-items: center;
        }
        .ty-btn-primary,
        .ty-btn-secondary {
            width: 100%;
            justify-content: center;
        }
    }