/* Reset and basic styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Header styles */
.header {
    background-color: #4169E1; /* Light grey background */
    padding: 20px;
}

.header-content {
    display: flex;
    align-items: center;
}

.header-text {
    font-size: 2rem; /* Adjusted font size */
    margin-bottom: 5px;
}

.header-text p {
    font-size: 1rem; /* Adjusted font size */
    margin-top: 0;
}

.contact-info,
.linkedin-info {
    font-size: 0.9rem;
}

.contact-info a,
.linkedin-info a {
    color: #fff; /* Link color */
    text-decoration: none;
}

.contact-info a:hover,
.linkedin-info a:hover {
    text-decoration: underline;
}

/* Additional styles for location */
.location {
    font-size: 0.9rem;
    color: #fff; /* Adjust color as needed */
    margin-top: 5px;
}

header h1 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 5px;
}

header p {
    color: #fff;
    font-size: 1rem;
    margin-top: 0;
}

/* Section styles */
.content {
    padding: 20px;
    border-top: 1px solid #eee;
}

h2 {
    color: #000; /* Change to black */
    font-size: 2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

a {
    color: #000; /* Change to black */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Udemy profile styles */
.udemy-profile {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.udemy-profile .profile-info {
    color: #333;
}

.udemy-profile .profile-info h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #000; /* Change to black */
    display: flex;
    align-items: center;
}

.profile-name {
    margin-right: 10px; /* Adjust space between name and icon */
}

.udemy-icon-header {
    width: 55px; /* Adjust size as needed */
    height: 30px; /* Adjust size as needed */
}

.udemy-profile .profile-info p {
    margin: 5px 0;
}

/* Footer styles */
footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px 0;
    background-color: #4169E1;
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
