
:root {
  --ts-primary: #2D6A4F;
  --ts-secondary: #40916C;
  --ts-accent: #D8F3DC;
  --ts-dark: #1B4332;
  --ts-light: #F8FAF9;
  --ts-medium: #74C69D;
  --ts-warning: #E76F51;
  --ts-success: #52B788;
  --ts-info: #4D908E;
  --ts-shadow: rgba(27, 67, 50, 0.1);
  --ts-transition: all 0.3s ease;
  --ts-radius: 0.5rem;
  --ts-radius-lg: 1rem;
  --ts-font-family: 'DM Sans', sans-serif;
}

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

body {
  font-family: var(--ts-font-family);
  color: var(--ts-dark);
  background-color: var(--ts-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-wrap: balance;
}

p {
  margin-bottom: 1.5rem;
  text-wrap: pretty;
}

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

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

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


.ts-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ts-section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .ts-section {
    padding: 3rem 0;
  }
}

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

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

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

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

@media (max-width: 992px) {
  .ts-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ts-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ts-cols-2, .ts-cols-3, .ts-cols-4 {
    grid-template-columns: 1fr;
  }
}


.ts-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--ts-light);
  box-shadow: 0 2px 10px var(--ts-shadow);
  padding: 1rem 0;
}

.ts-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ts-logo {
  width: 180px;
  height: 50px;
}

.ts-logo a {
  display: block;
}

.ts-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.ts-nav-item {
  position: relative;
}

.ts-nav-link {
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.ts-nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--ts-primary);
  transition: var(--ts-transition);
}

.ts-nav-link:hover::after, 
.ts-nav-link:focus::after,
.ts-nav-link.ts-active::after {
  width: 100%;
}

.ts-nav-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ts-phone {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ts-phone svg {
  color: var(--ts-primary);
}

.ts-contact-btn {
  background-color: var(--ts-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--ts-radius);
  font-weight: 500;
  transition: var(--ts-transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ts-contact-btn:hover, .ts-contact-btn:focus {
  background-color: var(--ts-secondary);
  color: white;
  text-decoration: none;
}

.ts-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ts-dark);
}

@media (max-width: 992px) {
  .ts-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--ts-light);
    flex-direction: column;
    justify-content: flex-start;
    padding: 5rem 2rem;
    transition: var(--ts-transition);
    box-shadow: -5px 0 15px var(--ts-shadow);
    z-index: 101;
  }
  
  .ts-nav.ts-active {
    right: 0;
  }
  
  .ts-menu-toggle {
    display: block;
    z-index: 102;
    font-size: 1.5rem;
  }
  
  .ts-nav-item {
    width: 100%;
  }
  
  .ts-nav-link {
    display: block;
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  
  .ts-nav-contact {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 2rem;
  }
  
  .ts-contact-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}


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

.ts-footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .ts-footer-content {
    grid-template-columns: 1fr;
  }
}

.ts-footer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--ts-accent);
}

.ts-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.ts-footer-contact-item svg {
  color: var(--ts-accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.ts-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ts-footer-links a {
  color: var(--ts-accent);
  transition: var(--ts-transition);
}

.ts-footer-links a:hover {
  color: white;
  text-decoration: none;
}

.ts-footer-bottom {
  margin-top: 3rem;
  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);
}

.ts-cookie-settings {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--ts-radius);
  cursor: pointer;
  transition: var(--ts-transition);
}

.ts-cookie-settings:hover {
  background-color: rgba(255, 255, 255, 0.2);
}


.ts-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--ts-radius);
  font-weight: 500;
  transition: var(--ts-transition);
  border: none;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}

.ts-button-primary {
  background-color: var(--ts-primary);
  color: white;
}

.ts-button-primary:hover, .ts-button-primary:focus {
  background-color: var(--ts-secondary);
  color: white;
  text-decoration: none;
}

.ts-button-outline {
  background-color: transparent;
  color: var(--ts-primary);
  border: 2px solid var(--ts-primary);
}

.ts-button-outline:hover, .ts-button-outline:focus {
  background-color: var(--ts-primary);
  color: white;
  text-decoration: none;
}

