/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container styles */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    position: relative; /* Ensure positioning context for absolute elements */
}

/* Download Button styles */
.download-button {
    position: absolute;
    top: 20px; /* Adjust spacing from the top */
    right: 20px; /* Adjust spacing from the right */
    z-index: 10;
}

.download-button button {
    background-color: #3498db; /* Bright blue background */
    color: #ecf0f1; /* White text */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.download-button button:hover {
    background-color: #2980b9; /* Darker blue on hover */
}

/* Header styles */
header {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 0;
    text-align: center;
    border-bottom: 4px solid #3498db;
    position: relative;
}

header .profile-picture {
    margin: 0 auto;
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #3498db;
    position: relative;
}

header .profile-picture img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

header h1 {
    margin: 1rem 0;
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
}

/* Responsive styles for header */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    .download-button {
        position: static;
        margin-top: 1rem;
        text-align: center;
    }

    .download-button button {
        width: 100%;
        max-width: 300px; /* Adjust max width */
        margin: 0 auto;
        font-size: 14px;
    }
}

/* Section styles */
section {
    padding: 2rem 1rem;
    background: #ffffff;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

section h2 {
    font-size: 1.8rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.job {
    margin-bottom: 1.5rem;
}

.job h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #2c3e50;
}

.company-logo {
    width: 120px; /* Adjust as needed */
    height: auto;
    margin-bottom: 1rem;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 0.5rem;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer styles */
footer {
    background: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 1rem;
}
