body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-color: #f4f4f4;
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px 0;
}

.links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.links a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    background-color: #e0e0e0;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.links a:hover {
    background-color: #d0d0d0;
    transform: scale(1.05);
}

.nav-links {
    margin-bottom: 30px;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    padding: 5px 10px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-links a:hover {
    border-bottom: 2px solid #666;
}

.interview-prep {
    margin-top: 40px;
    padding: 25px 35px;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #e0e0e0;
}

.interview-prep h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.interview-prep p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 0;
}