.ts-button-accent {
  background-color: var(--ts-accent);
  color: var(--ts-dark);
}

.ts-button-accent:hover, .ts-button-accent:focus {
  background-color: var(--ts-medium);
  color: var(--ts-dark);
  text-decoration: none;
}


.ts-home-hero {
  position: relative;
  padding: 5rem 0;
  background-color: var(--ts-accent);
  overflow: hidden;
}

.ts-home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(to right, transparent, var(--ts-accent)), url('../images/hero-dashboard.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}

.ts-home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.ts-home-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--ts-dark);
}

.ts-home-hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--ts-primary);
}

.ts-home-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .ts-home-hero h1 {
    font-size: 2.5rem;
  }
  
  .ts-home-hero::before {
    width: 100%;
    opacity: 0.15;
  }
}

.ts-features {
  padding: 5rem 0;
}

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

.ts-section-heading h2 {
  font-size: 2.5rem;
  color: var(--ts-primary);
  margin-bottom: 1rem;
}

.ts-section-heading p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.ts-feature-card {
  background-color: white;
  border-radius: var(--ts-radius-lg);
  padding: 2rem;
  box-shadow: 0 5px 20px var(--ts-shadow);
  transition: var(--ts-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ts-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--ts-shadow);
}

.ts-feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--ts-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ts-feature-icon svg {
  color: var(--ts-primary);
  width: 30px;
  height: 30px;
}

.ts-feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--ts-dark);
}

.ts-feature-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.ts-feature-card-footer {
  margin-top: auto;
}


.ts-calculator {
  background-color: var(--ts-light);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.ts-calculator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, var(--ts-accent) 0%, transparent 50%);
  z-index: 0;
}

.ts-calculator-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 992px) {
  .ts-calculator-content {
    grid-template-columns: 1fr;
  }
}

.ts-calculator-info h2 {
  font-size: 2.5rem;
  color: var(--ts-primary);
  margin-bottom: 1.5rem;
}

.ts-calculator-info p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.ts-calculator-form {
  background-color: white;
  border-radius: var(--ts-radius-lg);
  padding: 2rem;
  box-shadow: 0 10px 30px var(--ts-shadow);
}

.ts-calculator-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--ts-dark);
  text-align: center;
}

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

.ts-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.ts-form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--ts-radius);
  font-family: var(--ts-font-family);
  font-size: 1rem;
  transition: var(--ts-transition);
}

.ts-form-control:focus {
  outline: none;
  border-color: var(--ts-primary);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.2);
}

.ts-calculator-results {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.ts-result-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #eee;
}

.ts-result-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ts-result-label {
  font-weight: 500;
}

.ts-result-value {
  font-weight: 700;
  color: var(--ts-primary);
}


.ts-market-trends {
  padding: 5rem 0;
  background-color: white;
}

.ts-trends-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.ts-trends-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ts-filter-button {
  padding: 0.5rem 1rem;
  background-color: #f0f0f0;
  border: none;
  border-radius: var(--ts-radius);
  cursor: pointer;
  transition: var(--ts-transition);
}

.ts-filter-button:hover {
  background-color: #e0e0e0;
}

.ts-filter-button.ts-active {
  background-color: var(--ts-primary);
  color: white;
}

.ts-chart-container {
  height: 400px;
  margin-bottom: 2rem;
  position: relative;
}

.ts-chart-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.ts-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ts-legend-color {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}


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

.ts-logistics-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 992px) {
  .ts-logistics-content {
    grid-template-columns: 1fr;
  }
}

.ts-logistics-map {
  border-radius: var(--ts-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--ts-shadow);
  height: 400px;
  background-color: white;
  position: relative;
}

.ts-logistics-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ts-logistics-form {
  background-color: white;
  border-radius: var(--ts-radius-lg);
  padding: 2rem;
  box-shadow: 0 10px 30px var(--ts-shadow);
}

.ts-logistics-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--ts-dark);
}

.ts-logistics-results {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--ts-accent);
  border-radius: var(--ts-radius);
}

.ts-logistics-result-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.ts-logistics-result-row:last-child {
  margin-bottom: 0;
}


