/* Vi henter professionelle skrifttyper direkte fra Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Space+Grotesk:wght@400;500&display=swap');

/* Nulstilling af browserens standard-margener, så alt står skarpt */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #0f172a; /* En super fed, meget mørkeblå/antracit baggrund */
    color: #f8fafc; /* En helt lys, behagelig grå/hvid tekst */
    line-height: 1.6;
}

/* Alle overskrifter får den fede Montserrat-skrifttype */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
/* --- MENU / NAVIGATION --- */
header {
    background-color: rgba(15, 23, 42, 0.8); /* Gør menuen en lille smule gennemsigtig */
    backdrop-filter: blur(12px); /* Giver en mega fed, sløret "glassmorphism" effekt bag menuen */
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* En ultrafin, diskret streg under menuen */
}

nav {
    display: flex;
    justify-content: space-between; /* Skubber logo til venstre og links til højre */
    align-items: center; /* Centrerer alt lodret */
    max-width: 1200px; /* Sørger for at menuen ikke strækker sig helt ud på kæmpe skærme */
    margin: 0 auto; /* Centrerer selve indholdet på skærmen */
    padding: 20px 40px; /* Giver luft i top, bund og sider */
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, #38bdf8, #818cf8); /* Flot glidende farveovergang i logoet */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none; /* Fjerner de grimme prikker fra listen */
    gap: 32px; /* Giver perfekt luft mellem hvert menupunkt */
    align-items: center;
}

.nav-links a {
    color: #94a3b8; /* En dæmpet, moderne grå farve */
    text-decoration: none; /* Fjerner den grimme understregning */
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease; /* Gør at farveskiftet sker glidende, når man holder musen over */
}

/* Når man holder musen over et link, lyser det op i hvid */
.nav-links a:hover {
    color: #f8fafc;
}

