body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
header {
    background: rgb(4, 140, 4);
    color: #fff;
    padding: 20px;
    text-align: center;
}
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
}
.resume-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.resume-grid div {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(82, 117, 2, 0.1);
    width: 45%;
}

/* Resume Download Button */
.download-resume {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background-color: #f4f4f4;
}

.download-resume h2 {
    font-size: 24px;
    color: #333;
}

.download-resume p {
    font-size: 16px;
    color: #555;
}

.download-resume .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0fd371;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.download-resume .btn:hover {
    background-color: #0056b3;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}
footer a {
    color: limegreen;
    text-decoration: none;
}