.ts-supply-demand {
  padding: 5rem 0;
  background-color: white;
}

.ts-supply-demand-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .ts-supply-demand-content {
    grid-template-columns: 1fr;
  }
}

.ts-supply-demand-filters {
  background-color: var(--ts-light);
  border-radius: var(--ts-radius-lg);
  padding: 2rem;
  height: 100%;
}

.ts-supply-demand-filters h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--ts-dark);
}

.ts-filter-section {
  margin-bottom: 2rem;
}

.ts-filter-section h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--ts-dark);
}

.ts-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ts-checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ts-checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--ts-primary);
}

.ts-matches {
  background-color: white;
  border-radius: var(--ts-radius-lg);
  padding: 2rem;
  box-shadow: 0 5px 20px var(--ts-shadow);
}

.ts-matches h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--ts-dark);
}

.ts-match-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.ts-stat-item {
  flex: 1;
  min-width: 120px;
  background-color: var(--ts-light);
  padding: 1.5rem;
  border-radius: var(--ts-radius);
  text-align: center;
}

.ts-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ts-primary);
  margin-bottom: 0.5rem;
}

.ts-stat-label {
  font-size: 0.875rem;
  color: #666;
}

.ts-match-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.ts-match-card {
  background-color: var(--ts-light);
  border-radius: var(--ts-radius);
  padding: 1.5rem;
  transition: var(--ts-transition);
}

.ts-match-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px var(--ts-shadow);
}

.ts-match-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.ts-match-title {
  font-weight: 700;
}

.ts-match-score {
  font-weight: 700;
  color: var(--ts-primary);
}

.ts-match-details {
  font-size: 0.875rem;
}

.ts-match-detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.ts-match-detail:last-child {
  margin-bottom: 0;
}

.ts-match-label {
  color: #666;
}

.ts-match-value {
  font-weight: 500;
}


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

.ts-case-card {
  background-color: white;
  border-radius: var(--ts-radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 20px var(--ts-shadow);
  transition: var(--ts-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ts-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--ts-shadow);
}

.ts-case-image {
  height: 200px;
  overflow: hidden;
}

.ts-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--ts-transition);
}

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

.ts-case-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ts-case-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--ts-accent);
  color: var(--ts-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ts-case-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--ts-dark);
}

.ts-case-metrics {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.ts-metric {
  flex: 1;
  min-width: 100px;
  background-color: var(--ts-light);
  padding: 1rem;
  border-radius: var(--ts-radius);
  text-align: center;
}

.ts-metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ts-primary);
  margin-bottom: 0.25rem;
}

.ts-metric-label {
  font-size: 0.75rem;
  color: #666;
}

.ts-case-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}


.ts-trust {
  padding: 4rem 0;
  background-color: white;
  text-align: center;
}

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

.ts-trust h2 {
  font-size: 2rem;
  color: var(--ts-primary);
  margin-bottom: 1.5rem;
}

.ts-trust p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.ts-certifications {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.ts-certification {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ts-certification-icon {
  width: 60px;
  height: 60px;
  background-color: var(--ts-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ts-certification-icon svg {
  color: var(--ts-primary);
  width: 30px;
  height: 30px;
}

.ts-certification-name {
  font-weight: 500;
  font-size: 0.875rem;
}


.ts-contact-form-section {
  padding: 5rem 0;
  background-color: var(--ts-light);
  position: relative;
  overflow: hidden;
}

.ts-contact-form-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--ts-accent) 0%, transparent 70%);
  z-index: 0;
}

.ts-contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--ts-radius-lg);
  padding: 3rem;
  box-shadow: 0 10px 30px var(--ts-shadow);
  position: relative;
  z-index: 1;
}

