/* ==========================================================================
   1. Generelle Stilarter & Grundlæggende Layout (Body, Container)
   ========================================================================== */
html, body { /* Sæt html og body til fuld højde */
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    background-color: #f8f9fa; /* Lidt lysere baggrund */
    color: #343a40; /* Mørkere tekst for bedre læsbarhed */
    display: flex; /* Gør body til en flex-container */
    flex-direction: column; /* Stable elementerne vertikalt */
    min-height: 100vh; /* Sørg for at body er mindst 100% af viewport-højden */
}

.container {
    max-width: 960px; /* Ændret fra 'width' til 'max-width' med den ønskede desktop-bredde */
    width: 100%; /* Sørg for at den fylder 100% af sin plads, op til max-width */
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Tillad containeren at vokse og skubbe footeren ned */
}

/* ==========================================================================
   2. Header & Navigation
   ========================================================================== */
header {
    background-color: #000;
    color: #fff;
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

header img {
    max-height: 200px; /* Logo 20% større */
    margin-bottom: 0.5em;
}

header nav {
    background-color: #222;
    width: 100%;
    padding: 0.75em 0;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 1.5em;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5em 0.75em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

header nav ul li a:hover {
    background-color: #004085; /* Ny blå hover farve (tidligere #495057) */
}
/* ==========================================================================
   3. Main Indhold (Generelt)
   ========================================================================== */
main {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08); /* Blødere skygge */
    color: #343a40;
    flex-grow: 1; /* Denne linje får main til at fylde al tilgængelig plads */
}

.intro {
    text-align: left;
    margin-bottom: 2.5em; /* Lidt mere plads under intro-sektionen */
    padding: 1.5em 0; /* Lidt mere intern padding */
}

.intro h1 {
    font-family: 'Montserrat', sans-serif; /* En moderne, ren font */
    font-size: 2.2em; /* Større og mere iøjnefaldende overskrift */
    color: #212529; /* Mørkere farve for bedre kontrast */
    margin-bottom: 0.6em; /* Mere plads under overskriften */
	margin-left: 12%;
    line-height: 1.2; /* Forbedret linjeafstand for læsbarhed */
    letter-spacing: -0.02em; /* Lidt strammere bogstavmellemrum */
}

.intro p {
    font-family: 'Open Sans', sans-serif; /* En letlæselig brødtekstfont */
    font-size: 0.9em; /* Lidt større brødtekst */
    line-height: 1.7; /* Generøs linjeafstand for let læsning */
    max-width: 700px; /* Begrænser tekstens bredde for bedre læsbarhed */
    margin: 0.5em auto 1.5em auto; /* Centrerer tekst og giver plads */
    color: #495057; /* En blødere grå farve for teksten */
}

.button {
    /* Ny frisk accentfarve, f.eks. en mørkere akvamarin/petrol */
    background-color: #008c8c; /* En distinkt, men ikke overvældende farve */
    color: #fff;
    padding: 0.9em 2em; /* Større padding for knappen */
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1em;
	margin-left: 12%;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Tilføjet transform til transition */
    font-weight: 600; /* Federe tekst på knappen */
}

.button:hover {
    background-color: #006b6b; /* Mørkere ved hover */
    transform: translateY(-3px); /* Løfter knappen en smule ved hover for interaktivitet */
    box-shadow: 0 5px 10px rgba(0, 140, 140, 0.3); /* Blød skygge ved hover */
}


/* ==========================================================================
   4. Forside indhold
   ========================================================================== */

 /* Farver (ændr efter behov) */
  :root{
    --indigo:#1E3A8A;   /* MS-blå */
    --text:#0B1220;
    --muted:#4B5563;
    --bg:#FFFFFF;
    --edge:#E5E7EB;

    --gold:#F59E0B;
    --teal:#0EA5A4;
    --orange:#EA580C;
  }

  .hero-ms{
    background: var(--bg);
    border: 1px solid var(--edge);
    border-radius: 18px;
    padding: clamp(24px, 3vw, 42px);
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    max-width: 1100px;
    margin: 24px auto;
  }

  .hero-wrap{
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-ms h1{
    font-size: clamp(28px, 4.2vw, 42px);
    line-height: 1.15;
    margin: 0 0 10px;
    color: var(--text);
    font-weight: 800;
    letter-spacing:.2px;
  }

  .hero-ms .sub{
    font-size: clamp(16px, 2.1vw, 18px);
    color: var(--muted);
    margin: 0 auto 18px;
    max-width: 760px;
  }

  .features{
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px 18px;
    list-style: none;
    padding: 0;
    margin: 22px auto 26px;
    max-width: 820px;
    text-align: left;
  }

  @media (max-width:720px){
    .features{ grid-template-columns: 1fr; }
  }

  .features li{
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F8FAFC;
    border: 1px solid var(--edge);
    border-radius: 14px;
    padding: 12px 14px;
  }

  .icon-badge{
    width: 20px; height: 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 6px 14px rgba(0,0,0,.12) inset, 0 3px 10px rgba(0,0,0,.06);
    flex: 0 0 20px;
  }
  .icon-badge.gold{ background: var(--gold); }
  .icon-badge.teal{ background: var(--teal); }
  .icon-badge.indigo{ background: var(--indigo); }
  .icon-badge.orange{ background: var(--orange); }

  .features .text{
    color: var(--text);
    font-size: 16px;
  }

  .cta{
    display: inline-block;
    background: var(--indigo);
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(30,58,138,.25);
    transition: transform .08s ease, box-shadow .2s ease, opacity .2s ease;
  }
  .cta:hover{ transform: translateY(-1px); box-shadow: 0 12px 24px rgba(30,58,138,.32); }
  .cta:active{ transform: translateY(0); opacity: .9; }

  /* Skjul/vis sæsonpunkt efter behov */
  /* .features li.seasonal{ display:none; }  <-- fjern kommentaren for at skjule 🍂-punktet */

/* ==========================================================================
   5. Priser Sektion (prices) & Bilstørrelsesvælger
   ========================================================================== */
.prices table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
}

.prices th,
.prices td {
    border: 1px solid #dee2e6; /* Lettere border farve */
    padding: 0.75em;
    text-align: left;
    color: #343a40; /* Tekstfarve */
}

.prices th {
    background-color: #004085; /* Ny baggrundsfarve - samme som menu hover */
    color: #fff; /* Sætter tekstfarven til hvid for bedre kontrast */
}

/* NY CSS - VIGTIGT for at styre visningen af prislister */
.price-list {
    display: none; /* Skjul alle prislister som standard */
    margin-top: 1em;
}

.price-list.active {
    display: block; /* Vis kun den aktive prisliste */
}

.size-select-container {
    margin-bottom: 1em;
}

.size-images {
    display: flex;
    align-items: center;
    margin-top: 0.5em;
    margin-bottom: 1em;
}

.size-images img {
    cursor: pointer;
    opacity: 0.6; /* Gør ikke-valgte billeder lidt gennemsigtige */
    border: 2px solid transparent; /* Sikrer en gennemsigtig kant fra start, så elementet ikke "hopper" */
    border-radius: 4px;
    transition: all 0.3s ease;
}

.size-images img + img {
    margin-left: 10px;
}

.size-images img:hover {
    opacity: 0.8; /* Lidt mere synlig ved hover */
}

.size-images img.selected {
    opacity: 1; /* Fuldt synlig, når valgt */
    border: 2px solid #007bff; /* Fremhæv det valgte billede */
}

/* Fjerner enhver kant og skygge for valgte/fokuserede/aktive billeder fra din tidligere kode,
   da den nye .selected-klasse nu håndterer styling */
.size-images img.selected,
.size-images img:focus,
.size-images img:active {
    /* border: 2px solid transparent !important; */ /* Denne er dækket af .selected nu */
    outline: none !important; /* Fjerner standard browser outline */
    box-shadow: none !important; /* Fjerner eventuelle skygger der ligner kanter */
}

.inside {
	font-weight: 700;
	color: #004085;
}
/* ==========================================================================
   6. "Se Mere" / "Læs Mere" Funktionalitet
   ========================================================================== */
.read-more-trigger {
    cursor: pointer;
    color: #343a40 !important; /* Force black text */
    font-weight: normal !important; /* Force not bold */
    text-decoration: none;
}

.read-more-trigger:hover {
    text-decoration: underline;
}

.more-text-trigger {
    font-weight: bold !important; /* Force bold text */
    color: #343a40 !important; /* Force black text */
}

.read-more-content {
    display: none; /* Skjul dette indhold som standard */
    margin-top: 0.5em;
    padding-left: 1em;
    border-left: none; /* FJERN STREGEN HELT */
    color: #343a40;
}

/* Styling for prikkerne i det udvidede indhold (::before pseudo-element) */
.read-more-content p {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
}

.read-more-content p::before {
    content: "\2022";
    color: #343a40; /* BEHOLDER SAMME FARVE SOM RESTEN AF TEKSTEN I TRÅDEN */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

/* ==========================================================================
   7. Kontaktinformation (contact-info) & Formular
   ========================================================================== */
.contact-info {
    padding: 20px; /* Tilføj padding omkring hele sektionen */
    background-color: #fff; /* Sørg for hvid baggrund for kontrast */
    border-radius: 8px; /* Afrundede hjørner */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Blødere skygge */
}

.contact-info h2,
.contact-info h3 {
    color: #343a40;
    margin-bottom: 1em;
}

.contact-info p {
    margin-bottom: 1em;
    line-height: 1.6;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2em; /* Mere plads under listen */
}

.contact-info li {
    margin-bottom: 0.8em; /* Lidt mere luft mellem listepunkter */
    color: #343a40;
    font-size: 1.1em; /* Lidt større tekst */
}

.contact-info li strong {
    color: #004085; /* Giv titlerne i listen din blå farve */
}


.contact-info form label {
    display: block;
    margin-bottom: 0.5em; /* Lidt mere luft under labels */
    font-weight: 600; /* Lidt federe skrift */
    color: #495057; /* En mørkere grå til labels */
}

.contact-info form input[type="text"],
.contact-info form input[type="email"],
.contact-info form textarea {
    width: 100%;
    padding: 0.8em 1em; /* Mere padding inde i felterne */
    margin-bottom: 1.5em; /* Mere luft under felterne */
    border: 1px solid #ced4da; /* Blødere kantfarve */
    border-radius: 6px; /* Let afrundede hjørner */
    box-sizing: border-box;
    color: #343a40;
    font-size: 1em; /* Sørg for standard skriftstørrelse */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Blød transition */
}

.contact-info form input[type="text"]:focus,
.contact-info form input[type="email"]:focus,
.contact-info form textarea:focus {
    outline: none; /* Fjern standard outline */
    border-color: #007bff; /* Blå kant ved fokus */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25); /* Blå skygge ved fokus */
}

.contact-info form textarea {
    resize: vertical; /* Tillad kun vertikal resizing */
}

.contact-info form button[type="submit"] {
    background-color: #008c8c; /* Din nye accentfarve fra tidligere, den turkise */
    color: #fff;
    padding: 0.9em 2em; /* Mere padding på knappen */
    border: none;
    border-radius: 6px; /* Afrundede hjørner */
    cursor: pointer;
    font-size: 1.1em; /* Lidt større tekst på knappen */
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Blød transition */
}

.contact-info form button[type="submit"]:hover {
    background-color: #006b6b; /* Mørkere turkis ved hover */
    transform: translateY(-2px); /* Løft knappen en smule ved hover */
}

.kontakt-form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-top: 2rem;
    width: 100%;
}

.kontakt-form .form-group {
    margin-bottom: 1rem; /* Mindre afstand mellem felter (før var det 1.5rem) */
}

.kontakt-form label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: #333;
}

