/* ==========================================
   GLOBAL FONT RESET — UNIFY ALL TEXT
========================================== */

:root {
    --green: #0b8f6c;
    --green-dark: #06654b;
    --green-light: #e3f7ef;
    --gray-900: #111;
    --gray-800: #222;
    --gray-700: #444;
    --gray-600: #555;
    --gray-500: #777;
    --gray-300: #ddd;
    --gray-200: #f2f2f2;
    --white: #fff;

    --radius: 12px;
    --max-width: 1200px;
    --section-padding: 80px;

    /* ONE unified font declaration */
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
            Roboto, Helvetica, Arial, sans-serif;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GLOBAL FONT — applies everywhere */
html, body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.55;
    color: var(--gray-900);
}


body {
    font-family: var(--font);
    background: #fff;
    color: var(--gray-900);
    line-height: 1.6;
    font-size: 16px;
}

img {
    max-width: 100%;
    border-radius: var(--radius);
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* =======================
   CONTAINER
======================= */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
}

/* =======================
   TOP BAR
======================= */

/* =======================
   TOP BAR — UPDATED
======================= */

.topbar {
    background: #007a55;
    color: #fff;
    font-size: 13px;
    padding: 6px 0;
    top: 0;
    z-index: 30;
}

.topbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    color: #fff;
    font-size: 13px;
}

.btn-topbar {
    border: 0px solid #fff;
    padding: 5px 12px;      /* mindre */
    border-radius: 6px;     /* mindre */
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    background: transparent;
    transition: 0.2s;
}

.btn-topbar:hover {
    background: rgba(255,255,255,0.10);
}

/* TOPBAR ICONS */
.topbar-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 8px;
    filter: brightness(0) saturate(100%) invert(100%);
    image-rendering: auto;   /* vigtig */
    border-radius: 0;        /* sikrer ingen corner clipping */
}


.topbar-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-topbar {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* =======================
   HEADER
======================= */

.header {
background: rgba(255, 255, 255, 0.92);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 20;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 600;
    font-size: 22px;              /* lidt større som originale */
}

/* Navigation spacing */
.nav a {
    margin-left: 22px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 16px;
}

.nav a:hover {
    color: var(--green);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px; /* mellem menu og knap */
}

/* =======================
   BUTTONS
======================= */

.header .btn-primary {
    background: #009966;       /* samme lysere grøn som topbar */
    padding: 8px 18px;         /* mindre */
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.08);
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #3A7A5F;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
}

/* Knap-ikon */
.header-btn-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle; /* Dette er nøglen */
    margin-top: -4px;       /* finjustering */
}


.header .btn-primary:hover {
    background: #346E55;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    padding: 12px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    display: inline-block;
    transition: 0.2s;
}

.btn-primary:hover {
    background: var(--green-dark);
}

.btn-secondary {
    border: 2px solid var(--green);
    color: var(--green);
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 500;
    display: inline-block;
    transition: 0.2s;
}

.btn-secondary:hover {
    background: #f6fffb;
}

.btn-small {
    background: var(--green);
    color: var(--white);
    padding: 10px 18px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
}