/* Kontakt-knappen helt ude til højre skal styles som en rigtig knap */
.nav-links .btn-nav {
    background-color: #38bdf8; /* Flot lyseblå tech-farve */
    color: #0f172a; /* Mørk tekst indeni knappen, så den kan læses */
    padding: 8px 20px;
    border-radius: 50px; /* Gør knappen helt rund i enderne */
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Når man holder musen over kontakt-knappen */
.nav-links .btn-nav:hover {
    background-color: #0ea5e9; /* Bliver en smule mørkere blå */
    color: #fff;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.4); /* Giver et flot, moderne lysskær/glow */
}
/* --- HERO SEKTION --- */
.hero {
    min-height: 85vh; /* Sørger for at sektionen fylder det meste af skærmens højde */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: radial-gradient(circle at 50% -20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%); /* Giver et meget svagt, lækkert blåt lys oppe fra menuen */
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem; /* Stor, fed overskrift */
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

/* Gør ét enkelt ord i overskriften farverigt */
.gradient-text {
    background: linear-gradient(45deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: #94a3b8; /* Dæmpet tekstfarve */
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Den primære knap ("Start dit projekt") */
.btn-primary {
    background: linear-gradient(45deg, #38bdf8, #818cf8);
    color: #0f172a;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px); /* Løfter knappen en lille smule, når man holder musen over */
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3); /* Giver en dyb skygge/glød */
}

/* Den sekundære knap ("Se ydelser") */
.btn-secondary {
    background-color: transparent;
    color: #f8fafc;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #f8fafc;
    background-color: rgba(255, 255, 255, 0.05);
}
/* --- YDELSER & PAKKER --- */
.services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: linear-gradient(45deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* Gør at kortene automatisk fordeler sig på linjer og tilpasser sig mobilskærme */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: #1e293b; /* En smule lysere end baggrunden, så de popper frem */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px); /* Løfter kortet blødt når man fører musen over */
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #f8fafc;
}

.card-desc {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 24px;
    min-height: 60px; /* Sørger for at teksterne fylder det samme, så listen starter ens */
}

.service-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto; /* Skubber punkterne ned i bunden, så de flugter */
}

.service-card ul li {
    font-size: 0.95rem;
    color: #cbd5e1;
    position: relative;
    padding-left: 24px;
}

/* Smukt lille fluetegn foran hvert punkt */
.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38bdf8;
    font-weight: bold;
}

/* Styling af det fremhævede "All-In" kort */
.highlight-card {
    border: 2px solid #818cf8;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

/* "Mest Populær" mærkatet på All-In pakken */
.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(45deg, #38bdf8, #818cf8);
    color: #0f172a;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

/* "Design din egen pakke" sektionen under kortene */
.custom-package-notice {
    text-align: center;
    margin-top: 50px;
    background-color: rgba(30, 41, 59, 0.5);
    padding: 20px;
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.custom-package-notice p {
    font-size: 1.05rem;
    color: #cbd5e1;
}

.custom-package-notice a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1.5px dashed #38bdf8;
    transition: all 0.3s ease;
}

.custom-package-notice a:hover {
    color: #818cf8;
    border-color: #818cf8;
}
/* --- KONTAKTSEKTION --- */
.contact-section {
    max-width: 800px; /* Formularen behøver ikke være bredere for at se godt ud */
    margin: 0 auto;
    padding: 100px 20px 150px 20px; /* Giver god luft i bunden, inden siden slutter */
}

.contact-container {
    background-color: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Sørger for at label står flot over inputfelterne */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

/* Sætter E-mail og Telefon ved siden af hinanden på computer */
.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Hvis skærmen er lille (f.eks. en mobil), stabler vi dem over hinanden */
@media (max-width: 600px) {
    .form-group-row {
        grid-template-columns: 1fr;
    }
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #cbd5e1;
}

/* Styling af selve skrivefelterne og dropdown'en */
.contact-form input,
.contact-form select,
.contact-form textarea {
    background-color: #0f172a; /* Meget mørk baggrund i felterne */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: #f8fafc;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

/* placeholder-teksten (den dæmpede tekst inden man skriver) */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #475569;
}

/* Når kunden klikker i et felt (focus) */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.15);
}

/* Knappen i bunden af formularen */
.btn-submit {
    background: linear-gradient(45deg, #38bdf8, #818cf8);
    color: #0f172a;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
}
/* --- DYNAMISK KONTAKTFORMULAR (SKJUL BOKS) --- */
#custom-message-group {
    display: none; /* Skjuler boksen som standard */
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Denne klasse bruger vi til at vise boksen med en flot glidende overgang */
#custom-message-group.show-box {
    display: flex;
    opacity: 1;
}
/* ==========================================
   PRISSIDE (PRISER.HTML) STYLING
   ========================================== */

.pricing-page-section {
    padding: 120px 20px 80px 20px; /* Godt med plads i toppen så menuen ikke dækker for teksten */
    display: flex;
    justify-content: center;
    background-color: #0f172a; /* Matcher din mørke baggrund */
    min-height: 100vh;
}

.pricing-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.pricing-badge {
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.pricing-container h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
}

.pricing-intro {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.pricing-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #334155, transparent);
    margin: 40px 0;
}

/* De to infobokse */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr; /* Folder ud til 1 kolonne på mobilen */
    }
}

.pricing-card-info {
    background: #1e293b;
    border: 1px solid #334155;
    padding: 30px;
    border-radius: 12px;
}

.pricing-card-info h3 {
    color: #38bdf8;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.pricing-card-info p {
    color: #cbd5e1;
    line-height: 1.6;
}

.pricing-card-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card-info ul li {
    color: #cbd5e1;
    margin-bottom: 12px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

/* Små flotte prikker foran punkterne */
.pricing-card-info ul li::before {
    content: "•";
    color: #38bdf8;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Den nederste Call to Action boks */
.pricing-conclusion-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid #38bdf8; /* Lyser op med din primære blå farve */
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.05);
}

.pricing-conclusion-box h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.pricing-conclusion-box p {
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* CTA Knappen */
.btn-pricing-cta {
    display: inline-block;
    background: #38bdf8;
    color: #0f172a;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pricing-cta:hover {
    background: #0ea5e9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.3);
}


/* ==========================================================================
   PAKKER.HTML STYLING (HEDELUND MEDIER)
   ========================================================================== */
.packages-page-section {
    padding: 120px 20px 80px 20px;
    background-color: #0f172a; /* Mørk baggrund, der matcher dit tema */
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.packages-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.packages-badge {
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.packages-container h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.packages-intro {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.packages-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #334155, transparent);
    margin-bottom: 50px;
}

.packages-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
    margin-bottom: 60px;
}

.package-detail-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.package-detail-card:hover {
    transform: translateY(-2px);
    border-color: #38bdf8;
}

.package-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.pack-icon {
    font-size: 2rem;
}

.package-header h2 {
    font-size: 1.6rem;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
}

.pack-desc {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.pack-includes {
    background: rgba(15, 23, 42, 0.4);
    border-radius: 8px;
    padding: 20px;
    border-left: 3px solid #38bdf8;
}

.pack-includes h3 {
    font-size: 1rem;
    color: #f1f5f9;
    margin-bottom: 12px;
    font-weight: 600;
}

.pack-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pack-includes ul li {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.pack-includes ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38bdf8;
    font-weight: bold;
}

/* CTA boks i bunden */
.packages-cta-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px dashed #334155;
    border-radius: 16px;
    padding: 40px 30px;
    margin-top: 40px;
}

.packages-cta-box h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.packages-cta-box p {
    color: #94a3b8;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.5;
}

.btn-packages-cta {
    display: inline-block;
    background: #38bdf8;
    color: #0f172a;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(56, 189, 248, 0.3);
}

.btn-packages-cta:hover {
    background: #0ea5e9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
}

/* Gør siden responsiv på mobil */
@media (max-width: 768px) {
    .packages-page-section {
        padding: 100px 15px 60px 15px;
    }
    
    .packages-container h1 {
        font-size: 2rem;
    }
    
    .package-detail-card {
        padding: 20px;
    }
}


/* ==========================================================================
   OM BUREAUET / ABOUT PAGE STYLES
   ========================================================================== */
.about-page-section {
    padding: 120px 20px 80px 20px;
    background-color: #0f172a; /* Mørk baggrund */
    color: #f8fafc;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.about-container {
    max-width: 1000px;
    width: 100%;
}

.about-badge {
    background-color: rgba(56, 189, 248, 0.1);
    color: #38bdf8; /* Flot neon/himmelblå */
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.about-container h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #94a3b8;
    max-width: 800px;
}

.about-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, #38bdf8, transparent);
    margin: 40px 0;
}

/* To-kolonne grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.about-text-block h2 {
    font-size: 1.6rem;
    color: #38bdf8;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-text-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 15px;
}

.about-bullets {
    list-style: none;
    padding: 0;
}

.about-bullets li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.about-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38bdf8;
    font-weight: bold;
}

/* Værdibokse */
.about-value-box {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
}

.about-value-box h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: #f8fafc;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card h4 {
    color: #38bdf8;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.value-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA boks i bunden */
.about-cta-box {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 2px solid #38bdf8;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.about-cta-box h3 {
    font-size: 2rem;
    color: #f8fafc;
    margin-bottom: 15px;
}

.about-cta-box p {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.btn-about-cta {
    display: inline-block;
    background-color: #38bdf8;
    color: #0f172a;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about-cta:hover {
    background-color: #0ea5e9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2);
}

/* Responsivt design til mobil og tablet */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-container h1 {
        font-size: 2.2rem;
    }
    
    .about-page-section {
        padding-top: 100px;
    }
}
/* Footer Design */
.site-footer {
    background-color: #111;
    color: #fff;
    padding: 50px 20px 20px 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 15px;
    color: #fff;
}

.footer-col p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* Privatlivspolitik Styling */
.privacy-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background: #1e293b;
    border-radius: 12px;
    border: 1px solid #334155;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.privacy-container h1 {
    font-size: 2.2rem;
    color: #f8fafc;
    margin-bottom: 20px;
    border-bottom: 2px solid #38bdf8;
    padding-bottom: 10px;
}

.privacy-container h2 {
    font-size: 1.4rem;
    color: #38bdf8;
    margin-top: 30px;
    margin-bottom: 10px;
}

.privacy-container p {
    color: #cbd5e1;
    margin-bottom: 15px;
}

.privacy-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: #cbd5e1;
}

.privacy-container li {
    margin-bottom: 8px;
}

.privacy-container a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
}

.privacy-container a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    background: #38bdf8;
    color: #0f172a !important;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.back-link:hover {
    background: #0ea5e9;
    text-decoration: none !important;
}

/* --- MOBIL MENU & BURGER STYLING --- */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Kun på skærme mindre end 768px (telefoner) */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block; /* Viser burger-ikonet på mobil */
    }

    .nav-links {
        display: none; /* Skjuler standardmenuen som udgangspunkt */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #0f172a;
        padding: 25px 0;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.4);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Når menuen er åben via JavaScript */
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
}