
:root {
  --primary: #0A3D62;
  --primary-light: #3498DB;
  --secondary: #2980B9;
  --dark: #2C3E50;
  --light: #F5F7FA;
  --light-blue: #D6EAF8;
  --lighter-blue: #EBF5FB;
  --pale-blue: #F8FDFF;
  --accent-blue: #AED6F1;
  --danger: #E74C3C;
  --success: #27AE60;
  --warning: #F1C40F;
  --white: #FFFFFF;
  --gray: #95A5A6;
  --light-gray: #ECF0F1;
}

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

body {
  font-family: 'Urbanist', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  background-image: url('../images/blueprint-pattern.jpg');
  background-size: 400px;
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.92);
  z-index: -1;
}

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

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

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

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

p {
  margin-bottom: 1rem;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}


.blueprint-element {
  position: relative;
  padding: 20px;
  border: 1px solid var(--primary-light);
  background-color: var(--pale-blue);
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(10, 61, 98, 0.1);
}

.blueprint-element::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(174, 214, 241, 0.05) 1px, transparent 1px), 
                    linear-gradient(90deg, rgba(174, 214, 241, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}

.blueprint-element > * {
  position: relative;
  z-index: 1;
}

.measurement-line {
  position: absolute;
  background-color: var(--primary-light);
  opacity: 0.3;
}

.measurement-line.horizontal {
  height: 1px;
  width: 100%;
  left: 0;
}

.measurement-line.vertical {
  width: 1px;
  height: 100%;
  top: 0;
}

.measurement-marker {
  position: absolute;
  font-size: 0.7rem;
  color: var(--primary-light);
  opacity: 0.7;
}


.layer-3d {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.element-3d {
  transform: translateZ(0);
  transition: transform 0.3s ease;
}

.element-3d:hover {
  transform: translateZ(20px);
}

.depth-shadow {
  position: relative;
  box-shadow: 0 10px 30px rgba(10, 61, 98, 0.1);
}

.depth-shadow::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 5%;
  width: 90%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
}


.site-header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

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

.logo {
  display: block;
  height: 50px;
}

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

.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  padding: 5px 10px;
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-light);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.contact-info i {
  color: var(--primary);
}

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


.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  transform: rotate(10deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
}


.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(10, 61, 98, 0.3);
}

.btn-primary:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(10, 61, 98, 0.4);
  text-decoration: none;
  color: var(--white);
}

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

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


.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--primary-light);
  margin: 15px auto 0;
}


.card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

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

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-content {
  padding: 20px;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
}


.audit-simulator {
  background-color: var(--lighter-blue);
  padding: 40px;
  border-radius: 15px;
  margin: 60px 0;
  box-shadow: 0 10px 30px rgba(10, 61, 98, 0.1);
  position: relative;
}

.audit-simulator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(174, 214, 241, 0.1) 1px, transparent 1px), 
                    linear-gradient(90deg, rgba(174, 214, 241, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  border-radius: 15px;
  z-index: 0;
}

.simulator-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.simulator-content {
  position: relative;
  z-index: 1;
}

.simulator-steps {
  display: none;
}

.simulator-step {
  display: none;
}

.simulator-step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.simulator-progress {
  margin: 30px 0;
  height: 10px;
  background-color: var(--light-gray);
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--primary-light);
  width: 0%;
  transition: width 0.5s ease;
}

.simulator-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.simulator-results {
  display: none;
  animation: fadeIn 0.5s ease;
}

.results-chart {
  margin: 30px auto;
  max-width: 500px;
}

.results-summary {
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}

.maturity-level {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
}

.maturity-level.low {
  background-color: rgba(231, 76, 60, 0.1);
  color: #E74C3C;
}

.maturity-level.medium {
  background-color: rgba(241, 196, 15, 0.1);
  color: #F1C40F;
}

.maturity-level.high {
  background-color: rgba(39, 174, 96, 0.1);
  color: #27AE60;
}

.priorities-list {
  margin-top: 20px;
}

.priorities-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.priorities-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.results-actions {
  margin-top: 30px;
  text-align: center;
}


.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.form-title {
  text-align: center;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Urbanist', sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  outline: none;
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.form-check-input {
  margin-right: 10px;
  margin-top: 5px;
}

.form-check-label {
  font-size: 0.9rem;
}

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


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

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: var(--lighter-blue);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: var(--light-blue);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: var(--white);
}

.faq-answer.active {
  padding: 20px;
  max-height: 1000px;
}


.steps-container {
  position: relative;
  margin: 60px 0;
}

