/* Base Styles */
body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: auto;
  padding: 20px 0;
}

/* Header / Hero */
header {
  background-color: #1E3557;
  color: #fff;
  text-align: center;
  padding: 20px 20px;
}

header h1 {
  margin: 20px 0 1px;
  font-size: 2em;
}

header .tagline {
  font-size: 1.1em;
  font-weight: 300;
  margin-bottom: 1px
}

.headshot {
  width: 220px;
  height: 220px;
  border-radius: 10%;
  object-fit: cover;
  border: 4px solid #fff;
}

/* Section Titles */
section h2 {
  color: #1E3557;
  font-size: 1.8em;
  margin-bottom: 5px;
}

/* Experience List */
#experience ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  margin: 10px 10px 0 0;
  padding: 10px 20px;
  background-color: #1E3557;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #1E3557;
}

.btn.linkedin {
  background-color: #0077b5;
}

.btn.linkedin:hover {
  background-color: #005983;
}

/* Footer */
footer {
  text-align: center;
  padding: 1px;
  background: #222;
  color: #fff;
  margin-top: 20px;
}






/* Education layout */
.education {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 20px;
}

.edu-item {
  width: 30%;
}

.icon {
  width: 160px;
  margin-bottom: 10px;
}

/* Certifications */
.certifications {
  margin-top: 10px;
  margin-left: 0%;
  margin-right: 0%;
}

.cert-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.badge {
  width: 180px;
  margin-right: 20px;
}









@media (max-width: 768px) {
  .education {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .edu-item {
    width: 100%;
    max-width: 400px;
  }

  .certifications {
    margin-left: 0;
    margin-right: 0;
  }

  .cert-item {
    flex-direction: column;
    text-align: center;
  }

  .badge {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .icon {
    width: 90px;
  }

  .badge {
    width: 140px;
  }

  header h1 {
    font-size: 2em;
  }

  header .tagline {
    font-size: 1.2em;
  }
}