.container {
    text-align: center;
}

h1 {
    margin: 0 0 20px;
}
/* Figure out what color scheme I want for the header */
.site-header {
    background-color: #ffffff;
    padding: 24px 18px;
    border-radius: 18px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.site-header img {
    margin-bottom: 8px;
}

.site-header nav {
    margin: 0;
}

nav {
    margin: 20px 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
}

nav a {
    flex: 0 1 auto;
    min-width: 0;
    margin: 0;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    text-align: center;
}

@media (max-width: 480px) {
    nav {
        gap: 6px;
    }

    nav a {
        padding: 8px 10px;
        font-size: 0.95rem;
    }
}

nav a:hover {
    background-color: #0056b3;
}

.button {
    margin: 20px auto;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 250px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    margin: 20px auto;
}

.card-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.card-name {
    margin: 0;
    font-size: 1.4rem;
    font-family: sans-serif;
    color: #222;
}

form {
    max-width: 540px;
    margin: 0 auto 30px;
    text-align: left;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #222;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #d6ddee;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 1rem;
    background-color: #fff;
    color: #222;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.12);
}

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

.form-button {
    display: block;
    margin: 0 auto;
}

img {
    width: 100%;
    max-width: 150px;
    height: auto;
}

.social-icon {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: transform 0.3s ease;
}

.service-list {
    list-style: none;
    margin: 0 auto 30px;
    padding: 0;
    max-width: 420px;
    text-align: center;
}

.service-list li {
    background-color: #f4f7ff;
    border: 1px solid #d6ddee;
    border-radius: 10px;
    color: #333;
    font-weight: 600;
    margin: 10px 0;
    padding: 12px 18px;
}

.contact-list {
    list-style: none;
    margin: 0 auto 30px;
    padding: 0;
    max-width: 420px;
    text-align: center;
}

.contact-list li {
    background-color: #f4f7ff;
    border: 1px solid #d6ddee;
    border-radius: 10px;
    color: #333;
    font-weight: 600;
    margin: 10px 0;
    padding: 12px 18px;
}