.steps-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--primary-light);
  transform: translateX(-50%);
}

.step-item {
  display: flex;
  margin-bottom: 60px;
  position: relative;
}

.step-item:nth-child(even) {
  flex-direction: row-reverse;
}

.step-content {
  width: 45%;
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.step-number {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 2;
  transform: translateY(-50%);
}

.step-item:nth-child(odd) .step-number {
  right: -25px;
}

.step-item:nth-child(even) .step-number {
  left: -25px;
}

.step-title {
  margin-bottom: 15px;
  font-size: 1.3rem;
}


.site-footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--primary-light);
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

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

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

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


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-settings {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cookie-settings:hover {
  transform: scale(1.1);
}

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

.cookie-modal-content {
  background-color: var(--white);
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-categories {
  margin-bottom: 30px;
}

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

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

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

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

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

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

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

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

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

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

.category-description {
  font-size: 0.9rem;
  color: var(--gray);
}

.cookie-modal-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}


.back-to-top {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9997;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}


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

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

.modal-content {
  background-color: var(--white);
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: all 0.3s ease;
  text-align: center;
}

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

.modal-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 20px;
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}


.calculator {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin: 40px 0;
}

.calculator-header {
  text-align: center;
  margin-bottom: 30px;
}

.calculator-form {
  margin-bottom: 30px;
}

.calculator-results {
  display: none;
  padding: 20px;
  background-color: var(--lighter-blue);
  border-radius: 10px;
  margin-top: 30px;
}

.result-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
}

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

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

.result-value {
  font-weight: 700;
}

.total-savings {
  margin-top: 20px;
  padding: 15px;
  background-color: rgba(39, 174, 96, 0.1);
  border-radius: 5px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--success);
}


.map-container {
  margin: 40px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-image {
  width: 100%;
  height: 400px;
  background-color: var(--lighter-blue);
  position: relative;
}

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

.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  color: var(--danger);
  font-size: 3rem;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.3));
}

.map-info {
  background-color: var(--white);
  padding: 20px;
  text-align: center;
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.breadcrumbs {
  padding: 15px 0;
  background-color: var(--lighter-blue);
  margin-bottom: 40px;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.breadcrumbs-item {
  display: flex;
  align-items: center;
}

.breadcrumbs-item:not(:last-child)::after {
  content: '/';
  margin: 0 10px;
  color: var(--gray);
}

.breadcrumbs-link {
  color: var(--gray);
}

.breadcrumbs-link:hover {
  color: var(--primary);
}

.breadcrumbs-link.active {
  color: var(--primary);
  font-weight: 500;
}


.thanks-container {
  text-align: center;
  padding: 80px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 30px;
}

.thanks-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.thanks-message {
  margin-bottom: 30px;
}

.thanks-steps {
  text-align: left;
  background-color: var(--lighter-blue);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.thanks-steps ol {
  padding-left: 20px;
}

.thanks-steps li {
  margin-bottom: 15px;
}


.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.policy-date {
  margin-bottom: 30px;
  font-style: italic;
  color: var(--gray);
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  margin-bottom: 20px;
}

.policy-section h3 {
  margin-bottom: 15px;
}

.policy-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.policy-list li {
  margin-bottom: 10px;
}


.iti {
  width: 100%;
}


@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text {
    order: 2;
  }
  
  .hero-image {
    order: 1;
    margin-bottom: 30px;
  }
  
  .hero-badge {
    top: auto;
    bottom: -20px;
  }
  
  .feature-item {
    padding: 20px;
  }
  
  .step-content {
    width: 100%;
  }
  
  .steps-line {
    left: 20px;
  }
  
  .step-item {
    flex-direction: column;
    padding-left: 50px;
  }
  
  .step-item:nth-child(even) {
    flex-direction: column;
  }
  
  .step-number {
    left: -5px;
    top: 20px;
    transform: none;
  }
  
  .step-item:nth-child(odd) .step-number,
  .step-item:nth-child(even) .step-number {
    left: -5px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 0;
  }
  
  .header-content {
    flex-wrap: wrap;
  }
  
  .logo {
    height: 40px;
  }
  
  .main-nav {
    display: none;
    width: 100%;
    margin-top: 15px;
    flex-direction: column;
  }
  
  .main-nav.active {
    display: flex;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .contact-info {
    display: none;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .audit-simulator {
    padding: 20px;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .calculator-form .form-group {
    width: 100%;
  }
  
  .map-image {
    height: 300px;
  }
}