.ts-contact-form-container h2 {
  font-size: 2rem;
  color: var(--ts-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.ts-contact-form-container p {
  text-align: center;
  margin-bottom: 2rem;
}

.ts-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ts-form-group {
  margin-bottom: 0;
}

.ts-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.ts-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

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

.ts-form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
  accent-color: var(--ts-primary);
}

.ts-form-check label {
  font-size: 0.875rem;
  color: #666;
}

.ts-form-check label a {
  text-decoration: underline;
}

.ts-form-submit {
  text-align: center;
}

.iti {
  width: 100%;
}


.ts-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.ts-modal-overlay.ts-active {
  opacity: 1;
  visibility: visible;
}

.ts-modal {
  background-color: white;
  border-radius: var(--ts-radius-lg);
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s;
  position: relative;
}

.ts-modal-overlay.ts-active .ts-modal {
  transform: translateY(0);
}

.ts-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  font-size: 1.5rem;
  line-height: 1;
}

.ts-modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.ts-modal-icon {
  width: 60px;
  height: 60px;
  background-color: var(--ts-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.ts-modal-icon svg {
  color: var(--ts-primary);
  width: 30px;
  height: 30px;
}

.ts-modal-title {
  font-size: 1.5rem;
  color: var(--ts-primary);
  margin-bottom: 0.5rem;
}

.ts-modal-body {
  text-align: center;
  margin-bottom: 1.5rem;
}

.ts-modal-footer {
  text-align: center;
}


.ts-cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background-color: white;
  border-radius: var(--ts-radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: none;
}

.ts-cookie-consent.ts-active {
  display: block;
  animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
  from {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.ts-cookie-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  .ts-cookie-content {
    flex-direction: column;
    gap: 1rem;
  }
}

.ts-cookie-text {
  flex: 1;
}

.ts-cookie-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.ts-cookie-text p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.ts-cookie-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ts-cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.ts-cookie-settings-modal.ts-active {
  opacity: 1;
  visibility: visible;
}

.ts-cookie-settings-content {
  background-color: white;
  border-radius: var(--ts-radius-lg);
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s;
}

.ts-cookie-settings-modal.ts-active .ts-cookie-settings-content {
  transform: translateY(0);
}

.ts-cookie-settings-header {
  margin-bottom: 2rem;
}

.ts-cookie-settings-header h3 {
  font-size: 1.5rem;
  color: var(--ts-primary);
  margin-bottom: 1rem;
}

.ts-cookie-settings-header p {
  font-size: 0.875rem;
  color: #666;
}

.ts-cookie-category {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

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

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

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

.ts-cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

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

.ts-cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--ts-transition);
  border-radius: 34px;
}

.ts-cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--ts-transition);
  border-radius: 50%;
}

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

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

.ts-cookie-toggle input:disabled + .ts-cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.ts-cookie-category-description {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
}

.ts-cookie-list {
  background-color: var(--ts-light);
  border-radius: var(--ts-radius);
  padding: 1rem;
}

.ts-cookie-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.875rem;
}

.ts-cookie-item:last-child {
  border-bottom: none;
}

.ts-cookie-item-name {
  font-weight: 500;
}

.ts-cookie-item-duration {
  color: #666;
}

.ts-cookie-settings-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}


.ts-experience-hero {
  background-color: var(--ts-accent);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.ts-experience-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, transparent, var(--ts-accent)), url('../images/tech-platform.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.ts-experience-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.ts-experience-hero h1 {
  font-size: 3rem;
  color: var(--ts-primary);
  margin-bottom: 1.5rem;
}

.ts-experience-hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.ts-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .ts-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ts-stats {
    grid-template-columns: 1fr;
  }
}

.ts-stat-box {
  background-color: white;
  border-radius: var(--ts-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px var(--ts-shadow);
}

.ts-stat-box-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ts-primary);
  margin-bottom: 0.5rem;
}

.ts-stat-box-label {
  font-size: 0.875rem;
  color: #666;
}

.ts-case-studies {
  padding: 5rem 0;
  background-color: white;
}

.ts-case-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.ts-detailed-case {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #eee;
}

.ts-detailed-case:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.ts-case-header {
  margin-bottom: 2rem;
}

.ts-case-header h3 {
  font-size: 2rem;
  color: var(--ts-primary);
  margin-bottom: 1rem;
}

.ts-case-header p {
  font-size: 1.125rem;
  color: #666;
}

.ts-case-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 992px) {
  .ts-case-content {
    grid-template-columns: 1fr;
  }
}

