/* General Styles */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

/* Container */
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1em;
}

/* Profile Image */
.profile-image {
  margin-right: 2vw;
}

.profile-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Header Content */
.header-content {
  text-align: left;
}

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

  .header-content {
    text-align: center;
  }
}

/* Header */
header {
  background: linear-gradient(135deg, #4CAF50, #2F9E99);
  color: #fff;
  padding: 2em 0;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header a:link {
  color: #f9f9f9
}

a:link {
  color: #4CAF50;
}

a:visited {
  color: #173418;
}

a:hover {
  color: #1e4620;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

header p {
  font-size: 1.1em;
}

header a {
  color: #e0f7fa;
  text-decoration: none;
  font-weight: bold;
}

header a:hover {
  text-decoration: underline;
}

/* Sections */
section {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 1.5em 0;
  padding: 0 1.5em 1.5em 1.5em;
}

section h2 {
  font-size: 1.8em;
  margin-bottom: 0.5em;
  border-bottom: 2px solid #4CAF50;
  display: inline-block;
}

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

section ul li {
  margin: 0.5em 0;
  padding-left: 1em;
  position: relative;
}

section ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-size: 1.2em;
}

/* Footer */
footer {
  background: #2F9E99;
  color: #fff;
  text-align: center;
  padding: 1em 0;
  font-size: 0.9em;
  margin-top: 2em;
}

footer a {
  color: #e0f7fa;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Buttons */
a.button {
  display: inline-block;
  background: #4CAF50;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

a.button:hover {
  background: #2F9E99;
}

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

  header p,
  section h2 {
    font-size: 1.5em;
  }
}

/* Header Content for Mobile */
@media (max-width: 768px) {
  .header-content p {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    /* Space between the items */
    text-align: center;
  }

  .header-content p a {
    display: inline-block;
    margin: 0 auto;
  }
}

/* Hide separators on mobile */
@media (max-width: 768px) {
  .sep {
    display: none;
  }
}

.my-container {
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  margin-block-start: 20px;
  box-sizing: border-box;

}

/* Small devices (>= 576px) */
@media (min-width: 576px) {
  .my-container {
    max-width: 540px;
  }
}

/* Medium devices (>= 768px) */
@media (min-width: 768px) {
  .my-container {
    max-width: 720px;
  }
}

/* Large devices (>= 992px) */
@media (min-width: 992px) {
  .my-container {
    max-width: 960px;
  }
}

/* X-Large devices (>= 1200px) */
@media (min-width: 1200px) {
  .my-container {
    max-width: 1140px;
  }
}

/* XX-Large devices (>= 1400px) */
@media (min-width: 1400px) {
  .my-container {
    max-width: 1320px;
  }
}

.my-container-fluid {
  width: 100%;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}