.kontakt-form input,
.kontakt-form textarea {
    width: 100%;
    padding: 0.65rem; /* Lidt mere kompakt */
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
    border-color: #0077cc;
    outline: none;
}

.kontakt-form .btn {
    background-color: #0077cc;
    color: white;
    padding: 0.5rem 1rem; /* 50% mindre padding */
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 150px; /* 50% mindre bredde enn før */
}

.kontakt-form .btn:hover {
    background-color: #005fa3;
}


.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thank-you-message {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-top: 2rem;
}

.thank-you-message h1 {
    color: #008c8c;
    margin-bottom: 1rem;
}

.thank-you-message p {
    font-size: 1.1rem;
    color: #343a40;
}

.thank-you-message a {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background-color: #0077cc;
    color: #fff;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.thank-you-message a:hover {
    background-color: #005fa3;
}

/* ==========================================================================
   8. Footer
   ========================================================================== */
footer {
    text-align: center;
    padding: 1em;
    background-color: #000;
    color: #adb5bd;
}

/* ==========================================================================
   9. Bil-størrelse Widget Styles (Uafhængig af .prices)
   ========================================================================== */
.container_size {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 2em;
    max-width: 400px;
    width: 100%;
    margin: 2em auto;
}

.container_size h1 {
    font-size: 1.8rem;
    margin-bottom: 1em;
    text-align: center;
    color: #343a40;
}

