.dppti-container h1 {
    font-size: 28px;
}
h1.wp-heading-inline {
    height:50px;
    color:#2271b1;
}
.dppti-container {
    max-width: 750px;
    margin-top: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', sans-serif;
    animation: fadeIn 0.5s ease-in-out;
}

.dppti-tabs {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 20px;
}

.dppti-tab-button {
    padding: 12px 24px;
    cursor: pointer;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #444;
}

.dppti-tab-button.active {
    border-color: #007cba;
    color: #007cba;
    background-color: #f0f8ff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.dppti-tab-content {
    display: none;
    animation: slideFade 0.5s ease forwards;
}

.dppti-tab-content.active {
    display: block;
}

.dppti-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.dppti-toggle label {
    font-weight: 500;
    color: #333;
}

.dppti-toggle input[type="checkbox"] {
    transform: scale(1.3);
}

.dppti-pro-cta {
    background: linear-gradient(135deg, #007cba, #005a9e);
    color: #fff;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dppti-pro-cta a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #fff;
    color: #007cba;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dppti-pro-cta a:hover {
    background: #f1f5f9;
}

@keyframes slideFade {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}