@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Merriweather:wght@300;400;700&display=swap');

:root {
    --color-primary: #1a7431;
    --color-secondary: #2a9d4a;
    --color-accent: #4caf50;
    --color-background: #e8f5e9;
    --color-text: #1b5e20;
    --color-light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
    line-height: 1.8;
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Sektioner fuld-skærm-udfyldelse */

.services,
.practical {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
}

.service-grid,
.faq-list {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* For at sikre, at indholdet ikke bliver for bredt på store skærme */
.services .container,
.practical .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Text Columns for longer sections */
.text-columns {
    column-count: 2;
    column-gap: 2rem;
    text-align: justify;
}

/* Baggrundseffekt til citat */
.pull-quote {
    position: relative;
    background-color: rgba(136, 176, 106, 0.1);
    border-radius: 5px;
    padding: 1.5rem;
}

.pull-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 10px;
    color: rgba(136, 176, 106, 0.2);
}

/* Pull Quotes */
.pull-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--color-secondary);
    border-left: 4px solid var(--color-accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    max-width: 90%;
}

/* Header and Navigation */
header {
    position: fixed;
    width: 100%;
    background-color: rgba(230, 240, 226, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(230, 240, 226, 0.98);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 400;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--color-secondary);
}

/* Nye navigationsstyles */
.nav-menu {
    display: flex;
    align-items: center;
}

.dropdown {
    position: relative;
}

.dropbtn {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropbtn i {
    margin-left: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-light);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: var(--color-text);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url('image1.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--color-light);
    text-align: center;
    opacity: 0; /* Start with 0 opacity */
    transition: opacity 0.5s ease-in; /* Add fade-in transition */
    background-color: #1a7431; /* Fallback color that matches the image */
}

.hero.loaded {
    opacity: 1; /* Full opacity when loaded */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Lighter overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-light);
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: var(--color-light);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.hero-scroll-indicator span {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.arrow-down {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--color-light);
    border-bottom: 2px solid var(--color-light);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* General Section Styles */
section {
    padding: 8rem 0;
}

section:nth-child(even) {
    background-color: var(--color-light);
}

.flex-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.image-container {
    flex: 1;
    max-width: 400px;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.text-container {
    flex: 1;
}

/* Button Styles */
.cta-button {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-light);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
}

/* Service Section */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-icon {
    width: 160px;
    height: 160px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Default position */
}

/* Specific adjustments for image10 and image11 */
.service-icon img[src*="image10.jpeg"],
.service-icon img[src*="image11.jpeg"] {
    object-position: center right; /* Show more of the right side */
}

.service-item h3 {
    margin: 1rem 0;
    font-size: 1.4rem;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* When to Seek Help Section */
.when-to-seek-help {
    padding: 8rem 0;
}

.when-to-seek-help .flex-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.when-to-seek-help .text-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.when-to-seek-help .text-content {
    margin-bottom: 2rem;
}

.when-to-seek-help ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.when-to-seek-help li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    opacity: 1;
}

.when-to-seek-help li::before {
    content: "✓";
    color: var(--color-accent);
    position: absolute;
    left: 0;
    top: 0;
}

.when-to-seek-help .image-gallery.desktop-only {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.when-to-seek-help .image-gallery.desktop-only img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 300px;
    margin: 0 auto;
}

.when-to-seek-help .image-gallery img:nth-child(odd) {
    transform: rotate(-3deg);
}

.when-to-seek-help .image-gallery img:nth-child(even) {
    transform: rotate(3deg);
}

.approach {
    padding: 10rem 0;
}

.approach .flex-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.approach .text-container {
    width: 100%;
    max-width: 800px; 
    margin: 0 auto;
}

.approach .text-content {
    margin-bottom: 2rem;
}

/* For desktop view */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.approach .image-gallery.desktop-only {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.approach .image-gallery.desktop-only img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
}

.approach .image-gallery img:nth-child(odd) {
    transform: rotate(-3deg);
}

.approach .image-gallery img:nth-child(even) {
    transform: rotate(3deg);
}

/* Foldable List Styles */
.foldable-list {
    margin-bottom: 1rem;
}

.foldable-trigger {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-accent);
}

.fold-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.foldable-trigger.active .fold-icon {
    transform: rotate(45deg);
}

.foldable-content {
    display: none;
    padding: 1rem 0;
}

.foldable-content.active {
    display: block;
}

.education-list-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.education-list {
    flex: 1;
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.education-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.education-list li::before {
    content: "•";
    color: var(--color-accent);
    position: absolute;
    left: 0;
    top: 0;
}

.psykoterapeut-logo-container {
    display: flex;
    justify-content: center; /* Center by default (for mobile) */
    margin-top: 2rem;
}

.psykoterapeut-logo {
    width: 100px;
    height: auto;
}

@media (min-width: 769px) {
    .approach .foldable-list:last-of-type {
        margin-bottom: 3rem; /* Extra space below the last foldable list */
    }
}

/* Methods section */
.methods {
    padding: 8rem 0; 
    min-height: 110vh;  
    display: flex;
    align-items: center;
}

.methods .container {
    width: 100%;
    max-width: 1200px;  
    margin: 0 auto;
    padding: 0 2rem;
}

.methods .centered-content {
    max-width: 800px;
    margin: 0 auto;
}

.methods h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.methods p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.methods h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.methods .varied-list.two-column {
    column-count: 2;
    column-gap: 2rem;
    font-size: 1.1rem;
}

.methods .varied-list.two-column li {
    margin-bottom: 1rem;
    break-inside: avoid-column;
}

/* List Styles */
.when-to-seek-help ul,
.approach ul,
.about-me ul {
    list-style-type: none;
    padding-left: 0;
}

.when-to-seek-help li,
.approach li,
.about-me li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.when-to-seek-help li::before,
.approach li::before,
.about-me li::before {
    content: "✓";
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-size: 1rem;
}

/* Blockquote Styles */
blockquote {
    font-style: italic;
    border-left: 4px solid var(--color-accent);
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: var(--color-secondary);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    min-height: 110vh;
    display: flex;
    align-items: center;
}

.contact .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-flex {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info,
#contact-form {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-details {
    list-style-type: none;
    padding: 0;
    margin-top: 2rem;
}

.contact-details li {
    margin-bottom: 0.5rem;
}

/* Form Styles */
#contact-form {
    max-width: 500px;
    margin: 0 auto;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid var(--color-secondary);
    border-radius: 5px;
    transition: border-color 0.3s ease;
    font-family: 'Merriweather', serif;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

#contact-form textarea {
    height: 200px;
    resize: vertical;
}

#contact-form button {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-family: 'Merriweather', serif;
    font-weight: 600;
}

