
/*
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header, footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
}

.header-container, .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1, h2 {
    color: #333;
}

a {
    color: #007bff;
    text-decoration: none;
}

.download-cv {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

section {
    margin: 40px 0;
}

@media (max-width: 768px) {
    .header-container, .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .download-cv {
        margin-top: 20px;
    }
}
*/

/* Reset styles to ensure consistency across browsers */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global styles */
body, html {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    text-align: center;
}

/* Main wrapper styles to centralize the content */
.wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}

/* Header styles */
header {
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #ccc;
}

.logo img, .profile-pic {
    display: block;
    margin: 0 auto;
    padding-bottom: 20px;
}

/* Profile picture styles */
.profile-pic {
    border-radius: 50%;
    width: 120px; /* Adjust as needed */
    height: 120px; /* Adjust as needed */
    object-fit: cover;
    border: 3px solid #ccc;
}

/* Navigation styles */
nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
}

/* Section header styles */
h2 {
    font-size: 24px;
    color: #000;
    margin: 30px 0;
    text-align: left;
}

/* Individual item styles in sections */
.experience-item, .education-item {
    text-align: left;
    margin-bottom: 20px;
}

h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

p {
    font-size: 16px;
    color: #666;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 10px;
    margin-top: 40px;
    background-color: #333;
    color: #fff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .wrapper {
        width: 95%;
        margin: 20px auto;
    }

    h2, h3, p {
        padding: 0 15px;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .profile-pic {
        width: 100px; /* Adjust as needed */
        height: 100px; /* Adjust as needed */
    }
}