.ts-case-text h4 {
  font-size: 1.5rem;
  color: var(--ts-dark);
  margin-bottom: 1.5rem;
}

.ts-case-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ts-case-step {
  display: flex;
  gap: 1rem;
}

.ts-step-number {
  width: 30px;
  height: 30px;
  background-color: var(--ts-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.ts-step-content h5 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.ts-case-chart {
  background-color: var(--ts-light);
  border-radius: var(--ts-radius-lg);
  padding: 2rem;
  box-shadow: 0 5px 20px var(--ts-shadow);
  height: 100%;
  min-height: 400px;
}

.ts-case-results {
  margin-top: 3rem;
  background-color: var(--ts-accent);
  border-radius: var(--ts-radius-lg);
  padding: 2rem;
}

.ts-case-results h4 {
  font-size: 1.5rem;
  color: var(--ts-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.ts-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .ts-results-grid {
    grid-template-columns: 1fr;
  }
}

.ts-result-box {
  background-color: white;
  border-radius: var(--ts-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px var(--ts-shadow);
}

.ts-result-box-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ts-primary);
  margin-bottom: 0.5rem;
}

.ts-result-box-label {
  font-size: 0.875rem;
  color: #666;
}

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

.ts-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .ts-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ts-tech-grid {
    grid-template-columns: 1fr;
  }
}

.ts-tech-card {
  background-color: white;
  border-radius: var(--ts-radius-lg);
  padding: 2rem;
  box-shadow: 0 5px 20px var(--ts-shadow);
  height: 100%;
  transition: var(--ts-transition);
}

.ts-tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--ts-shadow);
}

.ts-tech-icon {
  width: 60px;
  height: 60px;
  background-color: var(--ts-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ts-tech-icon svg {
  color: var(--ts-primary);
  width: 30px;
  height: 30px;
}

.ts-tech-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--ts-dark);
}

.ts-tech-card p {
  color: #666;
}

.ts-tech-features {
  margin-top: 1.5rem;
}

.ts-tech-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.ts-tech-feature:last-child {
  margin-bottom: 0;
}

.ts-tech-feature svg {
  color: var(--ts-primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ts-experience-cta {
  padding: 5rem 0;
  background-color: var(--ts-primary);
  color: white;
  text-align: center;
}

.ts-experience-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.ts-experience-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.ts-experience-cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.ts-experience-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ts-button-light {
  background-color: white;
  color: var(--ts-primary);
}

.ts-button-light:hover, .ts-button-light:focus {
  background-color: var(--ts-accent);
  color: var(--ts-primary);
  text-decoration: none;
}

.ts-button-outline-light {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.ts-button-outline-light:hover, .ts-button-outline-light:focus {
  background-color: white;
  color: var(--ts-primary);
  text-decoration: none;
}


.ts-workflow-hero {
  background-color: var(--ts-accent);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.ts-workflow-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, transparent, var(--ts-accent)), url('../images/workflow-diagram.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.ts-workflow-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-left: auto;
}

.ts-workflow-hero h1 {
  font-size: 3rem;
  color: var(--ts-primary);
  margin-bottom: 1.5rem;
}

.ts-workflow-hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.ts-process-flow {
  padding: 5rem 0;
  background-color: white;
}

.ts-process-steps {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.ts-process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background-color: var(--ts-primary);
}

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

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

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

.ts-process-step-header {
  margin-bottom: 1rem;
  cursor: pointer;
}

.ts-process-step-header h3 {
  font-size: 1.5rem;
  color: var(--ts-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ts-process-step-header h3 svg {
  transition: var(--ts-transition);
}

.ts-process-step.ts-active .ts-process-step-header h3 svg {
  transform: rotate(180deg);
}

.ts-process-step-content {
  display: none;
  background-color: var(--ts-light);
  border-radius: var(--ts-radius);
  padding: 1.5rem;
  margin-top: 1rem;
}

.ts-process-step.ts-active .ts-process-step-content {
  display: block;
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ts-process-details {
  margin-bottom: 1.5rem;
}

.ts-process-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.ts-process-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ts-process-meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #666;
}

.ts-process-meta-value {
  font-weight: 700;
  color: var(--ts-primary);
}

.ts-process-tools {
  margin-top: 1.5rem;
}

.ts-process-tools h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.ts-tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ts-tool-tag {
  background-color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  border: 1px solid #ddd;
}

.ts-roi-calculator {
  padding: 5rem 0;
  background-color: var(--ts-light);
}

.ts-roi-calculator-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 992px) {
  .ts-roi-calculator-content {
    grid-template-columns: 1fr;
  }
}

.ts-roi-info h2 {
  font-size: 2.5rem;
  color: var(--ts-primary);
  margin-bottom: 1.5rem;
}

.ts-roi-info p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.ts-roi-form {
  background-color: white;
  border-radius: var(--ts-radius-lg);
  padding: 2rem;
  box-shadow: 0 10px 30px var(--ts-shadow);
}

.ts-roi-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--ts-dark);
  text-align: center;
}

.ts-roi-results {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--ts-accent);
  border-radius: var(--ts-radius);
}

.ts-roi-result-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.ts-roi-result-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.ts-roi-result-label {
  font-weight: 500;
}

.ts-roi-result-value {
  font-weight: 700;
  color: var(--ts-primary);
}

.ts-faq {
  padding: 5rem 0;
  background-color: white;
}

.ts-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.ts-accordion {
  margin-top: 3rem;
}

.ts-accordion-item {
  border-bottom: 1px solid #eee;
}

.ts-accordion-header {
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ts-accordion-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
  color: var(--ts-dark);
}

.ts-accordion-header svg {
  transition: var(--ts-transition);
}

.ts-accordion-item.ts-active .ts-accordion-header svg {
  transform: rotate(180deg);
}

.ts-accordion-content {
  display: none;
  padding-bottom: 1.5rem;
}

.ts-accordion-item.ts-active .ts-accordion-content {
  display: block;
  animation: fadeIn 0.5s forwards;
}

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

.ts-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .ts-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ts-article-grid {
    grid-template-columns: 1fr;
  }
}

