html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #1e1e2f; /* match the rest of your design */
    font-family: "Open Sans", sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 1.5rem;
    background-color: #1e1e2f;
}

.logo {
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    font-size: 30px;
}

.navlink {
    display: flex;
    gap: 1rem;
}

.navlink button {
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    font-size: 15px;
    background-color: #2fc2b0;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    border: none;
    color: #1e1e2f;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Open Sans", sans-serif;
    background-color: #1e1e2f;
    padding: 10px;
}

.profile-picture {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
    object-position: center center;
}

.profile-name {
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    font-size: 30px;
    background-color: #1e1e2f;
    padding: 2px;
}

.description-text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Open Sans", sans-serif;
    font-size: 23px;
    max-width: 500px;
}

.title-name {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: bold;
}

.list {
    font-family: "Open Sans", sans-serif;
    font-size: 24.4px;
    font-weight: bold;
}

.section {
    margin-bottom: 3rem;
}

.container {
    height:;
}

.contact {
    display: flex;
    justify-content: center;
    width: 100%;
}

form {
    width: 100%;
    max-width: 100px; /* ← make this bigger if needed */
    margin: auto;
    padding: 1em;
}

@media (min-width: 1024px) {
    form {
        max-width: 1000px;
    }
}

label {
    display: block;
    margin-bottom: 0.5em;
    font-size: 1.2em;
    color: #2fc2b0; /* ← Bright teal for visibility */
}

input,
textarea {
    width: 100%;
    background-color: #00a89d;
    color: black;
    border: none;
    border-radius: 12px;
    padding: 1em;
    font-size: 1em;
    margin-bottom: 2em;
    box-sizing: border-box;
}

textarea {
    height: 150px;
    resize: none;
}

.buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1em;
}

button {
    background-color: #00a89d;
    color: black;
    border: none;
    border-radius: 12px;
    padding: 0.8em 1.5em;
    font-size: 1em;
    cursor: pointer;
}

button:hover {
    background-color: #00bfb3;
}
