.site-header {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

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

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  text-decoration: none;
  color: #404659;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav ul li.active a {
  font-weight: bold;
  color: #FF8100;
}

.login-btn {
  display: flex;
  align-items: center;
  background: #FF8100;
  color: white;
  gap: 10px;
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-right: 24px;
  width: 232px;
  height: 42px;
  justify-content: center;
}

.login-btn:hover {
  background: #FF8100;
}

.header-inner .img-fluid {
  width: 176px;
  margin-left: 65px;

}

.hero .img-fluid {
  width: 100%;
}

.hero {
  display: flex;
}

.hero a {
  width: 50%;
}

.strip-btn {
  display: flex;
  align-items: center;
  background: #FF8100;
  color: white;
  gap: 10px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-right: 24px;
  width: 396px;
  height: 83px;
  justify-content: center;
}

.promos p {
  text-align: center;
}

.promos p:first-of-type {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.promos p:nth-of-type(2) {
  font-size: 18px;
  color: #475569;
  font-weight: 700;
}

.promos_label {
  margin-top: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promos_label p:first-of-type,
.promos_label p:nth-of-type(2) {
  color: white;
  font-weight: 700;
  font-size: 40px;
  padding: 10px 35px;
  transform: skew(-20deg);
  /* display: inline-block; */
  margin: 0;
  line-height: 1;
  text-align: center;
  position: relative;
}

.promos_label p:first-of-type {
  background: #F5691A;
  z-index: 1;
  width: 245px;
}

.promos_label p:nth-of-type(2) {
  background: #475569;
  z-index: 2;
  margin-top: -10px;
  margin-left: 50px;
  width: 218px;
}

/* Ribbon triangle tip */
.promos_label p:nth-of-type(2)::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -45px;
  width: 0;
  height: 0;
  border-left: 28px solid transparent;
  border-top: 45px solid #475569;
  transform: skewX(0deg);
}

.about {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 3px 3px 3px 3px rgba(66, 66, 66, 0.06);
  padding: 40px;
  margin-bottom: 0px !important;
  margin: 80px auto;
  max-width: 80%;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
}

.about section {
  flex: 1 1 calc(50% - 40px); /* 2-column layout */
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding-bottom: 30px;
  position: relative;
}

/* Orange underline */
.about1::after, .about2::after, .about3::after, .about4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FF8100;
}

/* Image styling */
.about section > a img {
  width: 280px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  height: 100%;
}

.about section.about2 img, .about section.about4 img{
  width: 330px;
  height: 232px;
}

/* Content container (inside .container or .container1) */
.about section .container,
.about section .container1,
.about section .test {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  flex-grow: 1;
}

/* Text blocks */
.about section p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

/* Heading or emphasized first text */
.about section h3,
.about section strong,
.about section p:first-of-type {
  font-weight: 700;
  color: #2a2a2a;
  font-size: 15px;
  display: block;
}


/* === NEWS SECTION CONTAINER === */
.news {
  width: 100%;
  margin: 40px auto;
  /* padding: 0 20px; */
}

/* === SECTION TITLE: OM OSS === */
.news > p:first-child , .contact > p:first-child {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  margin-bottom: 0px;
}

/* === MAIN FLEX CONTAINER (image + text) === */
.about_container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  background-color: #fff;
  border-radius: 12px;
  padding:30px;
  box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.08);
  align-items: stretch;
  margin-left : 10%;
  max-width: 80% !important;
  min-height: 100%;
  height: 100%;
}

/* === LEFT COLUMN IMAGE === */
.about_container > a {
  flex: 0 0 45%;
  max-width: 45%;
}

.about_container > a img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 7px rgba(0, 0, 0, 0.12);
  display: block;
}

/* === RIGHT CONTENT COLUMN === */
.about_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* === LABEL STYLING (PROFESSIONELL, KONSUMENT) === */
.about_content p:nth-of-type(1),
.about_content p:nth-of-type(4) {
  background-color: #475569;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 7px 24px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  /* display: inline-block; */
  margin: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  width: 173px;
}

/* === DIVIDER (fake <hr> using border) === */
.about_content .container {
  background-color: #D9D9D9;
  width: 100%;
  height: 7px;
  margin: 40px 0;
}

/* === PARAGRAPH TEXTS === */
.about_content p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}


p.cms-plugin.cms-plugin-87{
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.content{
  color: #475569;
}

.about_content input{
  background-color: #F5F5F5;
  height: 48px;
  border: 1px solid #D1D5DB;
}

.about_content input::placeholder, .about_content textarea::placeholder{
  color: #A8A8A8;

}

.about_content label{
  margin-bottom: 0;
}

.about_content textarea {
  background-color: #F5F5F5;
  height: 160px;
  border: 1px solid #D1D5DB

}

.about_content button{
  color: white;
  background-color: #FF8100;
  height: 42px;
  font-size: 16px;
}

.about_content button:hover{
  background-color: #FF8100;
  color: white;
}

.about_content form{
  padding: 10px !important;
}

.about_container img{
  height: 554px;
  border-radius: 7px;
  width: 35vw;
  /* object-fit: cover;
  flex: 1 1 10%;
  display: block; */
}

.site-footer {
  background-color: #f8f8f8;
  padding: 30px 0 50px 0;
  text-align: center;
}

.footer-content {
  width: 100vw;
  height: 75px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  background-color: white;
}

.footer-content img {
  /* height: 40px; */
  width: 150px;
  display: inline-block;
}


@media screen and (max-width: 1200px) {
  .about{
    display: block;
  }

  .about section{
    padding-top: 30px;
  }

  .about1{
    padding-top: 0 !important;
  }

  .about_container{
    display: block;
  }

  .about_content{
    margin-top: 20px;
  }
}