
:root {
  --primary: #3A405A;
  --secondary: #F9A826;
  --accent: #26A69A;
  --background: #F8F9FA;
  --text: #212529;
  --light-text: #6C757D;
  --alert: #E63946;
  --success: #43AA8B;
  --neutral: #E9ECEF;
  --shadow: rgba(0, 0, 0, 0.1);
  --header-height: 80px;
  --content-max-width: 600px;
  --border-radius: 8px;
}


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

html {
  overflow-x: hidden;
}

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  display: block;
}


.container {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}


.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-section {
  margin: 4rem 0;
  width: 100%;
}

#contact-form {
   margin-bottom: 0;
   padding-bottom: 4rem;
}


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

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

.btn-primary:hover {
  background-color: var(--primary);
  opacity: 0.9;
  color: white;
}

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

.btn-secondary:hover {
  background-color: var(--secondary);
  opacity: 0.9;
}

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

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


.isometric-box {
  position: relative;
  transform: rotateX(45deg) rotateZ(45deg);
  transform-style: preserve-3d;
  box-shadow: 5px 5px 0 var(--shadow);
  padding: 20px;
  margin: 30px 0;
  background-color: white;
  border-radius: var(--border-radius);
}

.isometric-icon {
  transform: rotateX(45deg) rotateZ(45deg);
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.isometric-card {
  position: relative;
  border-radius: var(--border-radius);
  background-color: white;
  padding: 1.5rem;
  box-shadow: 5px 5px 15px var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.isometric-card:hover {
  transform: translateY(-5px);
  box-shadow: 5px 10px 20px var(--shadow);
}


header {
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0 2px 10px var(--shadow);
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  height: 50px;
}

.contact-bar {
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.contact-bar-content {
  display: flex;
  justify-content: flex-end;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-bar a {
  color: white;
  margin-left: 1rem;
}


.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  position: relative;
  margin: 0 0.5rem;
}

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

.nav-link:hover {
  color: var(--accent);
}


.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: var(--border-radius);
  min-width: 250px;
  box-shadow: 0 5px 15px var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text);
  font-weight: 400;
}

.dropdown-item:hover {
  background-color: var(--neutral);
  color: var(--primary);
}


.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}


.hero {
  padding: 5rem 0 3rem;
  text-align: center;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image {
  margin: 3rem auto;
  max-width: 500px;
}


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

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

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--neutral);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
}

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

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

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


.iti {
  width: 100%;
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  text-align: center;
}

.modal.active .modal-content {
  transform: scale(1);
}

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


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding: 1rem;
  box-shadow: 0 -5px 10px var(--shadow);
  z-index: 1000;
  display: none;
}

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

.cookie-text {
  flex: 1;
  margin-right: 1rem;
}

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

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

.cookie-settings-content {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  max-width: 600px;
  width: 90%;
}

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

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

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

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

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

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

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

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


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

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
}

.footer-content h3 {
  color: white;
}

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

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

.footer-links a {
  color: var(--neutral);
}

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

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

.cookie-settings-button {
  background: none;
  border: none;
  color: var(--neutral);
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.9rem;
}


.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.faq-answer {
  color: var(--text);
}


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

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

.section-subtitle {
  font-size: 1.2rem;
  color: var(--light-text);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}


.case-study {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

.case-study-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.case-study-content {
  padding: 1.5rem;
  background-color: white;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}

.case-study-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


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

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


.legal-content {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

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

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

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

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

.update-date {
  text-align: center;
  font-style: italic;
  color: var(--light-text);
  margin-top: 3rem;
}


.industry-header {
  position: relative;
  padding: 4rem 0;
  text-align: center;
  background-color: var(--primary);
  color: white;
  margin-bottom: 3rem;
}

.industry-header h1 {
  color: white;
}


@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 5px 10px var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-item {
    width: 100%;
    margin: 0;
  }
  
  .nav-link {
    padding: 1rem;
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 1rem;
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  
  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero {
    padding: 3rem 0 2rem;
  }
  
  .contact-bar-content {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .contact-bar a {
    margin: 0 0.5rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .thank-you-icon {
    font-size: 4rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .isometric-box {
    transform: rotateX(30deg) rotateZ(30deg);
    padding: 15px;
    margin: 20px 0;
  }
}