.pn-subscribe-form-wrapper {
    margin: 20px 0;
    max-width: 500px;
}
.pn-subscribe-form .pn-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pn-subscribe-form .pn-input {
    flex: 1;
    min-width: 150px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
.pn-subscribe-form .pn-btn {
    padding: 10px 20px;
    background: #007cba;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease;
}
.pn-subscribe-form .pn-btn:hover {
    background: #006ba1;
}
.pn-subscribe-form .pn-message {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
}
.pn-subscribe-form .pn-message.success { background: #e7f4e4; color: #2e7d32; border: 1px solid #c8e6c9; }
.pn-subscribe-form .pn-message.error { background: #fbeae5; color: #c62828; border: 1px solid #ffcdd2; }
.pn-privacy-row {
    margin-top: 12px;
}
.pn-privacy-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
}
.pn-privacy-consent input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}
.pn-privacy-consent a {
    color: inherit;
    text-decoration: underline;
}