
:root {
  --navy-blue: #0A2463;
  --royal-blue: #1E5CB3;
  --sky-blue: #70A9E6;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --dark-gray: #343A40;
  --success-green: #28A745;
  --alert-red: #DC3545;
  --neutral-gray: #6C757D;
}

body {
  font-family: 'Karla', sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Spectral', serif;
  font-weight: 500;
  color: var(--navy-blue);
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--royal-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: var(--navy-blue);
  text-decoration: underline;
}

.btn {
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--navy-blue);
  border-color: var(--navy-blue);
}

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

.btn-success:hover, .btn-success:focus {
  background-color: #218838;
  border-color: #218838;
}

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

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--royal-blue);
  color: var(--white);
}


.header {
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.navbar-brand img {
  height: 40px;
}

.nav-hidden {
  position: absolute;
  left: -9999px;
}


.nav-orb {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--royal-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-orb:hover {
  background-color: var(--navy-blue);
  transform: scale(1.05);
}

.nav-orb-menu {
  position: fixed;
  bottom: 7rem;
  right: 2rem;
  background-color: var(--white);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.nav-orb-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-orb-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-orb-menu ul li {
  margin-bottom: 0.75rem;
}

.nav-orb-menu ul li:last-child {
  margin-bottom: 0;
}

.nav-orb-menu ul li a {
  color: var(--dark-gray);
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-orb-menu ul li a:hover {
  background-color: var(--light-gray);
  text-decoration: none;
  color: var(--royal-blue);
}


.hero {
  padding: 6rem 0;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--navy-blue);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--neutral-gray);
}

.hero-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.03);
}

.hero-stats {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hero-stats .stat {
  text-align: center;
}

.hero-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--royal-blue);
  margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
  font-size: 0.875rem;
  color: var(--neutral-gray);
}


.feature-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
  font-size: 2.5rem;
  color: var(--royal-blue);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--neutral-gray);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-alt {
  background-color: var(--light-gray);
}


.process-steps {
  position: relative;
  padding-left: 3rem;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  height: 100%;
  width: 2px;
  background-color: var(--sky-blue);
}

.step {
  position: relative;
  margin-bottom: 2.5rem;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: var(--royal-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 1;
}

.step-content {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}


.security-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--royal-blue);
}

.security-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--navy-blue);
}


.dashboard-preview {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.dashboard-preview img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}


.pricing-table {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.pricing-table h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.pricing-table .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--royal-blue);
  margin-bottom: 1.5rem;
  text-align: center;
}

.pricing-table ul {
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-table ul li {
  margin-bottom: 0.5rem;
}

.pricing-table .btn {
  width: 100%;
}


.contact-form {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  border-radius: 4px;
  padding: 0.75rem 1rem;
  border: 1px solid #ced4da;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 0.2rem rgba(30, 92, 179, 0.25);
}

.form-label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}


.iti {
  width: 100%;
}


.footer {
  background-color: var(--navy-blue);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links li a {
  color: var(--sky-blue);
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-contact p {
  margin-bottom: 0.75rem;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--sky-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
}

.footer-bottom p {
  margin-bottom: 0;
}


.breadcrumb-section {
  background-color: var(--light-gray);
  padding: 1rem 0;
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: var(--neutral-gray);
}

.breadcrumb-item.active {
  color: var(--royal-blue);
}


.page-title {
  padding: 3rem 0;
  background-color: var(--light-gray);
}

.page-title h1 {
  margin-bottom: 1rem;
}

.page-title p {
  font-size: 1.25rem;
  color: var(--neutral-gray);
  margin-bottom: 0;
}


.article {
  padding: 3rem 0;
}

.article h1 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.article p {
  margin-bottom: 1.5rem;
}

.article h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.article h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article ul, .article ol {
  margin-bottom: 1.5rem;
}

.article img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.article-meta {
  margin-bottom: 2rem;
  color: var(--neutral-gray);
}

.article-meta span {
  margin-right: 1rem;
}

.article-meta i {
  margin-right: 0.5rem;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1002;
  align-items: center;
  justify-content: center;
}

.cookie-settings-modal.show {
  display: flex;
}

.cookie-settings-content {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cookie-settings-header h3 {
  margin-bottom: 0;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}

.cookie-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cookie-category-header h4 {
  margin-bottom: 0;
}

.cookie-category-description {
  margin-bottom: 1rem;
}


.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1002;
  align-items: center;
  justify-content: center;
}

.success-modal.show {
  display: flex;
}

.success-modal-content {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.success-modal-content h3 {
  margin-bottom: 1rem;
}

.success-modal-content p {
  margin-bottom: 1.5rem;
}

.success-modal-icon {
  font-size: 4rem;
  color: var(--success-green);
  margin-bottom: 1.5rem;
}


@media (max-width: 991.98px) {
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .process-steps {
    padding-left: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding: 3rem 0;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .process-steps::before {
    left: 12px;
  }
  
  .step-number {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .nav-orb {
    width: 50px;
    height: 50px;
  }
  
  .nav-orb-menu {
    width: 220px;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding: 2rem 0;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .feature-card {
    padding: 1.25rem;
  }
  
  .step-content {
    padding: 1.25rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
}