
:root {
  --orange: #E3663E;
  --teal: #116566;
  --yellow: #F7D05F;
  --dark-blue: #37474F;
  --light-beige: #F8F5F2;
  --white: #FFFFFF;
  --dark-gray: #333333;
  --gray: #666666;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark-gray);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}


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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}


header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
  max-height: 40px;
}

.mobile-menu-btn {
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  z-index: 100;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark-gray);
  position: absolute;
  transition: all 0.3s;
}

.mobile-menu-btn span:nth-child(1) {
  top: 6px;
}

.mobile-menu-btn span:nth-child(2) {
  top: 14px;
}

.mobile-menu-btn span:nth-child(3) {
  top: 22px;
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 14px;
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 14px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  padding-top: 80px;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 99;
}

.mobile-menu.open {
  transform: translateX(0);
}


.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.btn-secondary {
  background-color: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}

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

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

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


.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}


.content-block {
  position: relative;
  padding: 5rem 0;
}

.content-block.light {
  background-color: var(--light-beige);
}

.content-block.dark {
  background-color: var(--dark-blue);
  color: var(--white);
}

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

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

.service-card img {
  border-radius: 4px;
  margin-bottom: 1.5rem;
}


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

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: var(--white);
}

.form-control:focus {
  border-color: var(--teal);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(17, 101, 102, 0.25);
}

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

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


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

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

.modal-content {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  max-width: 90%;
  width: 500px;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

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

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


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

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

footer a:hover {
  color: var(--yellow);
}


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

.cookie-settings-modal {
  max-width: 600px;
}

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

.cookie-settings-btn {
  color: var(--teal);
  text-decoration: underline;
  cursor: pointer;
}


.breadcrumb {
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--teal);
  text-decoration: none;
}

.breadcrumb-separator {
  margin: 0 0.5rem;
}


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


.iti {
  width: 100%;
}


.animated-block {
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animated-block.visible {
  opacity: 1;
  transform: translateY(0);
}


.geometric-accent {
  position: absolute;
  z-index: -1;
}

.geometric-accent.diamond {
  width: 100px;
  height: 100px;
  background-color: var(--yellow);
  transform: rotate(45deg);
}

.geometric-accent.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--orange);
  opacity: 0.1;
}

.geometric-accent.rectangle {
  width: 150px;
  height: 80px;
  background-color: var(--teal);
  opacity: 0.1;
}


#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}


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

@media (min-width: 992px) {
  .sticky-block {
    position: sticky;
    top: 100px;
  }
}


.text-primary {
  color: var(--teal);
}

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

.bg-primary {
  background-color: var(--teal);
}

.bg-secondary {
  background-color: var(--orange);
}

.bg-light {
  background-color: var(--light-beige);
}

.rounded-vintage {
  border-radius: 8px;
}

.vintage-shadow {
  box-shadow: 5px 5px 0px var(--yellow);
}


@media (max-width: 991.98px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .content-block {
    padding: 3rem 0;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .content-block {
    padding: 2.5rem 0;
  }
  
  .btn {
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 1.75rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
}