body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
    color: #222;
}
header {
    background: #222;
    color: #fff;
    padding: 2rem 1rem 1.5rem 1rem;
    text-align: center;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}
header h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2.5rem;
    letter-spacing: 2px;
}
header p {
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 1px;
}
.services {
    max-width: 900px;
    margin: 2rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.service-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 20px 0 rgba(0,0,0,0.08);
    padding: 2rem 1.5rem;
    flex: 1 1 260px;
    min-width: 240px;
    max-width: 320px;
    text-align: center;
    transition: transform 0.18s;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
}
.service-card h2 {
    margin-top: 0;
    color: #1a73e8;
    font-size: 1.4rem;
}
.service-card p {
    font-size: 1rem;
}
.contact {
    background: #1a73e8;
    color: #fff;
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 24px;
    max-width: 600px;
    margin: 3rem auto 2rem auto;
    box-shadow: 0 4px 20px 0 rgba(26, 115, 232, 0.08);
}
.contact h2 {
    margin-top: 0;
}
.contact a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}
.pay-now-section {
    text-align:center;
    margin:2rem 0;
}
.pay-now-btn {
    background:#1a73e8;
    color:#fff;
    border:none;
    padding:1rem 2.2rem;
    font-size:1.25rem;
    border-radius:30px;
    cursor:pointer;
    box-shadow:0 2px 10px rgba(26,115,232,0.08);
    transition:background 0.2s;
}
.pay-now-btn:hover {
    background:#1558b0;
}
/* Payment Modal */
#paymentModal {
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background:rgba(34,34,34,0.55);
    z-index:1000;
    align-items:center;
    justify-content:center;
}
.pay-modal-card {
    background: linear-gradient(135deg, #e9f0fb 0%, #fff 100%);
    border-radius: 20px;
    max-width: 390px;
    width: 100%;
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.16);
    padding: 2.2rem 1.7rem 2rem 1.7rem;
    position: relative;
    animation: fadeInModal 0.45s cubic-bezier(.4,1.7,.6,1) 1;
}
@keyframes fadeInModal {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.pay-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}
.pay-modal-close:hover { color: #e53935; }
.pay-modal-header {
    text-align: center;
    margin-bottom: 0.5rem;
}
.pay-modal-header img {
    height:36px;
    vertical-align:middle;
    margin-bottom:8px;
}
.pay-modal-header h2 {
    margin: 0.5rem 0 0 0;
    color: #1a73e8;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.pay-modal-form {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.pay-modal-field {
    position: relative;
    margin-bottom: 0.6rem;
}
.pay-modal-field input {
    width: 100%;
    padding: 1.05rem 0.9rem 0.45rem 0.9rem;
    border: 1.5px solid #b8c6e0;
    border-radius: 9px;
    font-size: 1.06rem;
    outline: none;
    background: #f7faff;
    transition: border-color 0.2s;
}
.pay-modal-field input:focus {
    border-color: #1a73e8;
}
.pay-modal-field label {
    position: absolute;
    top: 1.07rem;
    left: 0.95rem;
    color: #888;
    font-size: 1.01rem;
    background: transparent;
    pointer-events: none;
    transition: 0.2s cubic-bezier(.4,1.7,.6,1);
}
.pay-modal-field input:focus + label,
.pay-modal-field input:not(:placeholder-shown) + label {
    top: -0.7rem;
    left: 0.7rem;
    background: #e9f0fb;
    color: #1a73e8;
    font-size: 0.91rem;
    padding: 0 0.3rem;
    border-radius: 6px;
}
#card-container {
    padding: 1rem;
    border: 1.5px solid #b8c6e0;
    border-radius: 9px;
    background: #f7faff;
}
#card-errors {
    color: #e53935;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
.pay-modal-note {
    display: flex;
    align-items: flex-start;
    background: #f3f7fa;
    color: #555;
    font-size: 0.98rem;
    border-radius: 10px;
    padding: 0.7rem 1rem 0.7rem 0.8rem;
    margin-bottom: 0.3rem;
    gap: 0.5rem;
}
.pay-modal-note img {
    height:20px;
    vertical-align:middle;
    margin-right:6px;
}
.pay-modal-pay-btn {
    background: linear-gradient(90deg, #1a73e8 60%, #2196f3 100%);
    color: #fff;
    border: none;
    padding: 0.95rem 0;
    border-radius: 10px;
    font-size: 1.13rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 10px 0 rgba(26,115,232,0.07);
    transition: background 0.18s, box-shadow 0.18s;
}
.pay-modal-pay-btn:hover {
    background: linear-gradient(90deg, #1558b0 60%, #1976d2 100%);
    box-shadow: 0 4px 16px 0 rgba(26,115,232,0.13);
}
.pay-modal-pay-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
}
footer {
    text-align:center;
    color:#888;
    padding:1rem 0 0.5rem 0;
    font-size:0.95rem;
}
@media (max-width: 700px) {
    .services {
        flex-direction: column;
        gap: 1.2rem;
    }
}
@media (max-width: 480px) {
    .pay-modal-card { padding: 1.2rem 0.5rem 1.1rem 0.5rem; }
    .pay-modal-header h2 { font-size: 1.17rem; }
    .pay-modal-pay-btn { font-size: 1rem; }
}
