
  @font-face {
    font-family: 'Euclid Circular B';
    src: url('../fonts/EuclidCircularB-Light.woff2') format('woff2'),
        url('../fonts/EuclidCircularB-Light.woff') format('woff'),
        url('../fonts/EuclidCircularB-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/EuclidCircularB-Regular.woff2") format("woff2"),
    url("../fonts/EuclidCircularB-Regular.woff") format("woff"),
    url("../fonts/EuclidCircularB-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


@font-face {
    font-family: 'Euclid Circular B';
    src: url('../fonts/EuclidCircularB-Medium.woff2') format('woff2'),
        url('../fonts/EuclidCircularB-Medium.woff') format('woff'),
        url('../fonts/EuclidCircularB-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Euclid Circular B';
    src: url('../fonts/EuclidCircularB-SemiBold.woff2') format('woff2'),
        url('../fonts/EuclidCircularB-SemiBold.woff') format('woff'),
        url('../fonts/EuclidCircularB-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/EuclidCircularB-Bold.woff2") format("woff2"),
    url("../fonts/EuclidCircularB-Bold.woff") format("woff"),
    url("../fonts/EuclidCircularB-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}



html,
body {
  font-family: "Euclid Circular B", sans-serif;
  font-size:16px;
  font-weight: 300;
  
}

small,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
blockquote,
pre,
input,
textarea,
select,
button {
  font-family: "Euclid Circular B", sans-serif;
  color:#1D1D1F;
}
  
  h1,h2,h3,h4,h5,h6 {
	  font-weight:600;
	  font-size:30px;
  }
  
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
	
	#cardFront, #cardBack {
  user-select: none;         /* Forhindrer markering */
  -webkit-user-drag: none;   /* Blokér træk i WebKit browsere (Chrome, Safari) */
  pointer-events: none;      /* Gør billedet ikke-interaktivt (valgfrit) */
}



html, body {
  max-width: 100vw;  /* Maks bredde på hele siden = viewport width */
  overflow-x: hidden; /* Forhindrer horisontal scroll på hele siden */
}

    .navbar {
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      transition: background-color 0.3s, color 0.3s;
      z-index: 999;
    }

    .navbar-inner {
      max-width: 1400px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 20px;
      color: white;
      transition: color 0.3s;
    }

    .nav-left, .nav-right {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .nav-link {
      background: none;
      border: none;
      color: inherit;
      text-decoration: none;
      font-size: 16px;
      cursor: pointer;
      transition: color 0.3s;
	  font-weight: 500;
    }

    .logo-link {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);

      cursor: pointer;
    }

    .logo-link img {
  
      transition: all 0.3s;
    }

    .news-label {
      font-size: 8px;
      color: white;
      font-weight: bold;
      letter-spacing: 0.5px;
      transition: color 0.3s;
	  vertical-align: top; 
    }

    /* Hover state */
    .navbar:hover {
      background-color: white;
    }

    .navbar:hover .navbar-inner {
      color: black;
    }

    .navbar:hover .nav-link {
      color: black;
    }

    .navbar:hover .news-label {
      color: black;
    }

    .navbar:hover .logo-link img {
      content: url('../img/bule_logo-000000.svg');
    }

    /* Scroll state */
    .scrolled {
      background-color: white;
    }

    .scrolled .navbar-inner {
      color: black;
    }

    .scrolled .nav-link {
      color: black;
    }

    .scrolled .news-label {
      color: black;
    }

    .scrolled .logo-link img {
      content: url('../img/bule_logo-000000.svg');
    }

    /* Initial logo */
    .logo-link img {
      content: url('../img/bule_logo-ffffff.svg');
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .nav-left, .nav-right {
        gap: 0;
      }

      .nav-left a:not(:first-child),
      .nav-right a:not(:first-child) {
        display: none;
      }

      .nav-left, .nav-right {
        gap: 20px;
      }

      .nav-link {
        font-size: 14px;
      }

      .logo-link img {
        height: 35px;
      }
    }
	
	
	
	
	
	
	
	.hero {
  height: 100vh;
  width: 100%;
  background:url('../img/hero.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}


	.hero-business {
  height: 100vh;
  width: 100%;
  background:url('../img/hero-business.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  color: white;
  max-width: 800px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color:#fff;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 30px;
  color:#fff;
}

.hero-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: white;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.hero-button:hover {
  background-color: black;
  color: white;
}








@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}









	.quote-section {
  min-height: 200px; /* eller 100vh hvis du vil have det fylder hele skærmen */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  background-color: #fff; /* valgfri baggrund */
}

.quote {
  font-size: 36px;
  color: #1D1D1F;
  font-weight:600;
  max-width: 1400px;
  padding:40px;
}

	
	
	
	
	
	
	@media (max-width: 768px) {
  .quote {
    font-size: 18px;
  }
}

	
	
	
	
	.product-section {
  background-color: #f5f5f7; 
  padding: 120px 20px;
  border-radius:24px;
}

.product-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.product-left,
.product-center,
.product-right {
  flex: 1;
}

.product-center img {
  max-width: 100%;
  height: 300px;
  display: block;
  margin: 0 auto;
}

/* Responsive mobil */
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
    text-align: center;
  }

  .product-left,
  .product-center,
  .product-right {
    flex: none;
    width: 100%;
    margin-bottom: 30px;
  }

  .product-center img {
  
    margin: 0 auto;
  }
}

	
	
.product-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 300px;
}

.flip-container {
  width: 300px;
  aspect-ratio: 5 / 3.2;
  perspective: 1000px;
  max-height: 200px; /* valgfrit: for at undgå det bliver alt for højt på store skærme */
}

  .flip-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: slowFlip 16s linear infinite;
  }

  .card {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    border-radius: 12px;
  }

  .front {
    transform: rotateY(0deg);
    z-index: 2;
  }

  .back {
    transform: rotateY(180deg);
  }

  @keyframes slowFlip {
    0%   { transform: rotateY(0deg); }
    50%  { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
  }

  .rotation-btn {
 width: 64px;
    height: 32px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    background-color: #dedee2;
    color: #1d1d1f;
    transition: background-color 0.3s;
  }

  .rotation-btn:hover {
    background-color: #dedee2;
  }

  /* Responsiv */
  @media (max-width: 768px) {
    .flip-container {
      width: 80%;
    }
  }













.black-section {
  background-color: black;
  color: white;
  padding: 60px 20px;
}

.black-section-content {
  max-width: 1400px;
  margin: auto;
  text-align: left;
}

.black-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
}

.black-section p {
  font-size: 18px;
  line-height: 1.6;
  color: white;
}

/* Responsivt, så det stadig ser godt ud på mindre skærme */
@media (max-width: 768px) {
  .black-section h2 {
    font-size: 28px;
  }

  .black-section p {
    font-size: 16px;
  }
}












.three-box-section {
  max-width: 1400px;
  margin: 60px auto;
  display: flex;
  gap: 20px; /* mellemrum mellem boksene */
  padding: 0 20px;
}

.box {
  background-color: #ccc; /* grå baggrund */
  border-radius: 15px;    /* bløde hjørner */
  flex: 1;                /* lige store bokse */
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 300px;      /* kan justeres efter behov */
}

/* Midterste billede centreret */
.box-mid-img {
  max-width: 100%;
  height: auto;
  margin: auto;
  flex-shrink: 0;
}

/* Nederst venstre billede */
.box-bottom-left-img {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 50px;   /* juster størrelse */
  height: auto;
}

/* Knap nederst i højre hjørne */
.box-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.box-btn:hover {
  background-color: #0056b3;
}

/* Responsivt: stabler boksene på små skærme */
@media (max-width: 768px) {
  .three-box-section {
    flex-direction: column;
  }

  .box {
    width: 100%;
    min-height: auto;
    padding-bottom: 60px; /* ekstra plads til billeder og knap */
  }

  .box-bottom-left-img,
  .box-btn {
    position: static;
    margin-top: 10px;
  }

  .box-bottom-left-img {
    width: 40px;
  }
}



















.half-half-section {
  display: flex;
  width: 100%;
  height: 500px; /* du kan justere højden */
}

.half-left,
.half-right {
  flex: 1;
  width: 50%;
}

/* Billedet */
.half-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mørk boks med tekst */
.half-right {
  background-color: #fff; /* mørk baggrund */
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.half-right h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.half-right p {
  font-size: 18px;
  line-height: 1.6;
}

/* Responsiv */
@media (max-width: 768px) {
  .half-half-section {
    flex-direction: column;
    height: auto;
  }

  .half-left,
  .half-right {
    width: 100%;
    height: auto;
  }

  .half-left img {
    height: auto;
  }

  .half-right {
    padding: 30px 20px;
  }
}













.faq-section {
  display: flex;
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 20px;
  gap: 40px;
}

.faq-left {
  flex: 1;
}

.faq-left h2 {
  font-size: 32px;
  color: black;
}

.faq-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-bottom: 1px solid #ccc;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 18px;
  padding: 16px 0px;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-question[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  height: 0;
  transition: height 0.4s ease;
}

/* Åben tilstand får højde auto via JS */
.faq-answer.open {
  /* Ingen direkte height her */
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    flex-direction: column;
  }
  .faq-left, .faq-right {
    width: 100%;
  }
  .faq-left h2 {
    font-size: 26px;
  }
}
















.compare-section {
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 20px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.compare-table th,
.compare-table td {
  padding: 16px;
  border-bottom: 1px solid #ddd;
  text-align: center;
  vertical-align: top;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
}

.compare-table .title-cell {
  text-align: left;
  font-size: 24px;
}

.product-img {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.check {
  color: green;
  font-size: 20px;
}

.cross {
  color: red;
  font-size: 20px;
}

/* Kolonnebredder */
.compare-table th:first-child,
.compare-table td:first-child {
  width: 50%;
}

.compare-table th:nth-child(2),
.compare-table td:nth-child(2),
.compare-table th:nth-child(3),
.compare-table td:nth-child(3) {
  width: 25%;
  vertical-align: middle;
}

/* Mobil */
@media (max-width: 768px) {
  .compare-table th,
  .compare-table td {
    padding: 10px;
    font-size: 14px;
  }

  .compare-table .title-cell {
    font-size: 18px;
  }

  .product-img {
    max-height: 40px;
  }
}




.twobox-section {
  background-color: #f4f4f4;
  padding: 60px 20px;
}

.twobox-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.twobox {
  background-color: #e0e0e0;
  border-radius: 12px;
  flex: 1 1 calc(50% - 10px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  position: relative;
}

.twobox img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  margin: 0 auto 20px auto;
}

.box-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.box-text {
  font-size: 16px;
  margin: 0;
}

.box-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.box-button:hover {
  background-color: #0056b3;
}

/* Responsiv */
@media (max-width: 768px) {
  .twobox {
    flex: 1 1 100%;
  }

  .box-text {
    font-size: 14px;
  }

  .box-button {
    font-size: 14px;
    padding: 8px 14px;
  }
}







.image-text-section {
  background-color: #000;
  color: white;
  padding: 60px 20px;
}

.image-text-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.image-side {
  flex: 1;
}

.image-side img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.text-side {
  flex: 1;
}

.text-side h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.text-side p {
  font-size: 16px;
  line-height: 1.6;
}

/* Mobilvenlig tilpasning */
@media (max-width: 768px) {
  .image-text-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .text-side h2 {
    font-size: 24px;
  }

  .text-side p {
    font-size: 14px;
  }
}












.carousel-section {
  display: flex;
  gap: 30px;
  padding: 60px 20px;
  max-width: 1400px;
  margin: auto;
  background-color: #fff; /* valgfri baggrund */
  color: #333;
  align-items: center;
}

.carousel-container {
  flex: 3;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.carousel {
			position: relative;
			width: 100%;
			overflow: hidden;
			}
			.carousel-images {
			display: flex;
			transition: transform 0.5s ease-in-out;
			}
			.carousel-images img {
			width: 100%;
			flex-shrink: 0;
			}
			.carousel-buttons {
			position: absolute;
			top: 50%;
			width: 100%;
			display: flex;
			justify-content: space-between;
			transform: translateY(-50%);
			}
			.carousel-buttons button {
			background: rgba(0,0,0,0.5);
			color: white;
			border: none;
			padding: 10px;
			cursor: pointer;
			}

.carousel-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.carousel-text h2 {
  margin: 0;
  font-size: 28px;
}

.carousel-text p {
  line-height: 1.5;
  margin: 0;
}

.cta-button {
display: inline-block;
    padding: 12px 16px;
    color: black;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    width: 100%;
    border: none;
    background: #1d1d1f;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.cta-button:hover {
  opacity:.8;
}

/* Mobil: stacked */
@media (max-width: 768px) {
  .carousel-section {
    flex-direction: column;
  }
  
  .carousel-container,
  .carousel-text {
    flex: none;
    width: 100%;
  }
  
  .carousel-text h2 {
    font-size: 24px;
  }
  
  .carousel-text p {
    font-size: 14px;
  }
  
  .cta-button {
    width: 100%;
    text-align: center;
  }
}


.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.indicator {
  width: 12px;
  height: 12px;
  background-color: rgba(255,255,255,0.6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background-color: rgba(255,255,255,1);
}



.carousel-btn, button {
  user-select: none;      /* Forhindrer tekstmarkering */
  touch-action: manipulation; /* Forhindrer zoom på dobbelttryk */
  -webkit-tap-highlight-color: transparent; /* Fjerner highlight på tryk i iOS */
}



.text-section {
  max-width: 1400px;
  margin: 50px auto;
  padding: 20px 30px;

}

.text-container h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.text-container p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}

/* Mobilvenligt */
@media (max-width: 600px) {
  .text-section {
    padding: 15px 20px;
  }

  .text-container h2 {
    font-size: 26px;
  }

  .text-container p {
    font-size: 16px;
  }
}



.footer {
  background-color: #000;
  color: #ddd;
  padding: 40px 20px 20px 20px;

  font-size: 14px;
}

.footer-menus {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 30px auto;
  flex-wrap: wrap;
}

.footer-menu {
  flex: 1;
  min-width: 150px;
  text-align: center;
}

.footer-menu h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-menu a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #fff;
}

hr {
  border: none;
  border-top: 1px solid #444;
  max-width: 1400px;
  margin: 0 auto 25px auto;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
}

.footer-logo-social {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  padding-top: 10px;
  border-bottom: 1px solid #333;
  font-size: 13px;
  color: #999;
}

.footer-logo img {
  height: 24px;
  width: auto;
  margin-bottom:8px;
}

.footer-social a {
  display: inline-block;
  margin-right: 15px;
  filter: brightness(0.7);
  transition: filter 0.3s ease;
}

.footer-social a:hover {
  filter: brightness(1);
}

.footer-social img {
  height: 24px;
  width: 24px;
  display: block;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  padding-top: 10px;
  font-size: 13px;
  color: #999;
}

.footer-legal-left a {
  margin-right: 20px;
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-left a:hover {
  color: #ddd;
}

.footer-legal-right p {
  margin: 0;
  color: #999;
}

/* Mobil: stak elementer */
@media (max-width: 768px) {
  .footer-menus {
    flex-direction: column;
  }

  .footer-menu {
    margin-bottom: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

  .footer-logo-social {
    justify-content: space-between;
    width: 100%;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-legal-left {
    margin-bottom: 10px;
  }
}


.sub-header,.sub-text {
	color:#6e6e73;
}

.primary-btn {
    display: inline-block;
    padding: 12px 16px;
    color: black;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    width: 240px;
    border: none;
    background: #1d1d1f;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.2s ease; /* <-- Fixet her */
}

.primary-btn:hover {
    opacity: 0.8;
}

.text-400 {font-weight:400;}
.text-500 {font-weight:500;}



.button-container {
      display: flex;
	   margin-top:24px;
      gap: 10px; /* space between buttons */
    }
	
	/* Mobil: stak elementer */
@media (max-width: 768px) {
	.button-container {
      display: flex;
	    justify-content: center;
      gap: 10px; /* space between buttons */
	  margin-top:24px;
    }  }

    .color-button {
      width: 32px;
    height: 32px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
    }

.midnight {
  background: linear-gradient(to bottom, #333333, #000000);
}

.mint {
  background: linear-gradient(to bottom, #6fd89c, #29aa69);
}

.sunburst {
  background: linear-gradient(to bottom, #ffe680, #ffcc33);
}

.coral {
  background: linear-gradient(to bottom, #f89a9e, #f04950);
}

.orchid {
  background: linear-gradient(to bottom, #f68cc8, #ef33a3);
}

.lavender {
  background: linear-gradient(to bottom, #a3a4d5, #5859a9);
}

.ocean {
  background: linear-gradient(to bottom, #92e2fa, #34bdf1);
}


.download {
	
	text-align:center;
}


.download-img {
	height:40px;
}

.download-section {
    min-height: 200px;
    display: flex
;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background-color: #fff;
}

.lang-icon {
	height:24px;
	width:auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.spacer {
	min-height:100px;
}

.price {
	font-weight:500;
}

.secure-payment {
	font-size:14px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* gør det responsivt på små skærme */
    gap: 10px;
    padding: 10px 0;
  }


  .payment-logos {
    display: flex;
    gap: 10px;
  }

  .payment-logos svg {
    height: 24px;
    width: auto;
  }
  
    .product-info {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
  }

  .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
  
  }

  .info-item svg {
    width: 18px;
    height: 18px;
    fill: #0071e3;
  }
  
 .specs-section {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #333;
  }

  .specs-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .specs-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .spec-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
  }

  .spec-label {
    color: #666;
    flex: 1;
  }

  .spec-value {
    font-weight: 500;
    text-align: right;
    flex: 1;
  }
  
  
  .modal-content {
  
  padding: 16px;
    width: 98%;
    max-width: 100%;
   
}


@media (min-width: 769px) {

	
  
  .modal-content {
	  padding: 50px;
    width: 90%;
    max-width: 1100px;
  }
  

}

			
			.modal {
			display: flex;
			align-items: center;
			justify-content: center;
			position: fixed;
			inset: 0;
			z-index: 1000;
			pointer-events: none;
			opacity: 0;
			transition: opacity 0.3s ease;
			}
			.modal.active {
			opacity: 1;
			pointer-events: auto;
			}
			.modal-overlay {
			position: absolute;
			inset: 0;
			background-color: rgba(0, 0, 0, 0.4);
			z-index: 1;
			}
			@keyframes blurIn {
			0% {
			backdrop-filter: blur(0px);
			}
			100% {
			backdrop-filter: blur(10px);
			}
			}
			
			.modal-content p {
				font-weight: 500;
    color: #6e6e6e;
			}
			
			.modal-content h3 {
				font-weight: 500;
    color: #1d1d1d;
			}
			
			.modal-content h2 {
			
    color: #1d1d1d;
			}
			
			.modal-content {
			position: relative;
			
			height: 90%;
			
			max-height: 90vh;
			background: white;
			
			border-radius: 8px;
			box-shadow: 0 5px 15px rgba(0,0,0,0.3);
			overflow-y: auto;
			z-index: 2;
			opacity: 0;
			transform: scale(0.98);
			transition: opacity 0.3s ease, transform 0.3s ease;
		
			scrollbar-width: none; 
			}
			.modal-content::-webkit-scrollbar {
			display: none; 
			}
			.modal.active .modal-content {
			opacity: 1;
			transform: scale(1);
			}
			.modal-header {
			position: sticky;
			top: 0;
			display: flex;
			justify-content: flex-end; 
			z-index: 10;
			}
			.close-button {
			background-color: rgb(255 255 255 / 0%);
			font-size: 2rem;
			border: none;
			cursor: pointer;
			}
			.blur-overlay {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: rgba(255, 255, 255, 0.1);
			z-index: 999;
			backdrop-filter: blur(0px);
			opacity: 0;
			pointer-events: none;
			transition: opacity 0.3s ease;
			}
			.blur-overlay.active {
			animation: blurIn 0.3s forwards;
			opacity: 1;
			pointer-events: auto;
			}
			@keyframes blurIn {
			0% {
			backdrop-filter: blur(0px);
			}
			100% {
			backdrop-filter: blur(10px);
			}
			}
			body.modal-open {
			overflow: hidden;
			}
			.lang_icon
			{
			width:24px;
			height:auto;
			}
			
			
			
			
			 .modal-two-boxes-section {
    background-color: #fff; /* grå baggrund */
    padding: 40px 20px;
	border-radius: 18px;
	margin-top:16px;
  }

  .modal-two-boxes-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; /* gør det responsivt */
    max-width: 1000px;
    margin: 0 auto;
  }

  .modal-box {
    background: #f2f2f2;
    border-radius: 16px;
    padding: 0px 24px 24px 24px;
    text-align: center;
    width: 450px;
  }

  .modal-box img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
	opacity:.4;
  }

  .modal-box-text {
    font-size: 0.95rem;
    color: #333;
  }
  
  
  
  
  
  
  
  
  
  
  
  
.contact-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: 36px;
  margin-bottom: 40px;
}

.contact-boxes {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-box {
  flex: 1 1 300px;
  background-color: #f5f5f7;
  padding: 120px 20px;
  border-radius: 24px;
  text-align: center;
}

.contact-box h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-box p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-box a {
color: #000000;
    text-decoration: none;
    font-weight: 500;
}

.contact-box a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 28px;
  }

  .contact-box {
    padding: 80px 20px;
  }
}