label {
    font-weight: 600;
    margin-bottom: 0.25em;
    display: block;
    color: #495057;
}

select {
    width: 100%;
    padding: 0.6em 1em;
    border: 1px solid #ced4da;
    border-radius: 6px;
    background: #fff;
    font-size: 1rem;
    margin-bottom: 1em;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%227%22%20viewBox%3D%220%200%2010%207%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0%200l5%207%205-7z%22%20fill%3D%22%23495057%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75em center;
    background-size: 0.65em;
}

select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.2);
}

select:disabled {
    background: #e9ecef;
    color: #adb5bd;
}

#sizeOutput {
    margin-top: 1.5em;
    background: #e0f2fe;
    padding: 0.75em 1em;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    color: #0369a1;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
    min-height: 2em;
}

/* ==========================================================================
   10. Responsivt Design (Media Queries)
   ========================================================================== */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 10px;
    }

    header {
        flex-direction: column;
        align-items: center;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 0.75em 0;
    }

    nav ul {
        justify-content: space-around;
        flex-direction: row;
        flex-wrap: wrap;
    }

    main {
        margin-left: 0;
        padding: 10px;
    }

    .size-images {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==========================================================================
   11. Info
   ========================================================================== */

.info-section {
    background-color: #f7f7f7;
    padding: 2em;
}

.info-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5em;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5em;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1.5em;
    text-align: center;
    transition: transform 0.2s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 0.5em;
}