/* Branding block med logo + navn + tagline */
.branding {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.branding-text .logo {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
}

.branding-text .logo span {
    color: var(--green); /* Impact i grøn */
}

.tagline {
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 2px;
    line-height: 1.2;
}


/* =======================
   HERO SECTION
======================= */

.hero {
    background: linear-gradient(to bottom, #e9faf4, #ffffff);
    padding-top: 60px;
    padding-bottom: 120px;
}

.pill {
    background-color: #d0fae5;
    color: var(--green-dark);
    padding: 2px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 6px;
    align-items: center;
    width: 100%;
    margin: 0;
}

.hero-left {
    max-width: 560px;
    padding-top: 0px;
}

.hero h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 .green {
    color: var(--green);
}

.hero-text {
    max-width: 560px;
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 22px;
}

.hero-buttons {
    margin-top: 28px;
    margin-bottom: 14px;
    display: flex;
    gap: 16px;
}

.hero-tags {
    margin-top: 12px;
}

.hero-tags span {
    font-size: 14px;
    color: var(--gray-700);
    margin-right: 16px;
}

/* RIGHT COLUMN */
.hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* =======================
   ESG + CFO BOX
======================= */

.esg-cfo-box {
    border: 2px solid var(--green);
    border-radius: 24px;
    padding: 32px;
    background: linear-gradient(to bottom right, #f3faf7, #ffffff);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    max-width: 700px;
    margin-top: 0px;
}

.esg-cfo-box h3 {
    color: var(--green-dark);
    margin-bottom: 14px;
    font-size: 18px;
}

.esg-cfo-box ul {
    list-style: none;
}

.esg-cfo-box li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    font-size: 15px;
}

.esg-cfo-box li::before {
    content: "•";
    color: var(--green);
    position: absolute;
    left: 0;
    top: 0;
}

.divider {
    width: 1px;
    background: #d1e9df;
}

/* =======================
   SERVICES — PIXEL PERFECT
======================= */

.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* GRID */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

/* CARD SETTINGS */
.service-card {
    border: 1px solid #e6e6e6;
    border-radius: 28px;
    background: #ffffff;
    padding: 40px 40px 32px 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* CONTENT WRAPPER */
.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* HEADER */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
}

/* POPULAR TAG */
.tag-popular {
    background: #d9f3df;
    color: #0b8f6c;
    padding: 5px 16px;
    font-size: 13px;
    border-radius: 14px;
    font-weight: 500;
}

/* SUBTITLE */
.card-subtitle {
    margin-top: 8px;
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 400;
    color: #6a6a6a;
    line-height: 1.35;
}

/* LIST */
.card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.card-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.35;
}

/* CHECKMARK */
.check-icon {
    color: #0b8f6c;
    font-size: 17px;
    margin-right: 10px;
    position: relative;
    top: -1px;
}

/* BOTTOM LINK */
.card-link {
    margin-top: 28px;
    font-size: 19px;
    font-weight: 600;
    color: #0b8f6c;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link:hover {
    opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   ESG SECTION
============================ */

.esg-section {
    padding: 80px 0;
}

.esg-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start;
    padding: 0 30px;
}

/* LEFT SIDE BOXES */
.esg-boxes {
    border: 3px solid #246b47;
    border-radius: 26px;
    padding: 20px 35px 25px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.esg-title {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 26px;
    color: #0c0c0c;
}

.esg-box {
    display: flex;
    gap: 18px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    padding: 5px 20px;
    border-radius: 14px;
    margin-bottom: 10px;
    transition: 0.2s ease;
}

.esg-box:hover {
    border-color: #246b47;
    transform: translateY(-2px);
}

.esg-box h3 {
    font-size: 15px;
    margin-bottom: 2px;
    color: #246b47;
}

.esg-box p {
    margin: 0;
    font-size: 15px;
    color: #444;
}

.esg-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(36%) sepia(30%) saturate(700%) hue-rotate(110deg) brightness(90%);
}

/* BUTTON */
.esg-button {
    display: inline-flex;
    align-items: center;
    background: #246b47;
    color: #fff;
    padding: 16px 26px;
    border-radius: 12px;
    margin-top: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 17px;
    transition: 0.2s;
}

.esg-button span {
    margin-left: 8px;
}

.esg-button:hover {
    background: #1e5a3d;
}

/* RIGHT SIDE TEXT */
.esg-text h2 {
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 25px;
}

.esg-text p {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.esg-list {
    list-style: none;
    padding: 0;
}

.esg-list li {
    font-size: 15px;
    margin-bottom: 12px;
    color: #246b47;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .esg-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


/* ============================
   PART-TIME ESG — SINGLE LAYOUT
============================ */

.parttime-single {
    max-width: 900px;
    margin: 0 auto;
    padding: 0px 20px;
}

.parttime-single-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 22px;
}

.parttime-single-intro {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* CARDS */
.parttime-single-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 45px;
}

.pt-card {
    display: flex;
    gap: 18px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    padding: 20px;
    border-radius: 14px;
    transition: 0.2s;
}

.pt-card:hover {
    border-color: #246b47;
    transform: translateY(-2px);
}

.pt-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(35%) sepia(20%)
            saturate(800%) hue-rotate(100deg) brightness(90%);
}

/* DETAILS */
.parttime-single-details p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

.pt-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.pt-list li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #246b47;
}

