* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    'Segoe UI',
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a202c;
  background-color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:
    'Poppins',
    system-ui,
    -apple-system,
    'Segoe UI',
    sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 16px;
}

a {
  color: #2c3e72;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  color: #1f2b50;
}

ul,
ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  background-color: #2c3e72;
  color: white;
  padding: 16px;
  text-decoration: none;
}
.skip-link:focus {
  clip: auto;
  height: auto;
  width: auto;
  display: block;
  z-index: 100000;
}

.site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

.site-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

.site-header {
  background-color: white;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .site-branding img {
  max-height: 50px;
  width: auto;
}
.site-header .main-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.site-header .main-navigation ul li {
  margin: 0;
}
.site-header .main-navigation ul li a {
  color: #1a202c;
  font-weight: 500;
  padding: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-header .main-navigation ul li a:hover {
  color: #2c3e72;
}
.site-header .main-navigation ul li.current-menu-item a {
  color: #2c3e72;
}

.site-footer {
  background-color: #1a202c;
  color: white;
  padding: 48px 0;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}
.site-footer a:hover {
  color: white;
}
.site-footer .widget-title {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.section-padding {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .section-padding {
    padding: 96px 0;
  }
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.btn:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.btn.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn.btn-primary:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.btn.btn-primary:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.btn.btn-primary {
  background-color: #2c3e72;
  color: white;
}
.btn.btn-primary:hover {
  background-color: #1f2b50;
}
.btn.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn.btn-secondary:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.btn.btn-secondary:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.btn.btn-secondary {
  background-color: #f6923c;
  color: white;
}
.btn.btn-secondary:hover {
  background-color: #e67e1f;
}
.btn.btn-outline {
  background-color: transparent;
  border: 2px solid #2c3e72;
  color: #2c3e72;
}
.btn.btn-outline:hover {
  background-color: #2c3e72;
  color: white;
}
.btn.btn-lg {
  padding: 16px 32px;
  font-size: 1.125rem;
}
.btn.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.card {
  background-color: white;
  border-radius: 12px;
  padding: 24px;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card:hover {
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a202c;
}
.form-group input[type='text'],
.form-group input[type='email'],
.form-group input[type='password'],
.form-group input[type='tel'],
.form-group input[type='url'],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form-group input[type='text']:focus,
.form-group input[type='email']:focus,
.form-group input[type='password']:focus,
.form-group input[type='tel']:focus,
.form-group input[type='url']:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #2c3e72;
  -webkit-box-shadow: 0 0 0 3px rgba(44, 62, 114, 0.1);
  box-shadow: 0 0 0 3px rgba(44, 62, 114, 0.1);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}
.badge.badge-primary {
  background-color: rgba(44, 62, 114, 0.1);
  color: #2c3e72;
}
.badge.badge-secondary {
  background-color: rgba(246, 146, 60, 0.1);
  color: #e67e1f;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.animate-fade-in {
  -webkit-animation: fadeIn 0.6s ease-in-out;
  animation: fadeIn 0.6s ease-in-out;
}

.animate-slide-up {
  -webkit-animation: slideUp 0.6s ease-out;
  animation: slideUp 0.6s ease-out;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.hidden {
  display: none;
}

.text-primary {
  color: #2c3e72;
}

.text-secondary {
  color: #f6923c;
}

.text-accent {
  color: #ee2c46;
}

.bg-primary {
  background-color: #2c3e72;
}

.bg-secondary {
  background-color: #f6923c;
}

.bg-accent {
  background-color: #ee2c46;
}

.rounded {
  border-radius: 8px;
}

.rounded-lg {
  border-radius: 12px;
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-sm {
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
