
:root {
  --primary-blue: #1A365D;
  --secondary-blue: #2B4F81;
  --light-blue: #EBF4FF;
  --accent-blue: #3B82F6;
  --dark-gray: #4A5568;
  --medium-gray: #718096;
  --light-gray: #E2E8F0;
  --background-white: #FFFFFF;
  --text-black: #1A202C;
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s ease;
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-black);
  background-color: var(--background-white);
  line-height: 1.6;
  display: flex;
  min-height: 100vh;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition);
}

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

button, .btn {
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  transition: var(--transition);
}

button:focus, .btn:focus {
  outline: none;
}

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


.layout-container {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.sidebar {
  width: 20%;
  min-width: 250px;
  background-color: var(--light-blue);
  padding: 2rem 1rem;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  box-shadow: var(--box-shadow);
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.main-content {
  width: 80%;
  margin-left: 20%;
  min-height: 100vh;
  overflow-x: hidden;
}


.logo-container {
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.logo-container img {
  max-width: 100%;
  height: auto;
}

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

.nav-item {
  margin-bottom: 0.5rem;
}

.nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--primary-blue);
  border-radius: 0.375rem;
  font-weight: 500;
  transition: var(--transition);
}

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

.sidebar-footer {
  margin-top: auto;
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--medium-gray);
}


.mobile-nav-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 200;
  background-color: var(--accent-blue);
  color: white;
  border: none;
  border-radius: 0.375rem;
  padding: 0.5rem;
  cursor: pointer;
}


.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-align: center;
  border: none;
  transition: var(--transition);
}

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

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

.btn-secondary {
  background-color: var(--light-blue);
  color: var(--primary-blue);
}

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

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

.btn-accent:hover, .btn-accent:focus {
  background-color: #2563EB;
  color: white;
}


.hero-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(26, 54, 93, 0.7) 100%);
}

.hero-content {
  max-width: 600px;
  padding: 3rem;
  margin-left: 5%;
  margin-top: 10%;
  background: rgba(26, 54, 93, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  transform: skewX(-5deg);
}

.hero-content-inner {
  transform: skewX(5deg);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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


.section {
  padding: 4rem 2rem;
}

.section-title {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background-color: var(--accent-blue);
  border-radius: 2px;
}


.card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: auto;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}


.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.iti {
  width: 100%;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}


.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-blue);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--light-gray);
  border-radius: 0.375rem;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.form-text {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--medium-gray);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.form-check-input {
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.form-check-label {
  font-size: 0.875rem;
  color: var(--dark-gray);
}


.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--light-gray);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 3px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  right: -12px;
  background-color: white;
  border: 4px solid var(--accent-blue);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item.right::after {
  left: -12px;
}

.timeline-content {
  padding: 20px;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
}


.testimonial {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--light-gray);
  position: absolute;
  top: -2rem;
  left: -1rem;
  opacity: 0.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.testimonial-author-info h4 {
  margin: 0;
  color: var(--primary-blue);
}

.testimonial-author-info p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--medium-gray);
}


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

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.feature-icon {
  background-color: var(--light-blue);
  color: var(--accent-blue);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.25rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--dark-gray);
  margin: 0;
}


.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  min-width: 200px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--dark-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-blue);
  color: white;
  padding: 1rem;
  z-index: 1000;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
}

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

.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.active {
  display: flex;
}

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

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

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

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

.cookie-category-title {
  font-size: 1.25rem;
  color: var(--primary-blue);
  margin: 0;
}


.footer {
  background-color: var(--primary-blue);
  color: white;
  padding: 3rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 1rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-blue);
}

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

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-link a:hover {
  color: white;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  margin-right: 1rem;
  color: var(--accent-blue);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}


@media (max-width: 992px) {
  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item.right {
    left: 0;
  }
  
  .timeline-item::after {
    left: 18px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    width: 250px;
  }
  
  .sidebar.active {
    transform: translateX(0);
  }
  
  .main-content {
    width: 100%;
    margin-left: 0;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }
  
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
  
  .hero-section {
    height: auto;
    min-height: 60vh;
  }
  
  .hero-content {
    margin-left: 0;
    margin-top: 20%;
    padding: 2rem;
    max-width: 90%;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 1.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  .hero-content {
    transform: none;
    max-width: 100%;
    margin: 0;
    padding: 1.5rem;
  }
  
  .hero-content-inner {
    transform: none;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .stat-item {
    min-width: 140px;
    padding: 1.5rem 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}