/* BUTTON */
.pt-button {
    display: inline-block;
    padding: 14px 26px;
    background: #246b47;
    color: #fff;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.pt-button:hover {
    background: #1e5a3d;
}

/* OPTIONAL: spacing for small screens */
@media (max-width: 600px) {
    .parttime-single-title {
        font-size: 28px;
    }
}

/* Layout container */
.cfo-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Right-side framed box */
.cfo-cards-frame {
    border: 3px solid #1b5e4a;        /* grøn ramme */
    padding: 5px 20px;
    border-radius: 14px;
    margin-bottom: 10px;
}

/* Cards inside box */
.cfo-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    background: #fff;
    border-radius: 14px;
    margin-bottom: 18px;
    border: 1px solid #eee;
        font-size: 15px;
}

.cfo-card h3 {
    color: #246b47;
}

.cfo-card:last-child {
    margin-bottom: 0;
}

.service-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Text column */
.cfo-text h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    
}

.cfo-text ul {
    margin-top: 20px;
    list-style: none;
    padding: 0;
    
}

.cfo-text li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* Pricing Section */
.pricing-section {
    max-width: 1200px;
    margin: 80px auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    padding: 0 20px;
}

.pricing-left h2 {
    font-size: 46px;
    margin-bottom: 25px;
    
}

.pricing-left p {
    font-size: 15px;
    color: #444;
    margin-bottom: 30px;
}

.pricing-bullets {
    list-style: none;
    padding: 0;
}

.pricing-bullets li {
    font-size: 15px;
    margin-bottom: 12px;
    color: #227a5a;
}

/* Right grid with cards */
.pricing-right h3 {
    font-size: 26px;
    margin-bottom: 24px;
    
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 25px;
}

.pricing-card {
    background: #fff;
    border-radius: 14px;
    padding: 10px 5px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid #e5e5e5;
}

.pricing-card h4 {
    font-size: 15px;
    margin: 0 0 0px;
    color: #246b47;
}

.pricing-card p {
    font-size: 15px;
    margin: 0;
    color: #555;
}

/* Icons */
.pricing-icon {
    width: 32px;
    height: 32px;
}

/* CTA button */
.cta-button {
    display: inline-block;
    margin-top: 35px;
    padding: 16px 28px;
    background: #2d7a59;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.cta-button:hover {
    background: #226448;
}

/* Responsive */
@media(max-width: 900px) {
    .pricing-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}


/* =======================
   ABOUT
======================= */

.about-section {
    padding: 80px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;

    max-width: 1250px;   /* samme centerbredde som Services */
    margin: 0 auto;      /* centrer hele sektionen */
    padding: 0 20px;     /* lidt luft på siderne */
}


.about-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text {
    font-size: 15px;
    color: #555;
    line-height: 1.55;
    max-width: 650px;
    margin-bottom: 40px;
}

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

/* CARD */
.about-card {
    background: #f2faf5; /* svagt grønlig baggrund */
    border: 1px solid #e7f3eb;
    border-radius: 20px;
    padding: 10px 15px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #0b8f6c;
    margin-bottom: 4px;
}

.about-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.45;
    margin: 0;
}

/* ICONS */
.about-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* RIGHT IMAGE CARD */
.about-right {
    display: flex;
    justify-content: flex-start;
}

