/* ========= BASE ========= */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #ffffff;
  color: #222;
  line-height: 1.7;
}

/* Prevent images from breaking layouts */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========= NAV ========= */
.nav-minimal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
  font-size: 14px;
}

.nav-left img {
  height: 68px;
}

.nav-right a {
  margin-left: 25px;
  text-decoration: none;
  color: #222;
}

.nav-right a.active {
  text-decoration: underline;
}

/* ========= LAYOUT ========= */
.two-column {
  display: flex;
  gap: 80px;
  padding: 80px 60px;
}

.left-col {
  flex: 1;
}

.right-col {
  flex: 2;
}

/* ========= HERO ========= */
.hero-minimal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 60px;
  gap: 80px;
}

.hero-text {
  max-width: 500px;
}

.hero-name,
.hero-text h1 {
  font-size: 36px;
  font-weight: 500;
}

.hero-line {
  height: 1px;
  background: #222;
  margin: 10px 0 20px 0;
}

.hero-image img {
  width: 390px;
  border-radius: 4px;
}

/* ========= ABOUT ========= */
.about-wrap {
  padding: 80px 60px;
}

.about-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

/* THIS FIXES YOUR PROBLEM */
.about-image {
  float: left;
  margin: 0 30px 20px 0;
  width: 220px; /* locks container */
}

.about-image img {
  width: 100%; /* fills container only */
  border-radius: 4px;
}

/* ========= SERVICES ========= */
.content-minimal {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
}

.price-section {
  margin-bottom: 40px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.price-note {
  font-size: 14px;
  color: #666;
}

/* ========= CONTACT ========= */
.contact-info p {
  margin-bottom: 25px;
}

/* Klinikken layout */
.klinikk-section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.klinikk-image {
  width: 180px; /* LOCK width */
  flex-shrink: 0;
}

.klinikk-image img {
  width: 100%;
  border-radius: 4px;
}

.klinikk-text {
  max-width: 400px;
}

/* Map */
.contact-image iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 4px;
  margin-top: 30px;
}

/* ========= FOOTER ========= */
.footer-minimal {
  padding: 40px 60px;
  font-size: 13px;
  color: #666;
}

/* ========= MOBILE ========= */
@media (max-width: 768px) {

  .nav-minimal {
    padding: 20px 30px;
  }

  .two-column,
  .hero-minimal {
    flex-direction: column;
    padding: 60px 30px;
  }

  .hero-image img {
    width: 100%;
    max-width: 320px;
  }

  /* About mobile fix */
  .about-image {
    float: none;
    margin: 0 auto 20px auto;
    width: 220px;
  }

  /* Klinikken mobile */
  .klinikk-section {
    flex-direction: column;
  }

  .klinikk-image {
    width: 220px;
  }
}