 .epb-wrap {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

.epb-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.epb-header {
    text-align: left;
    margin-bottom: 32px;
}

.epb-booking-badge {
    display: inline-block;
    background: #dc2626;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.epb-card h2 {
    margin: 0 0 8px 0;
    color: #1e293b;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.epb-card h2 .highlight {
    color: #dc2626;
}

.epb-sub {
    margin: 0 0 24px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

.epb-form h3 {
    margin: 32px 0 16px;
    padding-left: 12px;
    border-left: 3px solid #dc2626;
    color: #1e293b;
    font-size: 16px;
    font-weight: 700;
}

.epb-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
}

.epb-col-2 {
    grid-column: span 2;
}

.epb-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.epb-form input,
.epb-form select,
.epb-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 12px 14px;
    background: #f9fafb;
    color: #1e293b;
    font-size: 14px;
    transition: all 0.2s ease;
}

.epb-form input:hover,
.epb-form select:hover,
.epb-form textarea:hover {
    background: #ffffff;
    border-color: #9ca3af;
}

.epb-form input:focus,
.epb-form select:focus,
.epb-form textarea:focus {
    outline: none;
    border-color: #dc2626;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.epb-form textarea {
    resize: vertical;
    min-height: 90px;
}

.epb-consent {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.epb-consent label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
    color: #475569;
}

.epb-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #dc2626;
}

.epb-submit {
    border: none;
    border-radius: 6px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    background: #dc2626;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.epb-submit:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.epb-submit:active {
    transform: translateY(0);
}

.epb-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.epb-message {
    border-radius: 6px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
}

.epb-message.success {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.epb-message.error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.epb-note {
    display: block;
    margin-top: 8px;
    color: #64748b;
    font-size: 13px;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .epb-wrap {
        margin: 20px auto;
        padding: 12px;
    }

    .epb-card {
        padding: 24px 20px;
    }

    .epb-card h2 {
        font-size: 24px;
    }

    .epb-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .epb-col-2 {
        grid-column: span 1;
    }

    .epb-submit {
        width: 100%;
    }
}