/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1vh 0;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 8vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4vw;
    padding: 0 4vw;
    position: relative;
}

.logo {
    max-width: 15vw;
    max-height: 6vh;
    height: auto;
    min-width: 100px;
    background: white;
    padding: 0.5vh 1vw;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
    overflow: hidden;
}

.logo img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: none;
    box-shadow: none;
}

/* Burger Menu Styles */
.burger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.burger-menu:hover {
    background: rgba(255, 255, 255, 0.1);
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Burger Menu Animation */
.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modern-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    gap: 2vh;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    overflow-y: auto;
}

.modern-nav.active {
    right: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(1rem, 4vw, 1.2rem);
    padding: 2vh 4vw;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.nav-link:last-child {
    border-bottom: none;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Fjern alle problematiske animationer og pseudo-elementer */
.nav-link::before,
.nav-link::after {
    display: none !important;
}

/* Sikre at navigationen ikke har nogen overlappende effekter */
.modern-nav .nav-link {
    box-shadow: none !important;
    text-shadow: none !important;
    transform: none !important;
}

/* Main Container */
main {
    min-height: 92vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 8vh; /* Tilføj margin-top for at undgå at indhold starter bagved header */
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 87, 108, 0.1) 0%, transparent 50%);
    background-size: 50px 50px, 30px 30px, 40px 40px;
    padding: 1vh 2vw;
    text-align: center;
    width: 100%;
    min-height: 12vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.hero-content {
    max-width: 80vw;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: #1a3c6e;
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 300;
    margin-bottom: 2.5vh;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(26, 60, 110, 0.1);
    animation: fadeInUp 1s ease-out;
}

.hero-section p {
    color: #555;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    margin-bottom: 4vh;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff8a65);
    color: white;
    padding: 1.2vh 3vw;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ff5722, #ff9800, #ff7043);
}

.cta-button:hover::before {
    left: 100%;
}

/* Content Section */
.content-section {
    padding: 1vh 2vw;
    width: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(245, 87, 108, 0.1) 0%, transparent 50%);
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    min-height: 50vh;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(245, 87, 108, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.content-wrapper {
    width: 100%;
    max-width: 90vw;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Services Preview */
.services-preview {
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
}

.services-preview h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 600;
    color: #1a3c6e;
    margin-bottom: 4vh;
    text-shadow: 0 2px 10px rgba(26, 60, 110, 0.1);
    position: relative;
}

.services-preview h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3vw;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    padding: 3vh 2vw;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    min-height: 300px; /* Tilføj minimum højde */
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 2vh;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    color: #1a3c6e;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    margin-bottom: 1.5vh;
    text-shadow: 0 1px 3px rgba(26, 60, 110, 0.1);
}

.service-card p {
    color: #555;
    line-height: 1.6;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    margin: 0;
}

/* Modern Footer */
.modern-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 1.5vh 2vw;
    text-align: center;
    margin-top: 0;
    width: 100%;
    height: 6vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-footer a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.modern-footer a:hover {
    color: #ff5722;
}

/* Footer content styling for consistent layout */
.footer-content {
    width: 100%;
    max-width: 100%;
}

.footer-main {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    width: 100%;
}

.footer-section {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

.contact-list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    align-items: center !important;
    justify-content: center !important;
}

.contact-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Tablet og mobil */
    html {
        scroll-padding-top: 25vh;
    }
    
    body {
        padding-top: 25vh; /* Øg padding-top yderligere for at sikre at indhold starter helt under header */
    }
    
    header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 1000 !important;
        height: auto;
        min-height: 12vh;
        padding: 1.5vh 2vw;
        width: 100%;
    }
    
    main {
        margin-top: 0; /* Fjern margin-top da body nu har padding-top */
    }
    
    /* Sikre at alle sektioner starter under header */
    .hero-section,
    .content-section,
    .services-preview {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2vh;
        padding: 0;
    }
    
    .logo {
        max-width: 50vw;
        min-width: 120px;
        padding: 1vh 2vw;
        background: white;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
    }
    

    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 2vh 4vw;
        font-size: clamp(1rem, 4vw, 1.2rem);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(10px);
    }
    
    .hero-section {
        padding: 12vh 3vw;
        min-height: 50vh;
    }
    
    .hero-section h1 {
        font-size: clamp(1.2rem, 4.5vw, 1.8rem);
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-section p {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    }
    
    .cta-button {
        padding: 1.5vh 4vw;
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }
    
    .content-section {
        padding: 2vh 3vw;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 3vh;
    }
    
    .service-card {
        padding: 3vh 4vw;
    }
    
    .services-preview h2 {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }
    
    /* Footer mobile styling - samme layout som desktop */
    .modern-footer {
        height: auto;
        min-height: 6vh;
        padding: 1vh 2vw;
    }
    
    .footer-main {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        flex-wrap: wrap !important;
    }
    
    .footer-section {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 15px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .contact-list {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .contact-item {
        display: inline-flex !important;
        align-items: center !important;
        gap: 5px !important;
        white-space: nowrap !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    }
    
    .contact-icon {
        font-size: clamp(12px, 2.5vw, 16px) !important;
    }
    
    .contact-label {
        font-weight: bold !important;
    }
}

@media (max-width: 480px) {
    /* Mobil */
    html {
        scroll-padding-top: 30vh;
    }
    
    body {
        padding-top: 30vh; /* Øg padding-top yderligere for at sikre at indhold starter helt under header */
    }
    
    header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 1000 !important;
        min-height: 15vh;
        padding: 2vh 3vw;
        width: 100%;
    }
    
    main {
        margin-top: 0; /* Fjern margin-top da body nu har padding-top */
    }
    
    /* Sikre at alle sektioner starter under header */
    .hero-section,
    .content-section,
    .services-preview {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2.5vh;
    }
    
    .logo {
        max-width: 60vw;
        min-width: 100px;
        padding: 1.5vh 3vw;
        background: white;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
    }
    

    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 2vh 4vw;
        font-size: clamp(1rem, 4vw, 1.2rem);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(10px);
    }
    
    .hero-section {
        padding: 10vh 4vw;
        min-height: 45vh;
    }
    
    .hero-section h1 {
        font-size: clamp(1rem, 4vw, 1.5rem);
        margin-bottom: 2vh;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-section p {
        font-size: clamp(0.8rem, 4vw, 1rem);
        margin-bottom: 3vh;
    }
    
    .cta-button {
        padding: 1.2vh 5vw;
        font-size: clamp(0.8rem, 4vw, 0.9rem);
    }
    
    .content-section {
        padding: 1.5vh 4vw;
    }
    
    .service-card {
        padding: 2.5vh 5vw;
    }
    
    /* Footer mobile styling for små skærme - samme layout som desktop */
    .modern-footer {
        height: auto;
        min-height: 6vh;
        padding: 1vh 3vw;
    }
    
    .footer-main {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        flex-wrap: wrap !important;
    }
    
    .footer-section {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .contact-list {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .contact-item {
        display: inline-flex !important;
        align-items: center !important;
        gap: 4px !important;
        white-space: nowrap !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: clamp(0.65rem, 3vw, 0.8rem);
    }
    
    .contact-icon {
        font-size: clamp(10px, 3vw, 14px) !important;
    }
    
    .contact-label {
        font-weight: bold !important;
    }
}

@media (max-height: 600px) {
    /* Korte skærme (landscape mobil/tablet) */
    .hero-section {
        padding: 2vh 2vw;
    }
    
    .hero-section h1 {
        margin-bottom: 1vh;
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }
    
    .hero-section p {
        margin-bottom: 2vh;
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }
    
    .cta-button {
        padding: 0.8vh 3vw;
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    }
    
    .content-section {
        padding: 1vh 2vw;
    }
    
    .services-preview h2 {
        margin-bottom: 2vh;
        font-size: clamp(1.1rem, 3vw, 1.5rem);
    }
    
    .service-card {
        padding: 2vh 2vw;
    }
    
    .service-icon {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin-bottom: 1vh;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    /* Tablet landscape - behold vertikal header layout */
    html {
        scroll-padding-top: 35vh;
    }
    
    body {
        padding-top: 35vh; /* Øg padding-top betydeligt for at sikre at indhold starter helt under header */
    }
    
    header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 1000 !important;
        min-height: 12vh;
        padding: 1.5vh 4vw;
        width: 100%;
    }
    
    main {
        margin-top: 0; /* Fjern margin-top da body nu har padding-top */
    }
    
    .hero-section {
        padding: 2vh 2vw;
        min-height: 25vh;
        margin-top: 0 !important; /* Sikre at hero ikke har margin-top */
        padding-top: 5vh !important; /* Tilføj ekstra padding-top til hero */
        position: relative;
        top: 0;
    }
    
    /* Sikre at alle sektioner starter under header */
    .hero-section,
    .content-section,
    .services-preview {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .header-container {
        flex-direction: row;
        gap: 2vh;
        align-items: center;
        justify-content: space-between;
        padding-left: 4vw;
        padding-right: 4vw;
    }
    
    .logo {
        max-width: 25vw;
        min-width: 100px;
        max-height: 8vh;
        padding: 1vh 2vw;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border-radius: 12px;
        margin: 0;
    }
    
    .logo img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
    }
    
    .modern-nav {
        gap: 1.5vw;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .nav-link {
        font-size: clamp(0.7rem, 2vw, 0.9rem);
        padding: 0.8vh 1.5vw;
        min-height: 36px;
        white-space: nowrap;
    }
    
    .hero-section {
        padding: 2vh 2vw;
        min-height: 25vh;
    }
    
    .hero-section h1 {
        font-size: clamp(1rem, 3vw, 1.6rem);
        margin-bottom: 1.5vh;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-section p {
        font-size: clamp(0.8rem, 2.2vw, 1rem);
        margin-bottom: 2vh;
        line-height: 1.4;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2vw;
    }
}

@media (max-width: 480px) and (orientation: landscape) {
    /* Mobil landscape - behold vertikal header layout */
    html {
        scroll-padding-top: 35vh;
    }
    
    body {
        padding-top: 35vh; /* Øg padding-top betydeligt for at sikre at indhold starter helt under header */
    }
    
    header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 1000 !important;
        min-height: 10vh;
        padding: 1vh 4vw;
        width: 100%;
    }
    
    main {
        margin-top: 0; /* Fjern margin-top da body nu har padding-top */
    }
    
    .hero-section {
        padding: 1.5vh 2vw;
        min-height: 20vh;
        margin-top: 0 !important; /* Sikre at hero ikke har margin-top */
        padding-top: 5vh !important; /* Tilføj ekstra padding-top til hero */
        position: relative;
        top: 0;
    }
    
    /* Sikre at alle sektioner starter under header */
    .hero-section,
    .content-section,
    .services-preview {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .header-container {
        flex-direction: row;
        gap: 1.5vh;
        align-items: center;
        justify-content: space-between;
        padding-left: 4vw;
        padding-right: 4vw;
    }
    
    .logo {
        max-width: 20vw;
        min-width: 80px;
        max-height: 6vh;
        padding: 0.8vh 1.5vw;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border-radius: 12px;
        margin: 0;
    }
    
    .logo img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
    }
    
    .modern-nav {
        gap: 1vw;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .nav-link {
        font-size: clamp(0.6rem, 2.5vw, 0.75rem);
        padding: 0.6vh 1.2vw;
        min-height: 32px;
        white-space: nowrap;
    }
    
    .hero-section {
        padding: 1.5vh 2vw;
        min-height: 20vh;
    }
    
    .hero-section h1 {
        font-size: clamp(0.9rem, 2.5vw, 1.3rem);
        margin-bottom: 1vh;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-section p {
        font-size: clamp(0.7rem, 2vw, 0.85rem);
        margin-bottom: 1.5vh;
        line-height: 1.3;
    }
    
    .cta-button {
        padding: 0.8vh 3vw;
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        min-height: 32px;
    }
    
    /* Ekstra spacing for at sikre indhold starter under header */
    .hero-section {
        margin-top: 10vh !important;
    }
    
    .content-section {
        margin-top: 5vh !important;
    }
    
    .content-section {
        padding: 2vh 2vw;
        overflow: hidden;
    }
    
    .content-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2vw;
        margin-top: 2vh;
    }
    
    .service-card {
        padding: 2vh 2vw;
        min-height: 20vh;
    }
    
    .service-icon {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 1vh;
    }
    
    .service-card h3 {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 1vh;
    }
    
    .service-card p {
        font-size: clamp(0.7rem, 2.5vw, 0.8rem);
        line-height: 1.4;
    }
    
    .services-preview h2 {
        font-size: clamp(1.3rem, 4vw, 1.6rem);
        margin-bottom: 2vh;
    }
    
    /* Footer landscape mobile styling - samme layout som desktop */
    .modern-footer {
        height: auto;
        min-height: 5vh;
        padding: 0.8vh 2vw;
    }
    
    .footer-main {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        flex-wrap: wrap !important;
    }
    
    .footer-section {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .contact-list {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .contact-item {
        display: inline-flex !important;
        align-items: center !important;
        gap: 3px !important;
        white-space: nowrap !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: clamp(0.6rem, 2.5vw, 0.75rem);
    }
    
    .contact-icon {
        font-size: clamp(8px, 2.5vw, 12px) !important;
    }
    
    .contact-label {
        font-weight: bold !important;
    }
}

/* Touch-friendly navigation for mobile */
@media (max-width: 768px) {
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .cta-button {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Loading Indicator */
.loading {
    text-align: center;
    padding: 2vh 2vw;
    color: #666;
    font-style: italic;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2vh 2vw;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 1vh;
    width: 100%;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5vh;
    font-weight: 500;
    color: #1a3c6e;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8vh 1vw;
    border: 2px solid #e3eefd;
    border-radius: 5px;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    font-family: inherit;
    transition: border-color 0.3s ease;
    margin-bottom: 1vh;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a3c6e;
    box-shadow: 0 0 0 2px rgba(26, 60, 110, 0.1);
}

.contact-form button {
    background: linear-gradient(135deg, #1a3c6e, #3a5fa0);
    color: white;
    border: none;
    padding: 0.8vh 2vw;
    border-radius: 5px;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(26, 60, 110, 0.3);
} 