* {
margin: 0;
padding: 0;
box-sizing: border-box;
}


body {
font-family: 'Inter', sans-serif;
background: #f4f6fb;
color: #1f2933;
line-height: 1.6;
}


img {
max-width: 100%;
display: block;
}


a {
text-decoration: none;
color: inherit;
}


/* ====== NAVIGATION ====== */
header {
background: radial-gradient(circle at top, #6366f1, #142959);
color: white;
}


.nav {
max-width: 1200px;
margin: auto;
padding: 1.2rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}


.logo {
height: 150px;
width: auto;
margin-top: -20px;
}


.nav-links {
display: flex;
gap: 1.5rem;
font-weight: 500;
}


/* ====== HERO ====== */
.hero {
max-width: 1200px;
margin: auto;
padding: 5rem 2rem;
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 3rem;
align-items: center;
}


.hero h1 {
font-size: 2.8rem;
line-height: 1.2;
margin-bottom: 1rem;
}


.hero p {
font-size: 1.1rem;
opacity: 0.9;
margin-bottom: 2rem;
}


.btn {
display: inline-block;
background: #22c55e;
color: #064e3b;
padding: 0.9rem 1.5rem;
}

.btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


.hero-image {
background: rgba(255, 255, 255, 0);
border-radius: 5px;
width: 600px;
height: auto;
box-shadow: 0 20px 40px rgba(0,0,0,0.15);
transition: transform 0.2s ease;
box-shadow: 0 10px 25px rgba(0,0,0,0.08);
margin-left: 20px;
}

.hero-image:hover {
  transform: translateY(-6px);
}


/* ====== FEATURES ====== */
.features {
max-width: 1200px;
margin: auto;
padding: 4rem 2rem;
text-align: center;
}


.features h2 {
text-align: center;
font-size: 2.2rem;
margin-bottom: 3rem;
}


.feature-grid,
.feature-grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}


.feature {
background: white;
padding: 2rem;
border-radius: 14px;
box-shadow: 0 10px 25px rgba(0,0,0,0.08);
transition: transform 0.2s ease;
}


.feature:hover {
transform: translateY(-6px);
}


.feature h3 {
margin-bottom: 0.7rem;
}


.feature p {
font-size: 0.95rem;
opacity: 0.85;
}

#voresprocess {
    background-color: #6366f1;
    color: white;
    margin: 20px;
    border-radius: 5px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.page-hero-content {
    text-align: center;
    margin: 50px;
}

.content-wrapper {
    margin: 50px;
    text-align: center;
    box-sizing: border-box;
}

.content-wrapper h2 {
    margin: 10px;
}

.content-wrapper p {
    margin: 10px;
}

/* Sektion til Om Os */
/* ===== ABOUT HERO ===== */
.about-hero {
    background: linear-gradient( #6366f1, #193472);
  color: white;
  padding: 6rem 2rem;
}

.about-hero-inner {
  max-width: 900px;
  margin: auto;
}

.about-hero .tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.about-hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.about-hero p {
  font-size: 1.15rem;
  max-width: 600px;
  opacity: 0.9;
}

/* ===== SPLIT SECTION ===== */
.about-split {
  max-width: 1200px;
  margin: auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  opacity: 0.85;
}

.about-cards {
  display: grid;
  gap: 1.5rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ===== VALUES ===== */
.about-values {
  background: #f4f6fb;
  padding: 5rem 2rem;
  text-align: center;
}

.about-values h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.values-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 20px;
}

.values-grid span {
  font-size: 2rem;
  font-weight: 700;
  color: #6366f1;
}

.values-grid h3 {
  margin: 0.6rem 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }
}


/* dette afsnit til kontakt undersiden */
.contact-hero {
  background: linear-gradient( #6366f1, #193472);
  color: white;
  padding: 6rem 2rem;
}

.contact-hero-inner {
  max-width: 900px;
  margin: auto;
}

.contact-hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.contact-hero p {
  font-size: 1.15rem;
  max-width: 600px;
  opacity: 0.9;
}

/* ===== CONTACT SPLIT ===== */
.contact-split {
  max-width: 1200px;
  margin: auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  opacity: 0.85;
  margin-bottom: 2rem;
}

.contact-points div {
  margin-bottom: 1.5rem;
}

/* ===== FORM ===== */
.contact-form form {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.3rem;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6366f1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }
}


/* til services herunder */

/* ===== SERVICES ===== */
.services {
  padding: 5rem 2rem;
}

.services-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
   justify-items: stretch;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card h2 {
  margin-bottom: 0.8rem;
}

.service-card p {
  opacity: 0.85;
  margin-bottom: 1rem;
}

.service-card ul {
  padding-left: 1.2rem;
  line-height: 1.8;
}

.services-cta {
  text-align: center;
  margin-top: 5rem;
}

.services-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}


/* ====== FOOTER ====== */
footer {
background: #111827;
color: #9ca3af;
padding: 2rem;
text-align: center;
margin-top: 4rem;
}


/* ====== RESPONSIV ====== */
@media (max-width: 900px) {
.hero {
grid-template-columns: 1fr;
text-align: center;
}


.feature-grid {
grid-template-columns: 1fr 1fr;
}
}


@media (max-width: 600px) {
.nav-links {
display: none;
}


.hero h1 {
font-size: 2.1rem;
}


.feature-grid {
grid-template-columns: 1fr;
}
}