.info-card a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    display: block;
    margin-top: 0.5em;
}

.info-card a:hover {
    color: #007bff;
}

/* ==========================================================================
   12. Ydelser Side Styling (NY SEKTION)
   ========================================================================== */

/* Generel styling for services side introduktion */
.services-intro {
    text-align: left;
    margin-bottom: 2em;
    padding-bottom: 1em;
    border-bottom: 1px solid #eee; /* En let linje for at adskille intro fra kasserne */
}

.services-intro h1 {
    font-size: 2.5em;
    color: #000; /* Eller din primære overskriftsfarve */
    margin-bottom: 0.5em;
	padding-left: 6%;
}

.services-intro p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px; /* Begrænser tekstens bredde for bedre læsbarhed */
    margin: 0 auto; /* Centrerer teksten */
}

/* Styling for kategoriboksene (container) */
.service-categories {
    display: flex;
    flex-wrap: wrap; /* Gør at kasserne hopper ned på en ny linje på mindre skærme */
    justify-content: center; /* Centrerer kasserne vandret, når de ikke fylder hele bredden */
    gap: 20px; /* Afstand mellem kasserne både vandret og lodret */
    margin-top: 2em; /* Afstand fra intro-teksten */
}

/* Styling for de individuelle kategoribokse */
.category-box {
    background-color: #f9f9f9; /* Let grå baggrund for boksene */
    border: 1px solid #ddd; /* Diskret kant */
    border-radius: 8px; /* Afrundede hjørner */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Blød skygge for dybdeeffekt */
    padding: 20px;
    text-align: center;
    flex: 1 1 calc(50% - 40px); /* To kasser pr. række på større skærme (50% bredde minus gap) */
    max-width: 400px; /* Maksimal bredde for en enkelt kasse for at undgå for store kasser på brede skærme */
    display: flex; /* Gør indholdet i boksen til flex-items */
    flex-direction: column; /* Organiserer indholdet i en kolonne */
    justify-content: space-between; /* Skubber "Læs mere" knappen til bunden, hvis tekstlængden varierer */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Blød overgang ved hover-effekt */
}

