/* Base styles replicating Minima theme */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  background-color: #fdfdfd;
  margin: 0;
  padding: 0;
}

/* Container */
.wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 15px;
}

/* Header */
.site-header {
  border-top: 5px solid #424242;
  border-bottom: 1px solid #e8e8e8;
  min-height: 55.95px;
  position: relative;
}

.site-title {
  font-size: 26px;
  font-weight: 300;
  line-height: 54px;
  letter-spacing: -1px;
  margin-bottom: 0;
  float: left;
  text-decoration: none;
  color: #424242;
}

.site-title:hover {
  text-decoration: none;
}

/* Navigation */
.site-nav {
  float: right;
  line-height: 54px;
}

.site-nav a {
  color: #111;
  text-decoration: none;
  margin-left: 20px;
}

.site-nav a:hover {
  color: #111;
  text-decoration: underline;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e8e8e8;
  padding: 30px 0;
  margin-top: 50px;
  background-color: #f9f9f9;
}

.footer-content {
  text-align: center;
  color: #828282;
  font-size: 14px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  color: #111;
}

h1 {
  font-size: 32px;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 15px;
}

h2 {
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 15px;
}

h3 {
  font-size: 24px;
  margin-top: 25px;
  margin-bottom: 10px;
}

h4 {
  font-size: 20px;
  margin-top: 20px;
}

p {
  margin-bottom: 15px;
}

a {
  color: #2a7ae2;
  text-decoration: none;
}

a:hover {
  color: #1756a9;
  text-decoration: underline;
}

/* Lists */
ul, ol {
  margin-left: 30px;
  margin-bottom: 15px;
}

li {
  margin-bottom: 5px;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  text-align: left;
}

table th {
  background-color: #f0f0f0;
  border: 1px solid #e0e0e0;
  padding: 10px;
  font-weight: 600;
}

table td {
  border: 1px solid #e0e0e0;
  padding: 10px;
}

table tr:nth-child(even) {
  background-color: #f9f9f9;
}

table a {
  font-weight: 600;
}

/* Horizontal rule */
hr {
  border: 0;
  border-top: 1px solid #e8e8e8;
  margin: 30px 0;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* Custom components */
.profile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 20px;
}

.profile-info {
  flex: 1;
  text-align: left;
  min-width: 300px;
}

.profile-photo {
  flex-shrink: 0;
}

.profile-photo img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ccc;
}

/* Button styles */
.button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  height: 50px;
  background-color: transparent;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
  border: 1px solid #ddd;
  cursor: pointer;
  padding: 0 20px;
}

.btn:hover {
  background-color: #e0e0e0;
  text-decoration: none;
}

/* Document thumbnails */
.doc-thumb {
  width: 180px;
  height: auto;
  object-fit: cover;
  border: 1px solid #ccc;
  display: block;
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .wrapper {
    padding: 20px 10px;
  }
  
  .profile-header {
    flex-direction: column;
    text-align: center;
  }
  
  .profile-info {
    text-align: center;
  }
  
  .site-nav {
    float: none;
    text-align: center;
    line-height: 1.5;
    padding: 10px 0;
  }
  
  .site-nav a {
    display: inline-block;
    margin: 5px 10px;
  }
  
  .button-group {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  table {
    font-size: 14px;
  }
  
  table th,
  table td {
    padding: 8px 5px;
  }
}

/* Strong text and emphasis */
strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

/* Contact info styling */
.contact-info {
  line-height: 1.8;
}

.contact-info strong {
  display: inline-block;
  min-width: 100px;
}
