
:root {
  --primary: #000000;
  --secondary: #FFFFFF;
  --accent: #D4AF37;
  --background: #FAFAFA;
  --text: #333333;
  --error: #8B0000;
  --success: #006400;
}

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

body {
  font-family: 'Rubik', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}


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

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 2rem;
}

h2 {
  font-size: 2rem;
  margin-top: 2.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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


header {
  background-color: var(--secondary);
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
}

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

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  font-weight: 400;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}


.hero {
  padding: 6rem 0;
  text-align: center;
  position: relative;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.hero-image {
  max-width: 100%;
  margin-top: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--primary);
  color: var(--secondary);
  border: 2px solid var(--primary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.btn-accent:hover {
  background-color: transparent;
  color: var(--accent);
}

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


.section {
  padding: 5rem 0;
}

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


.services {
  margin-top: 3rem;
}

.service-item {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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


.benefits {
  margin-top: 3rem;
}

.benefit-card {
  background-color: var(--secondary);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

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


.case {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

.metrics {
  margin-top: 1.5rem;
  font-weight: 500;
}

.metrics span {
  color: var(--accent);
}


.blog-preview {
  margin-bottom: 2rem;
}

.blog-preview h3 {
  margin-bottom: 0.5rem;
}

.blog-date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
  display: block;
}

.blog-excerpt {
  margin-bottom: 1rem;
}

.blog-post {
  padding: 4rem 0;
}

.blog-post h1 {
  margin-bottom: 1rem;
}

.blog-post-date {
  display: block;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #777;
}

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

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

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


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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

input, textarea, select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  outline: none;
}

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

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

.form-checkbox input {
  width: auto;
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

.form-checkbox label {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.error-message {
  color: var(--error);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}


.job-listing {
  background-color: var(--secondary);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.job-title {
  margin-bottom: 1rem;
  color: var(--primary);
}

.job-meta {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.job-meta span {
  display: inline-block;
  margin-right: 1.5rem;
}

.job-description {
  margin-bottom: 1.5rem;
}

.requirements {
  margin-bottom: 1.5rem;
}

.requirements h4 {
  margin-bottom: 0.5rem;
}

.requirements ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}


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

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

.contact-icon {
  font-size: 1.2rem;
  color: var(--accent);
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.map-container {
  margin-top: 3rem;
  height: 400px;
  width: 100%;
}

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


footer {
  background-color: var(--primary);
  color: var(--secondary);
  padding: 3rem 0;
  margin-top: 5rem;
}

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

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

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

.footer-links a {
  color: var(--secondary);
  margin: 0 1rem;
  font-size: 0.9rem;
}

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

.cookie-settings {
  margin-top: 1rem;
  text-align: center;
}

.cookie-settings button {
  background: none;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-settings button:hover {
  background-color: var(--secondary);
  color: var(--primary);
}


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

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

.cookie-consent-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cookie-consent-content a {
  color: var(--accent);
}

.cookie-consent-buttons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cookie-consent-button {
  background: none;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-consent-button:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

.cookie-consent-button.accept {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.cookie-consent-button.accept:hover {
  background-color: transparent;
  color: var(--accent);
}


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

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

.cookie-settings-content {
  background-color: var(--secondary);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}

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

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

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

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

.cookie-category-title {
  margin-bottom: 0;
  font-size: 1.2rem;
}

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

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

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

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

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

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

.cookie-category-description {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookie-vendor {
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.cookie-settings-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
}


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

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

.modal-content {
  background-color: var(--secondary);
  max-width: 500px;
  width: 90%;
  padding: 2rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal.visible .modal-content {
  transform: translateY(0);
}

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


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

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

.thank-you p {
  max-width: 500px;
  margin: 0 auto 2rem;
}


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

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}


.iti {
  width: 100%;
}


@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.35rem;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 250px;
    background-color: var(--secondary);
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }
  
  nav.active {
    transform: translateX(0);
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin-left: 0;
    margin-bottom: 1.5rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .cookie-consent-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cookie-settings-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-settings-actions button {
    width: 100%;
  }
}