
:root {
  --primary: #1A365D;
  --secondary: #2C5282;
  --accent: #E53E3E;
  --light-accent: #EDF2F7;
  --background: #FFFFFF;
  --text: #2D3748;
  --light-text: #718096;
  --footer-bg: #F8FAFC;
  --border: #E2E8F0;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--background);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

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

p {
  margin-bottom: 1.5rem;
  font-weight: 300;
}

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

a:hover, a:focus {
  color: var(--accent);
  text-decoration: none;
}

.btn {
  border-radius: 0;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

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

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

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

.btn-accent:hover, .btn-accent:focus {
  background-color: #C53030;
  border-color: #C53030;
  color: white;
}

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

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


.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

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

.navbar .nav-link {
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbar .nav-link:hover, .navbar .nav-link:focus, .navbar .nav-link.active {
  color: var(--accent);
}

.navbar-contact {
  font-weight: 500;
  color: var(--primary);
}

.navbar-contact i {
  color: var(--accent);
  margin-right: 0.5rem;
}


.hero {
  padding: 5rem 0;
  background-color: var(--light-accent);
  position: relative;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 300;
}


.contact-form {
  background-color: white;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.form-control {
  border-radius: 0;
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--secondary);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.iti {
  width: 100%;
}


.services {
  padding: 5rem 0;
}

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

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

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


.benefits {
  padding: 5rem 0;
  background-color: var(--light-accent);
}

.benefit-item {
  margin-bottom: 2rem;
}

.benefit-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}


.competencies {
  padding: 5rem 0;
}

.competency-list {
  column-count: 2;
  column-gap: 2rem;
}

.competency-item {
  margin-bottom: 1rem;
  break-inside: avoid;
}

.competency-item i {
  color: var(--secondary);
  margin-right: 0.5rem;
}


.service-levels {
  padding: 5rem 0;
  background-color: var(--light-accent);
}

.service-level-card {
  background-color: white;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.service-level-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-level-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-level-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.service-level-card ul {
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.service-level-card ul li {
  margin-bottom: 0.5rem;
}


.case-studies {
  padding: 5rem 0;
}

.case-study {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.case-study:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.case-study h3 {
  margin-bottom: 1rem;
}

.case-study-meta {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--light-text);
}

.case-study-meta span {
  margin-right: 1.5rem;
}

.case-study-meta i {
  margin-right: 0.5rem;
  color: var(--secondary);
}

.case-study-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.case-study-image img {
  transition: all 0.5s ease;
  width: 100%;
  height: auto;
}

.case-study:hover .case-study-image img {
  transform: scale(1.05);
}


.technologies {
  padding: 5rem 0;
  background-color: var(--light-accent);
}

.technology-logo {
  height: 60px;
  margin: 1rem;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.technology-logo:hover {
  filter: grayscale(0%);
}


.cta {
  padding: 5rem 0;
  background-color: var(--primary);
  color: white;
}

.cta h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.cta .btn-light:hover, .cta .btn-light:focus {
  background-color: var(--light-accent);
  color: var(--primary);
  border-color: var(--light-accent);
}


.about-intro {
  padding: 5rem 0;
}

.about-process {
  padding: 5rem 0;
  background-color: var(--light-accent);
}

.process-step {
  position: relative;
  padding-left: 6rem;
  margin-bottom: 3rem;
}

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

.process-step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.about-security {
  padding: 5rem 0;
}


.service-detail {
  padding: 5rem 0;
}

.service-detail-card {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-detail-card h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.service-detail-card img {
  margin-bottom: 1.5rem;
  width: 100%;
  height: auto;
}

.service-detail-card .problem,
.service-detail-card .solution,
.service-detail-card .results {
  margin-bottom: 1.5rem;
}

.service-detail-card .problem h4,
.service-detail-card .solution h4,
.service-detail-card .results h4 {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}


.contact-page {
  padding: 5rem 0;
}

.contact-info {
  margin-bottom: 3rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  color: var(--accent);
  font-size: 1.5rem;
  margin-right: 1rem;
  vertical-align: middle;
}

.contact-map {
  height: 400px;
  margin-bottom: 3rem;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-hours {
  margin-bottom: 3rem;
}

.contact-hours h3 {
  margin-bottom: 1.5rem;
}

.contact-hours p {
  margin-bottom: 0.5rem;
}


.thank-you {
  padding: 8rem 0;
  text-align: center;
}

.thank-you i {
  font-size: 5rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.thank-you h1 {
  margin-bottom: 1.5rem;
}

.thank-you p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}


.legal-page {
  padding: 5rem 0;
}

.legal-page h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.legal-page h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-page p, .legal-page ul, .legal-page ol {
  margin-bottom: 1.5rem;
}

.legal-page ul, .legal-page ol {
  padding-left: 2rem;
}

.legal-page ul li, .legal-page ol li {
  margin-bottom: 0.5rem;
}

.legal-update {
  color: var(--light-text);
  font-style: italic;
  margin-bottom: 2rem;
}


.footer {
  background-color: var(--footer-bg);
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 40px;
}

.footer-contact {
  margin-bottom: 1.5rem;
}

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

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

.footer-links h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

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

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

.footer-bottom {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--light-text);
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}


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

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

.cookie-banner p {
  margin-bottom: 1rem;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  align-items: center;
  justify-content: center;
}

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

.cookie-settings-content {
  background-color: white;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

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

.cookie-settings-close {
  font-size: 1.5rem;
  color: var(--light-text);
  cursor: pointer;
}

.cookie-settings-body {
  margin-bottom: 1.5rem;
}

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

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

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

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

.cookie-category-toggle .form-check-input {
  width: 3rem;
  height: 1.5rem;
}

.cookie-settings-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}


.modal-dialog {
  max-width: 500px;
}

.modal-content {
  border-radius: 0;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
}


@media (max-width: 991.98px) {
  .navbar-brand img {
    height: 35px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .competency-list {
    column-count: 1;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .services, .benefits, .competencies, .service-levels, .case-studies, .technologies, .cta, 
  .about-intro, .about-process, .about-security, .service-detail, .contact-page, .legal-page {
    padding: 3rem 0;
  }
  
  .process-step {
    padding-left: 0;
    padding-top: 5rem;
  }
  
  .process-step-number {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer {
    padding: 2rem 0;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
  
  .cookie-banner-buttons button {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .contact-form {
    padding: 1.5rem;
  }
  
  .service-card, .service-level-card, .service-detail-card {
    padding: 1.5rem;
  }
  
  .cookie-settings-content {
    padding: 1.5rem;
  }
  
  .modal-header, .modal-body, .modal-footer {
    padding: 1rem;
  }
}