@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Open+Sans:wght@400;600;700&display=swap');

body {
  box-sizing: border-box;
}

* {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1,
h2,
h3 {
  font-family: 'Lora', Georgia, serif;
}

.main-container {
  background: #f8f9fa;
  min-height: 100%;
}

.professional-card {
  background: #ffffff;
  border: 1px solid #dee2e6;
  padding: 40px;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.professional-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-primary {
  background: #1a365d;
  color: #ffffff;
  padding: 16px 40px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: #2c5282;
}

.btn-primary.is-active {
  background: #2c5282;
  box-shadow: 0 6px 14px rgba(26, 54, 93, 0.25);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e9ecef;
}

.contact-item:last-child {
  border-bottom: none;
}

.shareholder-rows {
  display: grid;
  gap: 20px;
}

.shareholder-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.shareholder-cell {
  border-left: 1px solid #e5e7eb;
  padding-left: 20px;
}

.shareholder-cell:first-child {
  border-left: none;
  padding-left: 0;
}

@media (max-width: 768px) {
  .shareholder-row {
    grid-template-columns: 1fr;
  }

  .shareholder-cell {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
  }

  .shareholder-cell:first-child {
    border-top: none;
    padding-top: 0;
  }
}

.accent-line {
  width: 80px;
  height: 3px;
  background: #1a365d;
  margin-bottom: 24px;
}

.header-badge {
  display: inline-block;
  background: #1a365d;
  color: #ffffff;
  padding: 8px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

@view-transition {
  navigation: auto;
}

.shareholder-title {
  color: #1a365d;
  font-size: 28px;
  font-weight: 700;
}

.shareholder-underline {
  width: 320px;
  max-width: 90%;
  height: 6px;
  background: #1a365d;
  margin: 8px auto 16px;
  border-radius: 999px;
}
