@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;700&display=swap');

:root {
  --primary: #1E293B;
  --secondary: #0EA5E9;
  --accent: #F97316;
  --bg-dark: #0F172A;
  --bg-light: #1E293B;
  --text-light: #F8FAFC;
  --text-secondary: #94A3B8;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --border: #334155;
  --card-bg: #1E293B;
  --hover: #2D3748;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}


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

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

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

h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

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

a:hover {
  color: #38BDF8;
  text-decoration: underline;
}


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

.sidebar {
  width: 25%;
  background-color: var(--bg-light);
  padding: 2rem;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.main-content {
  width: 75%;
  margin-left: 25%;
  padding: 2rem;
  min-height: 100vh;
}


.sidebar-logo {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.sidebar-logo img {
  max-width: 200px;
  height: auto;
}

.sidebar-nav {
  margin-bottom: 2rem;
}

.sidebar-nav ul {
  list-style: none;
}

.sidebar-nav li {
  margin-bottom: 0.75rem;
}

.sidebar-nav a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background-color: var(--hover);
  color: var(--text-light);
  text-decoration: none;
}

.sidebar-nav a i {
  margin-right: 0.75rem;
  width: 20px;
  text-align: center;
}

.sidebar-contact {
  margin-top: auto;
  padding: 1.5rem;
  background-color: var(--primary);
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.sidebar-contact h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.sidebar-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.sidebar-contact i {
  margin-right: 0.5rem;
  color: var(--secondary);
  width: 20px;
  text-align: center;
}

.cookie-settings-btn {
  display: block;
  padding: 0.75rem 1rem;
  background-color: var(--primary);
  color: var(--text-light);
  text-align: center;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cookie-settings-btn:hover {
  background-color: var(--hover);
  text-decoration: none;
}

.cookie-settings-btn i {
  margin-right: 0.5rem;
}


.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem;
  cursor: pointer;
  font-size: 1.5rem;
}


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

.header h1 {
  margin-bottom: 0.5rem;
}

.header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}


.hero {
  background-color: var(--bg-light);
  border-radius: 0.5rem;
  padding: 3rem;
  margin-bottom: 3rem;
  background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('../images/hero-background.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--secondary);
  color: white;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: #38BDF8;
  text-decoration: none;
  color: white;
}

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

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: white;
}


.services {
  margin-bottom: 3rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  background-color: var(--card-bg);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

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

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(14, 165, 233, 0.1);
  color: var(--secondary);
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

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


.process {
  margin-bottom: 3rem;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  gap: 1rem;
}

.process-step {
  background-color: var(--card-bg);
  border-radius: 0.5rem;
  padding: 1.5rem;
  flex: 1;
  min-width: 200px;
  position: relative;
  border: 1px solid var(--border);
}

.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 1.5rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--secondary);
  color: white;
  border-radius: 50%;
  margin-bottom: 1rem;
  font-weight: bold;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}


.metrics {
  margin-bottom: 3rem;
}

.metrics-image {
  margin-top: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

.metrics-image img {
  width: 100%;
  height: auto;
  display: block;
}

.metrics-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.metric-item {
  background-color: var(--card-bg);
  border-radius: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--border);
}

.metric-item h4 {
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}


.benefits {
  margin-bottom: 3rem;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  background-color: var(--card-bg);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.benefit-icon {
  font-size: 1.5rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.benefit-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}


.contact-form {
  margin-top: 3rem;
  background-color: var(--card-bg);
  border-radius: 0.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
}

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

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

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

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--text-light);
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-control::placeholder {
  color: var(--text-secondary);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

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

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

.form-check-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.iti {
  width: 100%;
}


.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: var(--card-bg);
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

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

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.blog-card-excerpt {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.blog-post {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-header {
  margin-bottom: 2rem;
}

.blog-post-date {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-post-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.blog-post-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

.blog-post-content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
}

.blog-post-content h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-post-content li {
  margin-bottom: 0.5rem;
}


.values-content,
.services-content {
  margin-bottom: 3rem;
}

.values-list,
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-item,
.service-item {
  background-color: var(--card-bg);
  border-radius: 0.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
}

.value-item h3,
.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.value-icon,
.service-icon {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}


.contact-info {
  background-color: var(--card-bg);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}

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

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  margin-right: 1rem;
  font-size: 1.5rem;
  color: var(--secondary);
}

.contact-hours {
  background-color: var(--card-bg);
  border-radius: 0.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
}

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

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.hours-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}


.footer {
  background-color: var(--bg-light);
  padding: 2rem;
  margin-top: auto;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-light);
}

.footer-copy {
  color: var(--text-secondary);
  font-size: 0.9rem;
}


.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
}

.legal-content h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

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

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.update-date {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-light);
  padding: 1.5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--border);
}

.cookie-banner p {
  margin-bottom: 0;
  margin-right: 2rem;
}

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

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

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

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

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

.cookie-categories {
  margin-bottom: 1.5rem;
}

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

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

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

.cookie-category-title {
  font-size: 1.25rem;
  font-weight: 500;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary);
  transition: .4s;
  border-radius: 30px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: var(--secondary);
}

input:focus + .cookie-slider {
  box-shadow: 0 0 1px var(--secondary);
}

input:checked + .cookie-slider:before {
  transform: translateX(30px);
}

.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}


.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 2rem;
}

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

.thank-you p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}


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

.modal-content {
  background-color: var(--bg-light);
  border-radius: 0.5rem;
  max-width: 500px;
  width: 100%;
  padding: 2rem;
}

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

.modal-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-body {
  margin-bottom: 1.5rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}


@media (max-width: 1024px) {
  .process-steps {
    flex-direction: column;
  }
  
  .process-step:not(:last-child)::after {
    content: '↓';
    position: absolute;
    bottom: -1.5rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    width: 80%;
    z-index: 999;
    transition: transform 0.3s ease;
  }
  
  .sidebar.active {
    transform: translateX(0);
  }
  
  .main-content {
    width: 100%;
    margin-left: 0;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .service-cards, 
  .benefits-list, 
  .blog-list,
  .values-list,
  .services-list {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner p {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .modal-footer {
    flex-direction: column;
  }
  
  .modal-footer .btn {
    width: 100%;
  }
}