@font-face {
  font-family: 'rawline4';
  src: url('../fonts/rawline-400.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'rawline5';
  src: url('../fonts/rawline-500.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'rawline6';
  src: url('../fonts/rawline-600.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'rawline7';
  src: url('../fonts/rawline-800.ttf') format('truetype');
  font-display: swap;
}

*{
  box-sizing: border-box;
}

body{
  margin: 0;
  padding: 0;
  font-family: 'rawline4', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'rawline6', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

strong, b {
  font-family: 'rawline6', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #000000;
}

header{
  padding: 6px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-header{
  width: 130px;
}

.header-icon-container{
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-icon-container i{
  color: #0056b3;
  font-size: 16px;
}

.banner-container{
  width: 100%;
  height: auto;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.banner-image{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.user-info{
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 15px 0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  background-color: white;
  padding: 15px;
  border-radius: 4px;
  width: 100%;
}

.user-info-text{
  font-family: 'rawline4';
}

.user-info-content{
  font-family: 'rawline4';
}

h4{
  font-family: 'rawline6';
}

.user-info h3 {
  font-weight: 700;
  color: #0c326f;
  margin-bottom: 4px;
}

.user-info p {
  margin: 1px 0;
  color: #333333;
  font-size: 16px;
}

.tax-details {
  margin-top: 25px;
  padding: 15px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.tax-details .document-data dt, .tax-details .document-data dd {
  display: flex;
  align-items: center;
}

.tax-details .document-data {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.tax-details .document-data dd {
  font-family: 'rawline4';
  font-weight: normal;
  padding: 8px 15px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #dee2e6;
  border-radius: 4px;
  margin-left: 0;
  white-space: nowrap;
  overflow-x: auto;
}

.tax-details .document-data dt {
  font-family: 'rawline4';
  font-weight: 600;
  text-align: right;
  padding: 8px 15px;
  background-color: rgba(248, 249, 250, 0.8);
  border: 1px solid #dee2e6;
  border-radius: 4px;
  min-width: 80px;
  white-space: nowrap;
  overflow-x: auto;
}

.regularize-button {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #28a745;
  color: white;
  text-align: center;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'rawline5';
  font-size: 16px;
}

.footer {
  font-family: 'rawline4';
  background-color: #01205B;
  color: white;
  padding: 16px;
  text-align: center;
  margin-top: 40px;
  width: 100%;
  position: relative;
  bottom: 0;
}

.footer-logo {
  width: 100px;
  margin: 0 auto 8px;
  display: block;
}