.about-image-card {
    background: #fff;
    border-radius: 22px;
    padding: 32px 20px 40px 20px;
    border: 1px solid #e6e6e6;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* CIRCLE IMAGE */
.about-image-frame {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 6px solid #d9f3df;
    margin: 0 auto 20px auto;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-name {
    font-size: 22px;
    font-weight: 600;
    margin-top: 10px;
}

.about-role {
    font-size: 15px;
    color: #777;
    margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-right {
        justify-content: center;
    }
}


/* ===========================
   CONTACT SECTION LAYOUT
=========================== */

.contact-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    padding: 80px 50px;
    background: linear-gradient(#fff, #f3fff8);
}

/* LEFT COLUMN */

.contact-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-left p {
    font-size: 15px;
    color: #333;
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-benefits {
    list-style: none;
    padding: 0;
}

.contact-benefits li {
    font-size: 15px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
    color: #0b8f6c;
}

/* Check icon */
.contact-benefits li::before {
    content: "✔";
    color: #0b8f6c;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
}

/* RIGHT COLUMN FORM */

.contact-right {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row input,
.form-row select {
    flex: 1;
}

/* FORM FIELDS */

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    width: 100%;
    background: #fafafa;
}

.contact-form textarea {
    height: 160px;
    resize: vertical;
}

/* BUTTON */

.send-btn {
    background: #0b8f6c;
    color: #fff;
    border: none;
    padding: 16px 26px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: 200px;
}

.send-btn:hover {
    background: #06654b;
}

/* RESPONSIVE */

@media(max-width: 900px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        flex-direction: column;
    }

    .send-btn {
        width: 100%;
    }
}

.thankyou {
    text-align: center;
    padding: 60px 20px;
}

.thankyou h2 {
    font-size: 26px;
    color: var(--green);
    margin-bottom: 10px;
}


/* =======================
   FOOTER — COMPACT VERSION
======================= */

.footer {
    background: #1b1f1e;
    color: #f2f2f2;
    padding: 45px 0 20px;     /* LOWER HEIGHT */
    font-size: 14px;          /* SMALLER TEXT */
}

/* Main layout grid */
.footer-wrapper {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 50px;                /* Tighter spacing */
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section headers */
.footer-col h4 {
    font-size: 16px;          /* Smaller */
    font-weight: 700;
    margin-bottom: 12px;
}

/* Footer paragraph + links */
.footer-col a,
.footer-col p {
    color: #dcdcdc;
    display: block;
    margin-bottom: 6px;       /* Tighter line spacing */
    text-decoration: none;
    line-height: 1.45;
    font-size: 14px;
}

.footer-col a:hover {
    color: #0b8f6c;
}

/* BRAND TITLE */
.footer-brand-title {
    font-size: 20px;          /* Smaller */
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-brand-title span {
    color: #0b8f6c;
}

/* =======================
   CONTACT (icons + text)
======================= */

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-icon {
    width: 16px;              /* smaller icon */
    height: 16px;
    filter: brightness(0) invert(1);
    display: inline-block;
}

/* =======================
   NEWSLETTER
======================= */

.footer-news .newsletter-box {
    display: flex;
    gap: 8px;
    max-width: 260px;         /* shorter */
}

.footer-news input {
    width: 100%;
    padding: 8px 12px;        /* smaller field */
    border-radius: 6px;
    border: none;
    background: #2c2f2e;
    color: #e2e2e2;
    font-size: 14px;
}

.footer-news input::placeholder {
    color: #999;
}

.newsletter-btn {
    background: #0b8f6c;
    border: none;
    padding: 8px 14px;        /* smaller */
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #06654b;
}

/* =======================
   FOOTER BOTTOM
======================= */

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 35px;         /* lower */
    padding-top: 12px;
}

.footer-bottom-flex {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8d8d8d;
    font-size: 13px;          /* smaller */
}

.footer-privacy {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
}

.footer-privacy:hover {
    color: #fff;
}

/* =======================
   RESPONSIVE
======================= */

@media(max-width: 900px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;            /* tighter */
    }

    .footer-news .newsletter-box {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter-btn {
        width: 100%;
        text-align: center;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* =============================================
   MOBILE NAVIGATION — No JS Needed
============================================= */

#mobile-toggle {
    display: none;
}

/* BURGER BUTTON */
.mobile-menu-btn {
    width: 32px;
    height: 24px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 200;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    background: #0b8f6c;
    border-radius: 3px;
    transition: 0.3s;
}


/* MOBILE DROPDOWN */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #fff;
    padding: 30px 35px;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    transform: translateY(-150%);
    transition: 0.35s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid #eee;
    z-index: 150;
}

.mobile-nav a {
    font-size: 18px;
    color: #0b8f6c;
    font-weight: 500;
}

.mobile-cta {
    background: #0b8f6c;
    color: #fff !important;
    padding: 12px 18px;
    border-radius: 10px;
    margin-top: 10px;
    text-align: center;
    font-weight: 600;
}

/* When checkbox is checked → open menu */
#mobile-toggle:checked ~ .mobile-nav {
    transform: translateY(0);
}

/* Animate burger to X */
#mobile-toggle:checked + .mobile-menu-btn span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
#mobile-toggle:checked + .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
}
#mobile-toggle:checked + .mobile-menu-btn span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* Mobile-only display rules */
@media (max-width: 780px) {
    .nav {
        display: none; /* hide desktop nav */
    }
    .header-btn {
        display: none; /* hide desktop CTA */
    }
    .mobile-menu-btn {
        display: flex;
    }
}

/* =============================================
   FIX HERO BOX + GENERAL MOBILE LAYOUT
============================================= */

@media(max-width: 780px) {

    /* FIX: Hero grid → 1 kolonne */
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }

    /* FIX: ESG/CFO boks → fuld bredde + ingen overflow */
    .esg-cfo-box {
        max-width: 100% !important;
        width: 100% !important;
        padding: 24px 20px !important;
        grid-template-columns: 1fr !important;   /* fra 3 kolonner → 1 */
        gap: 24px !important;
    }

    .divider {
        display: none !important;
    }

    /* FIX: hero-right centreres */
    .hero-right {
        justify-content: center !important;
    }

    /* FIX: Prevent side-scroll */
    html, body {
        overflow-x: hidden !important;
    }
}

