.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    /* Adjust based on header/footer */
}

.contact-form {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    width: 100%;
}

.form-group {
    position: relative;
    flex: 1;
}

/* Specific styling to match the image: thin borders, grid-like look */
input,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--secondary-color);
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    color: var(--primary-color);
    outline: none;
    box-sizing: border-box;
    border-radius: 0;
    /* Sharp corners */
}

/* Remove double borders */
.form-row .form-group:first-child input {
    border-right: none;
}

.form-group textarea {
    border-top: none;
    resize: none;
}

input::placeholder,
textarea::placeholder {
    color: #666;
}

.submit-btn {
    margin-top: 20px;
    padding: 15px 30px;
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--primary-color);
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--hover-color);
    color: white;
    border-color: var(--hover-color);
}