.ts-article-card {
  background-color: white;
  border-radius: var(--ts-radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 20px var(--ts-shadow);
  transition: var(--ts-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ts-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--ts-shadow);
}

.ts-article-image {
  height: 200px;
  overflow: hidden;
}

.ts-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--ts-transition);
}

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

.ts-article-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ts-article-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--ts-dark);
}

.ts-article-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.ts-article-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ts-article-date {
  font-size: 0.875rem;
  color: #666;
}


.ts-article {
  padding: 5rem 0;
  background-color: white;
}

.ts-article-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.ts-article-header h1 {
  font-size: 2.5rem;
  color: var(--ts-primary);
  margin-bottom: 1rem;
}

.ts-article-meta {
  font-size: 0.875rem;
  color: #666;
}

.ts-article-body {
  font-size: 1.125rem;
  line-height: 1.8;
}

.ts-article-body h2 {
  font-size: 2rem;
  color: var(--ts-primary);
  margin: 2.5rem 0 1.5rem;
}

.ts-article-body h3 {
  font-size: 1.5rem;
  color: var(--ts-dark);
  margin: 2rem 0 1rem;
}

.ts-article-body ul, .ts-article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.ts-article-body li {
  margin-bottom: 0.5rem;
}

.ts-article-body blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: var(--ts-accent);
  border-left: 4px solid var(--ts-primary);
  font-style: italic;
  color: var(--ts-dark);
}

.ts-checklist {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: var(--ts-light);
  border-radius: var(--ts-radius);
}

.ts-checklist h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--ts-primary);
}

.ts-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ts-checklist-item:last-child {
  margin-bottom: 0;
}

.ts-checklist-item svg {
  color: var(--ts-success);
  flex-shrink: 0;
  margin-top: 0.25rem;
}


.ts-contacts-hero {
  background-color: var(--ts-accent);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.ts-contacts-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.ts-contacts-hero h1 {
  font-size: 3rem;
  color: var(--ts-primary);
  margin-bottom: 1.5rem;
}

.ts-contacts-hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.ts-contacts-content {
  padding: 5rem 0;
  background-color: white;
}

.ts-contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .ts-contacts-grid {
    grid-template-columns: 1fr;
  }
}

