.apg-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}
.apg-label { font-size: 14px; color: #666; margin-bottom: 15px; }
.apg-service-card {
    border: 1px solid #e0dcd3;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: all 0.3s ease;
}
.apg-service-card:hover { border-color: #9C7B53; }
.apg-service-card.apg-selected {
    border: 2px solid #9C7B53;
    background-color: #fcf9f2;
}
.apg-service-info { display: flex; align-items: center; gap: 15px; }
.apg-icon { font-size: 24px; }
.apg-name { font-weight: 600; color: #4a3b2a; }
.apg-price {
    background: #eee9df;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    color: #7a5f40;
}
.apg-badge {
    background: #e8dec9;
    color: #5d4529;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 5px;
    display: inline-block;
}
.apg-form-group { margin-bottom: 15px; }
.apg-form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
}
.apg-form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0dcd3;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}
.apg-form-group input:focus { border-color: #9C7B53; outline: none; }
.apg-row { display: flex; gap: 15px; }
.apg-row .apg-form-group { flex: 1; }
.apg-summary-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 30px auto 0;
    border-top: 1px solid #e0dcd3;
    padding-top: 30px;
    font-family: 'Segoe UI', sans-serif;
}
.apg-summary-box {
    border: 1px solid #e0dcd3;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
}
.apg-summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #666;
}
.apg-total-line {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.apg-pay-btn {
    background-color: #9C7B53;
    color: white;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
.apg-pay-btn:hover { background-color: #7a5f40; }
.apg-pay-btn:disabled { background-color: #ccc; cursor: not-allowed; }
.apg-secure-badge {
    background: #f5f0e6;
    color: #8a6d46;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 15px;
    font-weight: 500;
}
.apg-note {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}
@media (max-width: 768px) {
    .apg-container, .apg-summary-section { grid-template-columns: 1fr; }
}