#contact-form button:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
}

/* Response Message */
.response-message {
    display: none;
    padding: 15px;
    margin-top: 460px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    position: absolute;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.response-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.response-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Styles */
form input,
form textarea {
    width: 100%;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid var(--color-secondary);
    border-radius: 5px;
    transition: border-color 0.3s ease;
    font-family: 'Merriweather', serif;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

form textarea {
    height: 200px;
    resize: vertical;
}

form button {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-family: 'Merriweather', serif;
    font-weight: 600;
}

form button:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
}

/* Footer Styles */
footer {
    background-color: var(--color-background);
    color: var(--color-primary);
    text-align: center;
    padding: 3rem 0; /* Øget padding top og bottom */
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer p {
    margin-bottom: 0.5rem;
}

.footer-links {
    margin: 1.5rem 0; 
}

.footer-links a {
    color: var(--color-primary);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.social-links {
    margin-top: 1.5rem;
}

/* Social Icon Styles */
.social-icon {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon i {
    margin-right: 0.5rem;
}

.social-icon:hover {
    color: var(--color-secondary);
}

.contact-details .social-icon {
    margin-top: 1rem;
}

footer .social-links {
    margin-top: 1rem;
}

footer .social-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

footer .social-icon:hover {
    transform: translateY(-3px);
}

footer .facebook-icon {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

/* FAQ Styles */
.practical {
    background-color: var(--color-background);
    padding: 140px 0;
    min-height: 110vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--color-accent);
}

.faq-question {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-background);
    transition: background-color 0.3s ease;
}

.faq-question.active {
    background-color: var(--color-background);
}

.faq-answer {
    padding: 1rem;
    display: none;
    background-color: var(--color-background);
    position: relative;
}

.faq-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
}

.faq-text {
    flex: 1 1 300px;
}

.faq-image {
    flex: 1 1 300px;
    max-width: 100%;
}

.faq-location-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Varied List Styles */
.varied-list {
    list-style-type: none;
    padding-left: 0;
}

.varied-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 0.5rem;
}

.varied-list li::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.varied-list.two-column {
    column-count: 2;
    column-gap: 2rem;
}

.varied-list.two-column li {
    break-inside: avoid-column;
}

/* Icon Styles */
.icon-price::before { content: "🍀"; }
.icon-discount::before { content: "🏷️"; }
.icon-location::before { content: "🏡"; }
.icon-online::before { content: "💻"; }
.icon-walk::before { content: "🚶"; }
.icon-home::before { content: "🏠"; }
.icon-privacy::before { content: "🔒"; }
.icon-report::before { content: "📝"; }
.icon-growth::before { content: "🌱"; }
.icon-supervision::before { content: "👥"; }
.icon-behavioral::before { content: "🧠"; }
.icon-cognitive::before { content: "💭"; }
.icon-systemic::before { content: "🔄"; }
.icon-psychodynamic::before { content: "👶"; }
.icon-existential::before { content: "🌌"; }
.icon-humanistic::before { content: "🌟"; }
.icon-transpersonal::before { content: "🔮"; }

/* Icons for the methods list */
.icon-talk::before { content: "💬"; }
.icon-body::before { content: "🧘‍♀️"; }
.icon-art::before { content: "🎨"; }
.icon-meditation::before { content: "🧘"; }
.icon-mindfulness::before { content: "🌿"; }
.icon-nature::before { content: "🌳"; }
.icon-drama::before { content: "🎭"; }
.icon-dream::before { content: "💤"; }
.icon-dance::before { content: "💃"; }
.icon-nutrition::before { content: "🥗"; }

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        font-size: 12px;
        /* Hide scrollbar for Chrome, Safari and Opera */
        ::-webkit-scrollbar {
            display: none;
        }
        
        /* Hide scrollbar for IE, Edge and Firefox */
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    /* Reduced quote size on mobile */
    .pull-quote {
        font-size: 1rem;
        line-height: 1.4;
        padding-left: 1rem;
        margin: 1.5rem 0;
        max-width: 100%;
    }

    /* Text Columns */
    .text-columns {
        column-count: 1;
    }

    /* Updated Hero Section for Mobile */
    .hero {
        height: auto;
        min-height: 100vh;
        background-image: url('image2.jpeg');
        background-size: cover;
        background-position: center;
        padding: 4rem 1rem 2rem;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: inherit;
        background-size: cover;
        background-position: center;
        filter: brightness(0.8) contrast(1.1);
        border-radius: 0 0 30px 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        z-index: -1;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
    }

    .hero-content {
        padding: 0;
        max-width: 100%;
        position: relative;
        z-index: 1;
    }

    .hero h1,
    .hero-subtitle,
    .hero p {
        color: var(--color-light);
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .hero-scroll-indicator {
        display: flex;
    }
    
    /* Hide the image in the About Me section on mobile */
    #om-mig .image-container {
        display: none;
    }

    /* Navigation */
    nav {
        padding: 0.5rem 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-background);
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Sections */
    section {
        padding: 4rem 0;
    }

    .flex-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .image-container {
        max-width: 100%;
    }

    .text-container {
        padding: 0 1rem;
    }

    /* Services */
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-icon {
        width: 140px;
        height: 140px;
    }

    .service-item {
        padding: 1.5rem;
    }

    .service-item h3 {
        font-size: 1.3rem;
    }

    .service-item p {
        font-size: 0.95rem;
    }
    
    .services,
    .practical {
        padding: 60px 0;
    }

    /* Yderligere spacing for service items */
    .service-item {
        margin-bottom: 2rem;
    }

    /* Ekstra mellemrum mellem FAQ-elementer */
    .faq-item {
        margin-bottom: 1.5rem;
    }

    /* Approach and When to Seek Help */
    .approach .image-gallery.desktop-only {
        display: none;
    }

    .approach .image-container.mobile-only {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .approach .mobile-image {
        width: 100%;
        max-width: 200px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .approach .mobile-image:nth-child(odd) {
        transform: rotate(-3deg);
    }

    .approach .mobile-image:nth-child(even) {
        transform: rotate(3deg);
    }

    .approach {
        padding: 3rem 0;
    }

    .approach .flex-container {
        gap: 1rem;
    }

    .when-to-seek-help {
        padding: 4rem 0;
    }

    .when-to-seek-help .flex-container {
        gap: 1rem;
    }

    .when-to-seek-help .image-gallery.desktop-only {
        display: none;
    }

    .when-to-seek-help .image-container.mobile-only {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    .when-to-seek-help .mobile-image {
        width: calc(50% - 0.5rem);
        max-width: 150px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .when-to-seek-help .mobile-image:nth-child(odd) {
        transform: rotate(-3deg);
    }

    .when-to-seek-help .mobile-image:nth-child(even) {
        transform: rotate(3deg);
    }

    .when-to-seek-help li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }

    .approach {
        padding: 6rem 0; 
    }

    .approach .text-container,
    .approach .image-gallery {
        flex: 1;
    }

    .varied-list.two-column {
        column-count: 1;
    }

    .approach h4 {
        font-size: 1.3rem;
    }
    
    .education-list {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 2rem;
    }
    
    .education-list li {
        margin-bottom: 0.5rem;
        padding-left: 1.5rem;
        position: relative;
    }
    
    .education-list li::before {
        content: "•";
        color: var(--color-accent);
        position: absolute;
        left: 0;
        top: 0;
    }

    .education-list-container {
        flex-direction: column;
        align-items: center;
    }

    .psykoterapeut-logo-container {
        margin-top: 1.5rem;
    }

    .psykoterapeut-logo {
        width: 80px;
    }

    /* Methods */
    .methods {
        padding: 4rem 0;
        min-height: auto;
    }

    .methods h2 {
        font-size: 2rem;
    }

    .methods p:first-of-type {
        font-size: 1rem;
        line-height: 1.6;
    }

    .methods h3 {
        font-size: 1.5rem;
    }

    .methods .varied-list.two-column {
        column-count: 1;
    }

    /* Improved readability for lists */
    .varied-list li,
    .when-to-seek-help li {
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }

    /* Contact */
    .contact {
        padding: 4rem 0;
    }

    .contact-flex {
        flex-direction: column;
        gap: 2rem;
    }

    #contact-form {
        width: 100%;
    }

    #contact-form input,
    #contact-form textarea {
        padding: 0.8rem;
        margin-bottom: 1rem;
        font-size: 1rem;
    }

    #contact-form textarea {
        height: 150px;
    }

    #contact-form button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }

    /* FAQ */
    .faq-list {
        padding: 0 0.5rem;
        width: 95%;
        margin: 0 auto;
    }

    .faq-item {
        margin-bottom: 0.8rem;
    }

    .faq-question {
        padding: 0.8rem;
        font-size: 1rem;
        text-align: center;
        justify-content: center;
    }

    .faq-answer {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .faq-content-wrapper {
        flex-direction: column;
    }

    .faq-text,
    .faq-image {
        flex: 1 1 100%;
    }

    .faq-location-image {
        margin-top: 0.5rem;
    }

    /* Centrer FAQ-overskrift på mobil */
    .practical h2 {
        text-align: center;
    }

    /* Response message - contact */
    .response-message {
        position: fixed;
        top: 10px;
        left: 10px;
        right: 10px;
        margin-top: 150px;
        width: auto !important;
    }

    /* Dropdown menu adjustments for mobile */
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        background-color: transparent;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 10px 20px;
    }

    .foldable-trigger {
        font-size: 1.1rem;
    }

    /* Juster listevisning på mobil */
    .education-list,
    .varied-list {
        column-count: 1; 
        padding-left: 20px; 
    }

    .education-list li,
    .varied-list li {
        font-size: 0.9rem; 
        margin-bottom: 0.5rem; 
        line-height: 1.4;
    }

    /* Juster afstanden mellem sektioner på mobil */
    section {
        padding: 3rem 0;
    }

    /* Specifik justering for 'Min Tilgang' sektionen */
    .approach {
        padding: 3rem 0;
    }

    .approach h4 {
        margin-top: 1.5rem; 
    }

    /* Footer stuff */

    footer {
        padding: 2rem 0; /* Lidt mindre padding på mobile enheder */
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        margin: 5px 0;
    }
}

/* Hide scrollbar for mobile devices */
@media (max-width: 768px) {
    body {
        /* Hide scrollbar for Chrome, Safari and Opera */
        ::-webkit-scrollbar {
            display: none;
        }
        
        /* Hide scrollbar for IE, Edge and Firefox */
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
}

/* Ensure visibility on mobile */
@media (max-width: 768px) {
    .hero-scroll-indicator {
        display: flex; /* Ensure it's displayed on mobile */
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    .service-item {
        padding: 1.2rem;
    }

    .contact-flex {
        gap: 1.5rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.9rem;
    }

    .pull-quote {
        font-size: 0.9rem;
    }

    .varied-list li,
    .when-to-seek-help li {
        font-size: 0.9rem;
    }

}