/* Default Light Mode */
:root {
  --background-color: white;
  --text-color: black;
  --link-color: #60BFFA;
  --link-hover-color: #0077cc;
}

/* Dark Mode Styles */
@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #121212;
    --text-color: #e0e0e0;
    --link-color: #60BFFA;
    --link-hover-color: #0077cc;
  }
}

/* General styles for header links */
header a {
  text-decoration: none;
  color: #74599A;
  font-style: normal;
}

header a:hover {
  color: #60BFFA;
}

body {
  font-family: sans-serif;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: var(--background-color);
  color: var(--text-color);
  transition: background-color 0.3s, color 0.3s;
}

.spacer {
  height: 4rem;
}

.link-home {
  text-align: center;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  color: black;
  font-style: normal;
}

h1 {
  text-align: left;
  font-weight: 800;
  // display: inline-block; //
  line-height: 1.4;
  margin: 0;
}

a {
  color: var(--link-color);
  text-decoration: none;
  font-style: italic;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--link-hover-color);
}

.contact-info {
  text-align: right;
  margin-top: 2rem;
}

.contact-info p {
  margin: 0.5rem 0;
}

/* Default image styles for mobile */
.single-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px;
  margin: 0 auto;
}

/* Desktop: scale first image to 70% */
@media (min-width: 768px) {
  .first-image img {
    width: 70%;
  }
}

/* General container settings */
.single-image-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 0px;
  margin: 0 auto;
}

/* Default (mobile): 80% */
.last-image img {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Desktop: 50% */
@media (min-width: 768px) {
  .last-image img {
    width: 50%;
  }
}


/* Header styling */
.centered-header {
  text-align: center;
  margin-top: 2rem;
  font-size: 2rem;
  font-weight: bold;
  color: #74599A;
}

/* Standard Text */
standard-text {
  display: block;
  text-align: center;
  max-width: 800px;
  margin: 1rem auto;
  line-height: 1.8;
  font-size: 1.1rem;
}


/* Check mark list styling */
.certification-list {
  max-width: 680px;
  margin: 1rem auto;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.6;
}

.certification-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.certification-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.certification-list li::before {
  content: "✅";
  margin-right: 0.6rem;
  flex-shrink: 0;
}

.certification-list .note {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: #666;
}



/* Footer */
footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9em;
  color: #666;
}
