
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #f0f4ff, #dff6fd);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: start;
    justify-content: center;
}

.container {
    max-width: 700px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-box {
    margin: 20px 0;
    font-size: 16px;
}

.contact-box a {
    color: #007BFF;
    text-decoration: none;
}

.contact-form {
    text-align: left;
    margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
    box-sizing: border-box;
}

.contact-form button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.grecaptcha-badge {
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 9999;
}