/* =============================================
   MOBILE FIX FOR CFO SECTION
============================================= */
@media(max-width: 780px) {

    /* CFO grid becomes 1-column */
    .cfo-container {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        padding: 40px 20px !important;
    }

    /* Frame box fits mobile width */
    .cfo-cards-frame {
        padding: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Individual CFO cards behave nicely on mobile */
    .cfo-card {
        padding: 18px !important;
        gap: 14px !important;
        align-items: flex-start !important;
        width: 100% !important;
    }

    /* Prevent any overflow from icons or long text */
    .cfo-card img,
    .service-icon {
        max-width: 36px !important;
        height: auto !important;
    }

    /* Global overflow fix */
    html, body {
        overflow-x: hidden !important;
    }
}

/* =============================================
   FIX ABOUT SECTION ON MOBILE
============================================= */
@media (max-width: 780px) {

    /* Grid ændres til 1 kolonne */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Cards får mere luft */
    .about-card {
        padding: 16px 18px !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Ikon skal ikke tvinge boksen bred */
    .about-icon {
        width: 28px !important;
        height: 28px !important;
        flex-shrink: 0 !important;
    }

    /* Teksten sikres */
    .about-card h3,
    .about-card p {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }
}

/* =============================================
   FIX: Footer contact lines on mobile
============================================= */

.footer-col p {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    white-space: nowrap !important; /* sikrer at +45 ikke brydes */
}

.footer-col p img {
    flex-shrink: 0 !important;
}
