:root {
    --primary-color: #4e54c8;
    --secondary-color: #2d3748;
    --accent-color: #ff6b6b;
    --light-color: #f8fafc;
    --dark-color: #1a202c;
    --success-color: #48bb78;
    --warning-color: #f6ad55;
    --text-color: #2d3748;
    --text-light: #718096;
    --linkedin-blue: #0077b5;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    width: 90%;
    margin: 100px auto 0 auto;
    padding: 20px 0;
}

.contact-container {
    max-width: 1000px;
    width: 100%;
    margin: 20px auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Rest of your existing contact page styles remain the same */
/* ... */

/* Adjustments for navigation integration */
.header ~ main {
    margin-top: 80px;
}

@media (min-width: 48em) {
    .header ~ main {
        margin-top: 100px;
    }
}

/* Footer adjustments */
.footer-basic {
    background-color: #fff;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-basic .social > a {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.footer-basic .social > a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.footer-basic ul a:hover {
    color: var(--primary-color);
}

/* Notification position adjustment */
.notification {
    top: 100px;
    right: 20px;
}

@media (max-width: 768px) {
    main {
        width: 95%;
        margin-top: 80px;
    }
    
    .contact-container {
        padding: 20px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .notification {
        top: 80px;
    }
}
/* Resume Thumbnail Styles */
.resume-preview-container {
    text-align: center;
    margin-bottom: 20px;
}

.resume-thumbnail {
    width: 200px;
    height: 100px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.resume-thumbnail:hover {
    transform: scale(1.03);
}

.resume-preview-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.view-resume-btn, .download-resume-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-resume-btn {
    background-color: #4e54c8;
    color: white;
}

.download-resume-btn {
    background-color: #f4f4f4;
    color: #333;
}

.resume-or {
    color: #777;
    font-size: 14px;
}

/* Modal Styles */
.resume-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.resume-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    position: relative;
    max-width: 60%;
    max-height: 90vh;
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 600px) {
    .resume-thumbnail {
        width: 100px;
    }
    
    .resume-preview-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .resume-or {
        display: none;
    }
}