html, body {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eaf6f6; /* Light pastel blue */
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body {
    background: linear-gradient(180deg, #eaf6f6, #caf0f8);
    background-attachment: fixed; /* Ensures the gradient spans the full height even when scrolling */
}

.landing-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.landing-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.landing-page .links a {
    display: inline-block;
    margin: 0 1rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: white;
    background-color: #0073e6;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.landing-page .links a:hover {
    background-color: #005bb5;
}

.cv-page {
    padding: 2rem;
    background-color: #ffffff; /* White for contrast */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 800px;
    margin: 2rem auto;
}

.cv-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #0077b6; /* Ocean blue */
    text-align: center;
}

.cv-page h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0096c7; /* Slightly lighter ocean blue */
    text-align: center; /* Center-align the job title */
}

.cv-page .cv-content {
    line-height: 1.6;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.tab-button {
    background-color: #90e0ef; /* Pastel blue */
    color: #023e8a; /* Darker blue for text */
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    margin: 0 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: bold;
}

.tab-button:hover {
    background-color: #48cae4; /* Slightly darker pastel blue */
    transform: scale(1.05);
}

.tab-button.active {
    background-color: #0077b6; /* Ocean blue */
    color: white;
}

.tab-content {
    display: none;
    padding: 1rem;
    background-color: #f0f9ff; /* Very light blue */
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tab-content:first-child {
    display: block;
}

ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

ul li {
    margin-bottom: 0.5rem;
}