:root {
  --primary: #0052ff;
  --primary-dark: #0041cc;
  --secondary: #6c757d;
  --light: #f8f9fa;
  --dark: #212529;
  --success: #198754;
  --warning: #ffc107;
  --danger: #dc3545;
}

html,
body {
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #3381ff 100%);
}

.min-vh-75 {
  min-height: 75vh;
}

.card {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
}

.card.no-animation {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.btn {
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.navbar-brand {
  font-weight: 700;
}

.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.rounded-3 {
  border-radius: 1rem !important;
}

.display-5 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 700;
}

@media (min-width: 1200px) {
  .display-5 {
    font-size: 2.5rem;
  }
}

.lead {
  font-size: 1.1rem;
  font-weight: 400;
}

.fw-semibold {
  font-weight: 600;
}

.bg-opacity-10 {
  opacity: 0.1;
}

.martor-content {
  color: #212529 !important;
  line-height: 1.7;
}

.martor-content h1,
.martor-content h2,
.martor-content h3,
.martor-content h4,
.martor-content h5,
.martor-content h6 {
  color: #0052ff;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 600;
}

.martor-content h1 {
  font-size: 2rem;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 0.3em;
}

.martor-content h2 {
  font-size: 1.75rem;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 0.3em;
}

.martor-content h3 {
  font-size: 1.5rem;
}

.martor-content h4 {
  font-size: 1.25rem;
}

.martor-content p {
  margin-bottom: 1em;
}

.martor-content ul,
.martor-content ol {
  margin-bottom: 1em;
  padding-left: 2em;
}

.martor-content li {
  margin-bottom: 0.5em;
}

.martor-content blockquote {
  border-left: 4px solid #0052ff;
  background-color: #f8f9fa;
  padding: 1em 1.5em;
  margin: 1.5em 0;
  font-style: italic;
}

.martor-content code {
  background-color: #f8f9fa;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-size: 0.9em;
  color: #e83e8c;
}

.martor-content pre {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 1em;
  overflow-x: auto;
  margin: 1.5em 0;
}

.martor-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.martor-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

.martor-content table th,
.martor-content table td {
  border: 1px solid #dee2e6;
  padding: 0.75em;
  text-align: left;
}

.martor-content table th {
  background-color: #f8f9fa;
  font-weight: 600;
}

.martor-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1em 0;
}

.martor-content a {
  color: #0052ff;
  text-decoration: none;
}

.martor-content a:hover {
  text-decoration: underline;
}

.martor-content strong {
  font-weight: 600;
  color: #212529;
}

.martor-content em {
  font-style: italic;
}
