footer {
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    padding: 3rem 1rem;
    box-sizing: border-box;
}

footer button {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    border: 2px solid #1f2937;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    background-color: transparent;
    width: 250px;
}

footer button:hover {
    background: #3b82f6;
    color: white;
}

.cv-button {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    border: 2px solid #1f2937;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    background-color: transparent;
    margin-top: 1rem;
    width: 250px;
}

.cv-button:hover {
    background: #3b82f6;
    color: white;
}
.footer-contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.footer-box {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    border: 2px solid #1f2937;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    background-color: transparent;
    width: 250px;
    text-align: center;
}

.footer-box:hover {
    background: #3b82f6;
    color: white;
}