.ts-contact-card {
  background-color: var(--ts-light);
  border-radius: var(--ts-radius-lg);
  padding: 2rem;
  box-shadow: 0 5px 20px var(--ts-shadow);
}

.ts-contact-card h2 {
  font-size: 2rem;
  color: var(--ts-primary);
  margin-bottom: 1.5rem;
}

.ts-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ts-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ts-contact-info-item svg {
  color: var(--ts-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.ts-contact-info-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--ts-dark);
}

.ts-contact-info-item p {
  color: #666;
  margin-bottom: 0;
}

.ts-contact-info-item a {
  color: var(--ts-primary);
  font-weight: 500;
  transition: var(--ts-transition);
}

.ts-contact-info-item a:hover {
  color: var(--ts-secondary);
}

.ts-working-hours {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.ts-working-hours h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--ts-dark);
}

.ts-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ts-hours-item {
  display: flex;
  justify-content: space-between;
}

.ts-hours-day {
  font-weight: 500;
}

.ts-map {
  border-radius: var(--ts-radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 20px var(--ts-shadow);
  height: 100%;
  min-height: 400px;
}

.ts-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ts-legal-info {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--ts-light);
  border-radius: var(--ts-radius);
}

.ts-legal-info h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--ts-dark);
}

.ts-legal-info p {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
}

.ts-legal-info p:last-child {
  margin-bottom: 0;
}

.ts-legal-info a {
  color: var(--ts-primary);
  text-decoration: underline;
}


.ts-thanks {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ts-light);
  padding: 5rem 0;
}

.ts-thanks-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  background-color: white;
  border-radius: var(--ts-radius-lg);
  box-shadow: 0 10px 30px var(--ts-shadow);
}

.ts-thanks-icon {
  width: 80px;
  height: 80px;
  background-color: var(--ts-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.ts-thanks-icon svg {
  color: var(--ts-primary);
  width: 40px;
  height: 40px;
}

.ts-thanks-content h1 {
  font-size: 2.5rem;
  color: var(--ts-primary);
  margin-bottom: 1rem;
}

.ts-thanks-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.ts-thanks-contact {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--ts-light);
  border-radius: var(--ts-radius);
}

.ts-thanks-contact p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.ts-thanks-contact a {
  font-weight: 700;
  color: var(--ts-primary);
}


.ts-legal {
  padding: 5rem 0;
  background-color: white;
}

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

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

.ts-legal-header h1 {
  font-size: 2.5rem;
  color: var(--ts-primary);
  margin-bottom: 1rem;
}

.ts-legal-header p {
  font-size: 0.875rem;
  color: #666;
}

.ts-legal-body {
  font-size: 1rem;
  line-height: 1.7;
}

.ts-legal-body h2 {
  font-size: 1.75rem;
  color: var(--ts-primary);
  margin: 2.5rem 0 1.5rem;
}

.ts-legal-body h3 {
  font-size: 1.25rem;
  color: var(--ts-dark);
  margin: 2rem 0 1rem;
}

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

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

.ts-legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.ts-legal-table th, .ts-legal-table td {
  padding: 1rem;
  border: 1px solid #eee;
  text-align: left;
}

.ts-legal-table th {
  background-color: var(--ts-accent);
  font-weight: 700;
  color: var(--ts-primary);
}

.ts-legal-table tr:nth-child(even) {
  background-color: var(--ts-light);
}

.ts-legal-body a {
  color: var(--ts-primary);
  text-decoration: underline;
}

.ts-legal-body a:hover {
  color: var(--ts-secondary);
}

.ts-legal-updated {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  font-size: 0.875rem;
  color: #666;
  text-align: center;
}


.ts-mt-0 { margin-top: 0; }
.ts-mb-0 { margin-bottom: 0; }
.ts-text-center { text-align: center; }
.ts-text-primary { color: var(--ts-primary); }
.ts-bg-light { background-color: var(--ts-light); }
.ts-bg-accent { background-color: var(--ts-accent); }
.ts-hidden { display: none; }
.ts-visible { display: block; }