.navbar {
    background: rgb(191, 211, 218);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.nav-container {
    width: min(1100px, 90%);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: .3s;
}

.nav-links a:hover {
    color: #2563eb;
}

main {
    width: min(700px, 90%);
    margin: 70px auto;
}

.contact-page {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.contact-page h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.intro {
    text-align: center;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input,
.form-textarea {
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    transition: .3s;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37,99,235,.15);
}

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

.captcha-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.captcha-wrap img {
    border: 1px solid #ddd;
    border-radius: 12px;
}

.captcha-wrap button {
    border: 1px solid #ddd;
    border-radius: 12px;
    background: white;
    font-size: 1.2rem;
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: .3s;
}

.captcha-wrap button:hover {
    background: rgb(191, 211, 218);
}

.me2-image {
    display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%; /* Optional: Adjusts the overall size of the image */
	height: auto;
}

.submit-btn {
    padding: 16px;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: .3s;
}

.submit-btn:hover {
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .contact-page {
        padding: 30px;
    }

    .contact-page h1 {
        font-size: 2rem;
    }
}