html,
body {
  height: 100%;
}
body {
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Signika', sans-serif;
}
a {
  color: #2196f3;
}
a:hover {
  color: #0f74c7;
}
.position-fixed {
  position: fixed !important;
}
.ms-3 {
  margin-left: 10px !important;
}
.ms-4 {
  margin-left: 15px !important;
}
h1 {
  font-weight: 600;
}
.container {
  background-color: white;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  width: calc(100% - 30px);
  height: calc(100vh - 30px);
  margin: 15px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  padding: 30px;
}
.container.max-800 {
  max-width: 100%;
  padding: 50px;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .container.max-800 {
    max-width: 800px;
  }
}
.container .footer-menu {
  position: absolute;
  bottom: 10px;
  left: 40px;
  width: 100%;
  padding: 10px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .container {
    width: calc(100% - 50px);
    height: calc(100vh - 50px);
    margin: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    width: calc(100% - 100px);
    height: calc(100vh - 100px);
    margin: 50px;
  }
}
.browser-window {
  position: absolute;
  bottom: -70px;
  right: 0;
  width: 90%;
  height: 54%;
  background: white;
  border-radius: 8px 0 0 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
}
@media (min-width: 992px) {
  .browser-window {
    bottom: 0;
    right: 0;
    width: 50%;
    height: 70%;
  }
}
.browser-header {
  background: #f5f5f5;
  padding: 8px;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 8px 0 0 0;
}
.browser-buttons {
  display: flex;
  gap: 6px;
}
.browser-buttons span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.browser-buttons span:nth-child(1) {
  background: #ff5f57;
}
.browser-buttons span:nth-child(2) {
  background: #ffbd2e;
}
.browser-buttons span:nth-child(3) {
  background: #28c940;
}
.browser-content {
  position: relative;
  height: 537px;
}
.browser-content img {
  width: 1200px;
  height: auto;
  display: block;
}
@media (min-width: 992px) {
  .browser-content img {
    width: 1910px;
  }
}
.logo {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
}
@media (min-width: 768px) {
  .logo {
    top: 30px;
    left: 30px;
  }
}
.logo img {
  max-width: 230px;
  height: auto;
}
@media (min-width: 768px) {
  .logo img {
    max-width: 300px;
  }
}
.container.max-800 .logo {
  position: relative;
  top: 0;
  left: 0;
}
.floating-icon {
  position: absolute;
  top: -80px;
  right: 30px;
  width: 70px;
  height: 70px;
  background-color: #e3f2fd;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: perspective(1000px) rotateX(29deg) rotateY(8deg);
  transform-style: preserve-3d;
  z-index: 10;
  box-shadow: 0 15px 35px rgba(33, 150, 243, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 100px rgba(33, 150, 243, 0.1);
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .floating-icon {
    width: 100px;
    height: 100px;
  }
}
.floating-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #2196f3;
  border-radius: inherit;
  transform: translateZ(-10px);
  filter: blur(2px);
  opacity: 0.3;
}
.floating-icon:hover {
  transform: perspective(1000px) rotateX(20deg) rotateY(-20deg) translateZ(10px);
  box-shadow: 0 20px 45px rgba(33, 150, 243, 0.3), 0 10px 25px rgba(0, 0, 0, 0.15), 0 0 120px rgba(33, 150, 243, 0.2);
}
.floating-icon svg {
  width: 30px;
  height: 30px;
  fill: #2196f3;
  transform: translateZ(5px);
}
@media (min-width: 992px) {
  .floating-icon svg {
    width: 50px;
    height: 50px;
    transform: translateZ(15px);
  }
}
.floating-icon-2 {
  position: absolute;
  top: 10px;
  left: -15px;
  width: 70px;
  height: 70px;
  background-color: #edd4fc;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: perspective(1000px) rotateX(-15deg) rotateY(25deg);
  transform-style: preserve-3d;
  z-index: 10;
  box-shadow: 0 15px 35px rgba(166, 33, 243, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 100px rgba(166, 33, 243, 0.1);
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .floating-icon-2 {
    width: 100px;
    height: 100px;
    left: -65px;
  }
}
.floating-icon-2::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #a621f3;
  border-radius: inherit;
  transform: translateZ(-10px);
  filter: blur(2px);
  opacity: 0.3;
}
.floating-icon-2:hover {
  transform: perspective(1000px) rotateX(-20deg) rotateY(30deg) translateZ(10px);
  box-shadow: 0 20px 45px rgba(166, 33, 243, 0.3), 0 10px 25px rgba(0, 0, 0, 0.15), 0 0 120px rgba(166, 33, 243, 0.2);
}
.floating-icon-2 svg {
  width: 30px;
  height: 30px;
  fill: #a621f3;
  transform: translateZ(5px);
}
@media (min-width: 992px) {
  .floating-icon-2 svg {
    width: 50px;
    height: 50px;
    transform: translateZ(15px);
  }
}
.floating-icon-3 {
  position: absolute;
  bottom: 200px;
  left: -25px;
  width: 70px;
  height: 70px;
  background-color: #e3f2fd;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: perspective(1000px) rotateX(3deg) rotateY(334deg) rotateZ(-5deg);
  transform-style: preserve-3d;
  z-index: 10;
  box-shadow: 0 15px 35px rgba(33, 150, 243, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 100px rgba(33, 150, 243, 0.1);
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .floating-icon-3 {
    width: 100px;
    height: 100px;
    bottom: 90px;
    left: -50px;
  }
}
.floating-icon-3::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #2196f3;
  border-radius: inherit;
  transform: translateZ(-10px);
  filter: blur(2px);
  opacity: 0.3;
}
.floating-icon-3:hover {
  transform: perspective(1000px) rotateX(13deg) rotateY(318deg) rotateZ(-12deg) translateZ(10px);
  box-shadow: 0 20px 45px rgba(33, 150, 243, 0.3), 0 10px 25px rgba(0, 0, 0, 0.15), 0 0 120px rgba(33, 150, 243, 0.2);
}
.floating-icon-3 svg {
  width: 30px;
  height: 30px;
  fill: #2196f3;
  transform: translateZ(5px);
}
@media (min-width: 992px) {
  .floating-icon-3 svg {
    width: 50px;
    height: 50px;
    transform: translateZ(15px);
  }
}
.background-svg {
  position: absolute;
  top: 30%;
  left: 80%;
  transform: translate(-50%, -50%) rotate(15deg);
  width: 80%;
  height: 80%;
  z-index: 0;
  pointer-events: none;
}
.background-svg svg {
  width: 100%;
  height: 100%;
  fill: #000000;
  opacity: 0.03;
}
.background-svg-2 {
  position: absolute;
  top: 70%;
  left: 20%;
  transform: translate(-50%, -50%) rotate(-25deg);
  width: 60%;
  height: 60%;
  z-index: 0;
  pointer-events: none;
}
.background-svg-2 svg {
  width: 100%;
  height: 100%;
  fill: #000000;
  opacity: 0.02;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50px;
  z-index: 1;
  width: 80%;
}
@media (min-width: 768px) {
  .hero-text {
    transform: translateY(-157%);
    width: 90%;
  }
}
@media (min-width: 992px) {
  .hero-text {
    transform: translateY(-50%);
    width: 35%;
  }
}
.hero-text h1 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  color: #383838;
  margin: 0 0 20px 0;
}
.hero-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
  font-weight: 400;
}
@media (min-width: 768px) {
  .hero-text p {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .hero-text h1 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .hero-text {
    top: 120px;
    left: 30px;
    transform: none;
  }
  .hero-text p {
    font-size: 14px;
  }
}
/* Logo container met home link */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  width: 100%;
}
.logo-container .logo {
  position: relative;
  margin: 0;
  padding: 0;
}
.logo-container .home-link {
  color: #2196f3;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  margin-left: auto;
  padding: 10px 0;
}
.logo-container .home-link:hover {
  color: #0f74c7;
  text-decoration: underline;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 20px;
  font-size: 16px;
}
.btn.btn-success {
  background-color: #dcf8c6;
  color: #075e54;
  border: 1px solid #cef5af;
  box-shadow: 0 2px 4px rgba(7, 94, 84, 0.1);
}
.btn.btn-success:hover {
  background-color: #d4f6b8;
  box-shadow: 0 4px 8px rgba(7, 94, 84, 0.15);
  transform: translateY(-1px);
}
.btn.btn-success:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(7, 94, 84, 0.1);
}
.dpa-content {
  line-height: 1.6;
  color: #333;
}
.dpa-content .parties {
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 10px;
}
.dpa-content .whereas {
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 10px;
}
.dpa-content .whereas-list {
  margin: 0;
  padding-left: 20px;
  margin-bottom: 30px;
}
.dpa-content section {
  margin-top: 30px;
}
.dpa-content section h2 {
  color: #075e54;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}
.dpa-content section ul {
  margin: 0;
  padding-left: 20px;
  margin-bottom: 15px;
}
.dpa-content section p {
  margin-bottom: 15px;
}
/*# sourceMappingURL=./styles.css.map */