* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f4f4f4;
}

h1 {
	font-size: 3em;
}

/* Open Button */
.contact-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    background: #0077cc;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background .3s;
	margin-top: 50px;
}

.contact-btn:hover {
    background: #005fa3;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);

    /* Centers the popup */
    justify-content: center;
    align-items: center;

    z-index: 999;
}

/* Active state */
.modal.show {
    display: flex;
}

/* Popup */
.modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,.3);
}

/* Close button */
.close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

h2 {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

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

textarea {
    resize: vertical;
}

.hp-field {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 6px;
    background: #0077cc;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background .3s;
}

.submit-btn:hover {
    background: #005fa3;
}