.category-box:hover {
    transform: translateY(-5px); /* Løfter kassen en smule op ved hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Gør skyggen tydeligere ved hover */
}

.category-box .category-image {
    max-width: 100%; /* Sikrer, at billedet ikke løber uden for boksen */
    height: auto; /* Bevarer billedets proportioner */
    border-radius: 4px; /* Lette afrundede hjørner på billedet */
    margin-bottom: 15px; /* Afstand under billedet */
    display: block; /* Fjerner ekstra plads under inline-billeder */
    margin-left: auto; /* Centrerer billedet */
    margin-right: auto; /* Centrerer billedet */
    max-height: 200px; /* Begrænser billedhøjden for at give en ensartet række */
    object-fit: cover; /* Sikrer at billedet fylder pladsen uden at forvrænge, beskærer om nødvendigt */
}

.category-box h3 {
    font-size: 1.8em;
    color: #333; /* Mørk grå til overskrifter */
    margin-bottom: 10px;
}

.category-box p {
    font-size: 1em;
    color: #666; /* Lysere grå til brødtekst */
    line-height: 1.5;
    margin-bottom: 20px; /* Plads over knappen */
    flex-grow: 1; /* Sikrer, at tekstboksen udvider sig og skubber knappen ned */
}

.category-box .btn-more-info {
    display: inline-block; /* Gør knappen til en blok-type element */
    background-color: #007bff; /* Standard blå farve (kan ændres til din brandfarve) */
    color: #fff; /* Hvid tekst på knap */
    padding: 10px 20px;
    text-decoration: none; /* Fjerner understregning */
    border-radius: 5px; /* Afrundede hjørner på knap */
    transition: background-color 0.3s ease; /* Blød overgang ved hover */
    margin-top: auto; /* Skubber knappen til bunden af boksen (pga. flexbox) */
}

.category-box .btn-more-info:hover {
    background-color: #0056b3; /* Mørkere blå ved hover */
}

/* ==========================================================================
   13. Keramisk Coating
   ========================================================================== */

