.pt-5d8163e0-wrapper {
    --pt-eyebrow-color: #ffce00;
    --pt-eyebrow-bg: transparent;
    --pt-eyebrow-shadow: none;
    --pt-panel-shadow: 0 18px 45px rgba(10,25,47,0.10);
    --pt-check-color: #ffce00;

    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pt-5d8163e0-left {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.pt-5d8163e0-right {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
}

.pt-5d8163e0-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--pt-eyebrow-color);
    background: var(--pt-eyebrow-bg);
    text-shadow: var(--pt-eyebrow-shadow);
    margin-bottom: 15px;
}

.pt-5d8163e0-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0A192F;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pt-5d8163e0-desc {
    font-size: 1.125rem;
    color: #4A5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

.pt-5d8163e0-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffce00;
    color: #0A192F;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.pt-5d8163e0-btn:hover,
.pt-5d8163e0-btn:focus {
    background-color: #e5b800;
    transform: translateY(-2px);
    color: #0A192F;
    text-decoration: none;
}

.pt-5d8163e0-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pt-5d8163e0-nav-item {
    background-color: #0A192F;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    line-height: 1.2;
}

.pt-5d8163e0-nav-item:hover {
    background-color: #112a4f;
}

.pt-5d8163e0-nav-item.pt-5d8163e0-active {
    border-bottom: 3px solid #ffce00;
    background-color: #112a4f;
}

.pt-5d8163e0-panels {
    position: relative;
}

.pt-5d8163e0-panel {
    display: none;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: var(--pt-panel-shadow);
    border-radius: 12px;
    padding: 40px;
    animation: ptFadeIn-5d8163e0 0.4s ease forwards;
}

.pt-5d8163e0-panel.pt-5d8163e0-active {
    display: block;
}

@keyframes ptFadeIn-5d8163e0 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pt-5d8163e0-panel-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0A192F;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.2;
}

.pt-5d8163e0-panel-text {
    font-size: 1.05rem;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 30px;
}

.pt-5d8163e0-checklist-heading {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #0A192F;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.pt-5d8163e0-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pt-5d8163e0-checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #4A5568;
    font-weight: 500;
    line-height: 1.5;
}

.pt-5d8163e0-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--pt-check-color, #ffce00);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.5;
}

/* Tablet */
@media (max-width: 1024px) {
    .pt-5d8163e0-wrapper {
        gap: 35px;
    }

    .pt-5d8163e0-heading {
        font-size: 2.25rem;
    }

    .pt-5d8163e0-nav-item {
        padding: 11px 18px;
        font-size: 0.95rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .pt-5d8163e0-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .pt-5d8163e0-left,
    .pt-5d8163e0-right {
        flex: 1 1 100%;
        width: 100%;
    }

    .pt-5d8163e0-heading {
        font-size: 2rem;
    }

    .pt-5d8163e0-desc {
        font-size: 1rem;
    }

    .pt-5d8163e0-nav {
        width: 100%;
        gap: 8px;
    }

    .pt-5d8163e0-nav-item {
        flex: 1 1 calc(50% - 8px);
        padding: 12px 14px;
        font-size: 0.9rem;
        text-align: center;
    }

    .pt-5d8163e0-panel {
        padding: 25px;
    }

    .pt-5d8163e0-panel-title {
        font-size: 1.5rem;
    }

    .pt-5d8163e0-panel-text,
    .pt-5d8163e0-checklist li {
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .pt-5d8163e0-heading {
        font-size: 1.75rem;
    }

    .pt-5d8163e0-nav-item {
        flex: 1 1 100%;
    }

    .pt-5d8163e0-btn {
        width: 100%;
    }

    .pt-5d8163e0-panel {
        padding: 22px;
    }
}