/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff0f5;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header and Navigation */
header {
    background-color: #ff69b4;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: background 0.3s;
    border-radius: 5px;
}

nav a:hover,
nav a[aria-current="page"] {
    background-color: rgba(255, 255, 255, 0.2);
    text-decoration: underline;
}

/* Main Content */
main {
    padding: 30px 20px;
    flex: 1;
    text-align: center;
}

/* Profile Image */
.profile-img {
    width: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #ff69b4;
}

/* Tables */
table {
    width: 90%;
    max-width: 900px;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

th,
td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #ffb6c1;
    color: #333;
}

/* Forms */
form {
    max-width: 600px;
    margin: 20px auto;
    text-align: left;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #ff69b4;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background-color: #ff1493;
}

/* Footer */
footer {
    background-color: #ff69b4;
    color: white;
    text-align: center;
    padding: 15px 10px;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 600px) {
    nav {
        flex-direction: column;
    }

    .profile-img {
        width: 150px;
    }

    table {
        font-size: 14px;
    }

    iframe {
        width: 100%;
        height: auto;
    }
}

/* Resume Page Specific Tweaks */
main h2,
main h3 {
    color: #ff1493;
    margin-bottom: 10px;
}

main h4 {
    color: #555;
    margin-top: 15px;
    font-size: 1.1rem;
}

main p {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: left;
}

ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: left;
}

ul li::before {
    content: "• ";
    color: #ff69b4;
    font-weight: bold;
    margin-right: 5px;
}

main {
    padding: 30px 20px;
    max-width: 900px;
    margin: auto;
}

main h3 {
    margin-top: 30px;
    border-bottom: 2px solid #ffb6c1;
    padding-bottom: 5px;
}

main h4 {
    margin-bottom: 5px;
}