.coating-page {
    margin-top: 2rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.coating-page h2 {
    margin-bottom: 1rem;
    color: #1c6ea0;
    font-size: 1.5rem;
}

/* Fjernede den generelle 'strong' stil herfra for at undgå at al fed tekst bliver blå */
/* .coating-page strong {
	font-weight: 500;
	color: #000;
} */


/* ==========================================================================
   14. Vaske guide (Gennemtjekkes for at matche ny standard)
   ========================================================================== */

.car-wash-guide {
    margin-top: 3rem; /* Denne var der i forvejen */
    background-color: #fff; /* Denne var der i forvejen */
    padding: 2rem; /* Denne var der i forvejen */
    border-radius: 10px; /* Denne var der i forvejen */
    box-shadow: 0 4px 12px rgba(0,0,0,0.06); /* Denne var der i forvejen */
}

.car-wash-guide h2,
.car-wash-guide h3 { /* Lidt justering i disse regler for at matche den nye standard */
    margin-bottom: 1rem;
    color: #343a40;
    font-size: 1.5rem;
    display: flex; /* Ny: For at aligne ikon med tekst */
    align-items: center; /* Ny: For at aligne ikon med tekst */
}

.car-wash-guide h2 i,
.car-wash-guide h3 i { /* Lidt justering i disse regler for at matche den nye standard */
    margin-right: 0.75em;
    color: #004085; /* Din blå accentfarve for ikoner */
    font-size: 1.2em;
}

.car-wash-guide .guide-list { /* Sikrer konsistent liste-stil */
    list-style: none; /* Fjerner standard liste-stil */
    padding-left: 0; /* Fjerner standard padding */
    margin-bottom: 2em;
}

.car-wash-guide .guide-list li { /* Sikrer konsistent liste-stil */
    position: relative;
    padding-left: 2em;
    margin-bottom: 0.8em;
    line-height: 1.6;
}

.car-wash-guide .guide-list li strong { /* Tilføjet for at farve listepunkttitler */
    color: #004085; /* Blå for punkt-titler */
}

.car-wash-guide .guide-list li::before { /* Ny: Tilføjer Font Awesome ikon som prik */
    content: "\f058"; /* Font Awesome "check-circle" ikon */
    font-family: "Font Awesome 5 Free"; /* Vigtigt for Font Awesome */
    font-weight: 900; /* Vigtigt for solide ikoner */
    color: #008c8c; /* Din turkise accentfarve til ikoner */
    position: absolute;
    left: 0;
    top: 0.2em;
    font-size: 1.1em;
}

/* ==========================================================================
   15. Keramisk Coating Guide (Ny sektion for coating_vedligeholdelse.html)
   ========================================================================== */
.coating-guide { /* Brug en ny, specifik klasse for denne guide-sektion */
    margin-top: 3rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.coating-guide h2,
.coating-guide h3 {
    margin-bottom: 1rem;
    color: #343a40;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.coating-guide h2 i,
.coating-guide h3 i {
    margin-right: 0.75em;
    color: #004085; /* Din blå accentfarve for ikoner */
    font-size: 1.2em;
}

.coating-guide p {
    margin-bottom: 1em;
    line-height: 1.6;
}

.coating-guide strong {
    font-weight: 600;
    color: #343a40; /* Standard farve for fed tekst i denne guide */
}

.coating-guide .guide-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2em;
}

.coating-guide .guide-list li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 0.8em;
    line-height: 1.6;
}

.coating-guide .guide-list li strong {
    color: #004085; /* Blå for punkt-titler */
}

.coating-guide .guide-list li::before {
    content: "\f058"; /* Font Awesome "check-circle" ikon for ul/ol */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #008c8c; /* Din turkise accentfarve til prikker/ikoner */
    position: absolute;
    left: 0;
    top: 0.2em;
    font-size: 1.1em;
}

/* ==========================================================================
   16. Bil størrelse
   ========================================================================== */

.size_container {
	max-width: 600px; /* Ændret fra 'width' til 'max-width' med den ønskede desktop-bredde */
    width: 100%; /* Sørg for at den fylder 100% af sin plads, op til max-width */
    margin: 2em auto; /* Behold margin for centrering */
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Tillad containeren at vokse og skubbe footeren ned */
}

/* ==========================================================================
   17. Typer af lakbeskyttelse
   ========================================================================== */

.coating-infographic {
  padding: 2em;
  background: #f8f9fa;
  font-family: Arial, sans-serif;
}
.coating-infographic h2 {
  text-align: center;
  margin-bottom: 1.5em;
}
.coating-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5em;
}
.card {
  background: white;
  border-radius: 10px;
  padding: 1.5em;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}
.card h3 {
  margin-top: 0;
  color: #007bff;
}
.card .icon {
  font-size: 2em;
  margin: 0.5em 0;
}
.card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}
.card ul li {
  margin-bottom: 0.5em;
  padding-left: 1em;
  position: relative;
}
.card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
}


/* ==========================================================================
   18. 1 & 2-trins polering
   ========================================================================== */

.info-page {
  max-width: 900px;
  margin: 2em auto;
  padding: 1em;
  background: #f9f9f9;
  border-radius: 12px;
}

.info-page h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1em;
}

.polering-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin: 2em 0;
  justify-content: center;
}

.polering-box {
  background: white;
  flex: 1 1 300px;
  border-radius: 10px;
  padding: 1.5em;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.polering-box h3 {
  margin-top: 0;
  color: #007bff;
}

.valg-section {
  background: #fff;
  border-left: 5px solid #007bff;
  padding: 1em 1.5em;
  border-radius: 8px;
}

.valg-section h3 {
  margin-top: 0;
  color: #333;
}

.valg-section a {
  color: #007bff;
  text-decoration: underline;
}


/* ==========================================================================
   19. Om keramisk coating
   ========================================================================== */

/* Styles specifikke for "Om keramisk coating"-indholdet */
section.coating-page p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333; /* Sæt farven for almindelig tekst her */
}

section.coating-page ul {
    list-style: inside disc;
    margin-left: 0;
    margin-bottom: 20px;
    color: #333;
}

hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 30px 0;
}

/* Hvis "Se mere" er et link i en paragraph, f.eks. <p><a class="read-more-link">Se mere</a></p> */
/* Eller hvis det er et <strong> element inde i et link */
/* For at gøre "Se mere" fed og blå, antager jeg det er et link (<a>) eller har en specifik klasse.
   Jeg vil bruge .read-more-trigger som du allerede har defineret. */

