/* Global Styles */
body {
   font-size: 18px;
   font-family: Arial, sans-serif;
   line-height: 1.6;
   background-color: #f4f4f4; /* Light background color */
   color: #333; /* Text color */
   margin: 0;
   padding: 0;
   padding-top: 0px; /* Give room for the fixed navbar */
   box-sizing: border-box;
   flex-direction: column; /* Stack navigation and content */
   justify-content: center; /* Center the content horizontally */
   overflow-x: auto
}
/* Container to hold content with max-width and centering */
.container {
    width: 70%; /* Set the width of your content */
    max-width: 900px; /* Maximum width to keep it from expanding too much */
    margin: 0 auto; /* Center the content horizontally */
    padding: 20px; /* Padding for spacing inside the container */
    background-color: white; /* White background for the content */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional shadow to add depth */
    border-radius: 10px;
    overflow-x: auto; /* Prevents content from spilling outside */
}


/* Header Styles */
header {
/*  background: #0073e6;*/
/*  color: #fff;*/
   display: flex;
   justify-content: flex-start; /* Align content to the left */
   align-items: center;
   padding: 20px;
   margin-top: 0px;
}
.header-left {
   font-size: 14px;
   display: flex;
   flex-direction: column;
   align-items: flex-start; /* Align everything to the left */
   margin-right: 60px; /* Space between the text section and the photo*/
}
.header-left p {
   margin: 0px 0;  /* Reduce margin to make the paragraphs closer */
   font-size: 1.2em;
}
.logo {
    width: 250px; /* Adjust size of logo */
    margin-right: 20px;
}

.header-right {
   display: flex;
   justify-content: flex-end;
   flex-shrink: 0; /* Prevent image from shrinking */
}
.header-right img {
    width: 100%; /* Adjust the size of your image */
    max-width: 350px;
    height: auto;
    border-radius: 5%; /* Optional: makes it circular */
    object-fit: cover; /* Ensures image covers the area without distortion */
}

/* Profile Image */
.profile-img {
  width: 250px;
  max-width: 100%;
  height: auto;
  border-radius: 0%;
  display: block;
  margin: 0 auto 20px;
  object-fit: cover; /* Ensures the image covers the area of the element without stretching */
}

/* Main Content */
main {
  max-width: 800px;
  margin: 20px auto;
  padding: 0 15px;
}

/* Section Headings */
h2 {
  border-bottom: 2px solid #0073e6;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

/* Paragraphs and Text */
p {
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Links */
a {
  color: #0073e6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


/* List Styles */
ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 4px;
    background-color: #333;
    color: white;
    width: 100%; /* Make it span across the container */
    max-width: 900px; /* Keep it aligned with .container */
    border-top: 2px solid #555;
    box-sizing: border-box; /* Ensures padding is included in width */
    margin: 0 auto; /* Ensure it's centered */
    border-radius: 5px;
}
footer a {
    color: #ffcc00;
    text-decoration: none;
}
footer p{
   margin: 0px 0;  /* Reduce margin to make the paragraphs closer */
   font-size: 15px;
}


/* Responsive Adjustments */
@media (max-width: 600px) {
  header, footer {
    padding: 15px;
  }
  
  main {
    padding: 0 10px;
  }
  
  .profile-img {
    max-width: 100%;
  }
}