/* ==========================================================================
   20. Tilbud
   ========================================================================== */

.offer-section {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Aligns content to the top of the flex container */
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    background-color: #f9f9f9; /* Moved background color here */
}

.offer-card {
    background-color: #ffffff; /* Changed to white */
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 600px; /* Adjust as needed */
    width: 100%;
    text-align: left; /* Align text within the card to the left */
}

.offer-card h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5em; /* Korrigeret til korrekt enhed */
    text-align: center; /* Center the heading within the card */
}

.offer-card p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #333; /* Sæt farven for almindelig tekst i offer-card til #333 */
    font-weight: normal; /* Sikre, at almindelig tekst ikke er fed */
}

.offer-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.offer-card ul li {
    margin-bottom: 3px; /* Justeret for at gøre afstanden mindre */
    padding: 8px 0px;
    border-radius: 4px;
    font-weight: bold; /* Denne skal forblive fed, hvis det er punkter som "Inkluderer:" */
    color: #333; /* Sæt farven til sort for listepunkter */
}

.offer-card .price {
    font-size: 2.5em;
    color: #28a745;
    font-weight: bold;
    margin-top: 20px;
    text-align: center; /* Center the price */
}

.offer-card .disclaimer {
    font-size: 0.9em;
    color: #777;
    margin-top: 20px;
    text-align: center; /* Center the disclaimer */
}
/* Style for the new icons to match checkmarks */
.offer-card p .fas {
    color: #28a745;
    margin-right: 8px; /* Space between icon and text */
}

/* Specifik stil for "Se mere" teksten. Antager den har klassen .read-more-trigger */
.read-more-trigger {
    color: #007bff; /* Blå farve */
    font-weight: bold; /* Fed skrift */
    text-decoration: none; /* Fjerner understregning som standard for at give dig mere kontrol */
}

.read-more-trigger:hover {
    text-decoration: underline; /* Tilføj understregning ved hover */
}

/* Hvis din "Beskrivelse" tekst er inden i et specifikt element (f.eks. en div med en klasse),
   kan du målrette den mere specifikt:
   .description-text {
       color: #333;
       font-weight: normal;
   }
*/





.forside-ydelser {
    margin-top: 3em;
    text-align: center;
}
.forside-kort-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 1em;
}
.forside-kort {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5em;
    width: 280px;
    transition: transform 0.2s ease;
}
.forside-kort:hover {
    transform: translateY(-5px);
}
.forside-kort i {
    font-size: 2em;
    color: #007BFF;
    margin-bottom: 0.5em;
}
.forside-kort a {
    display: inline-block;
    margin-top: 1em;
    color: #007BFF;
    font-weight: bold;
    text-decoration: none;
}
.forside-kort a:hover {
    text-decoration: underline;
}

.moms {
	text-align: center;
	padding-top: 10px;
}

.farsdag1 {
	padding-left: 5%;
}

.farsdag2 {
	padding-left: 5px;
}

.about-ms{
  margin: 28px 0 0;
}

.about-card{
  background: #fff;
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
  text-align: center;
}

.about-card h3{
  margin: 0 0 12px;
  font-size: 20px;
}

.about-card p{
  margin: 0;
  line-height: 1.7;
  color: #333;
  font-size: 15px;
}
.about-inline{
  margin-top: 12px;
  opacity: 0.9;
  font-size: 0.98em;
}

/* ==========================================================================
   Price tables (gør .price-table ens overalt)
   ========================================================================== */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
    table-layout: fixed; /* pænere kolonner */
}

.price-table th,
.price-table td {
    border: 1px solid #dee2e6;
    padding: 0.75em 1em; /* mere luft => bedre læsbarhed */
    text-align: left;
    color: #343a40;
    vertical-align: top;
}

.price-table th {
    background-color: #004085;
    color: #fff;
}

/* Kassevogne: gør Højde-kolonnen bredere så tekst og priser ikke klistrer */
.price-table.kassevogn-table th:first-child,
.price-table.kassevogn-table td:first-child {
    width: 45%;
}

.price-table th:first-child,
.price-table td:first-child {
    width: 34%;
}