<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base Styles */
:root {
    --primary: #81978A;
    --primary-dark: #5A6B5F;
    --secondary: #C19875;
    --light: #F5F2ED;
    --dark: #2C3333;
    --accent: #D9A75F;
    --text: #333333;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50%;
    height: 3px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

section:hover h2::after {
    transform: scaleX(1);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

section {
    padding: 5rem 0;
    position: relative;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary);
    color: white;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
}

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

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cta-button.secondary:hover {
    background-color: var(--primary);
    color: white;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(129, 151, 138, 0.3);
    transition: transform 0.2s ease;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%) scale(1);
}

body:hover .cursor {
    transform: translate(-50%, -50%) scale(1.5);
}

/* Header */
header {
    position: fixed;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    background-color: transparent;
}

header.scrolled {
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
}

.logo svg {
    margin-right: 10px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.burger-menu {
    display: none;
    cursor: pointer;
}

.burger-menu .line {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-content {
    width: 50%;
    padding-left: 6rem;
    z-index: 2;
}

.hero-content h1 {
    margin-bottom: 1rem;
    color: var(--dark);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.5s;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.7s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-container {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.9s;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    clip-path: polygon(15% 0, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.2;
    z-index: -1;
}

/* Om Oss Section */
.om-oss {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background-color: white;
}

.om-oss-content {
    flex: 1;
    min-width: 300px;
    padding: 2rem 4rem 2rem 6rem;
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--primary-dark);
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    border-radius: 5px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.om-oss-images {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 600px;
}

.image-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.image-container img {
    position: absolute;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.image-container img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.img-1 {
    top: 10%;
    left: 10%;
    width: 60%;
    height: 55%;
    z-index: 1;
}

.img-2 {
    top: 30%;
    right: 5%;
    width: 45%;
    height: 40%;
}

.img-3 {
    bottom: 5%;
    left: 20%;
    width: 55%;
    height: 45%;
}

/* Breathe Animation Section */
.breathe-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    text-align: center;
}

.breathe-container {
    max-width: 800px;
    margin: 0 auto;
}

.breathe-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
}

.circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: breathe 8s infinite ease-in-out;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.5);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

.breathe-text {
    font-size: 1.2rem;
    animation: textChange 8s infinite ease-in-out;
}

@keyframes textChange {
    0%, 45% {
        opacity: 1;
        content: "Pust inn...";
    }
    50%, 95% {
        opacity: 1;
        content: "Pust ut...";
    }
}

/* Tjenester Section */
.tjenester {
    background-color: var(--light);
    text-align: center;
}

.tjenester h2 {
    margin-bottom: 3rem;
}

.tjenester-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tjeneste {
    display: flex;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.tjeneste:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tjeneste.reverse {
    flex-direction: row-reverse;
}

.tjeneste-image {
    flex: 1;
    min-width: 40%;
    position: relative;
    overflow: hidden;
}

.tjeneste-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tjeneste:hover .tjeneste-image img {
    transform: scale(1.1);
}

.tjeneste-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.tjeneste-info h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.tjeneste-info p {
    margin-bottom: 1.5rem;
}

.pris {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.book-button {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background-color: var(--primary);
    color: white;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.book-button:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
}

/* Yoga Matrix Section */
.yoga-matrix {
    background-color: white;
    text-align: center;
    padding: 6rem 0;
}

.matrix-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.matrix-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pose {
    position: relative;
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    cursor: pointer;
}

.pose:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pose img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.pose:hover img {
    transform: scale(1.1);
}

.pose h3 {
    padding: 1rem;
    font-size: 1.4rem;
    color: var(--primary-dark);
}

.pose-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.pose.active .pose-details {
    transform: translateY(0);
}

.pose-details h4 {
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.pose-details ul {
    text-align: left;
    padding-left: 1.5rem;
    list-style-type: disc;
}

/* Visdom Section */
.visdom {
    background-color: var(--light);
    padding: 6rem 0;
    text-align: center;
}

.quotes-container {
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
    min-height: 200px;
}

.quote {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 2rem;
}

.quote.active {
    opacity: 1;
    visibility: visible;
}

blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--dark);
}

.author {
    font-style: italic;
    color: var(--primary);
}

.quote-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.prev-quote, .next-quote {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.prev-quote:hover, .next-quote:hover {
    color: var(--primary-dark);
}

.quote-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    opacity: 1;
}

/* FAQ Accordion Section */
.faq-section {
    padding: 6rem 0;
    background-color: white;
    text-align: center;
}

.accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    padding: 1.5rem;
    background-color: var(--light);
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: rgba(129, 151, 138, 0.1);
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: var(--transition);
}

.accordion-item.active .accordion-header::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    background-color: white;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 2rem auto 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background-color: var(--accent);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #c39147;
}

/* Kontakt Section */
.kontakt {
    padding: 6rem 0;
    background-color: var(--light);
    text-align: center;
}

.kontakt-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.kontakt-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.5rem;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.info-item svg {
    margin-top: 0.3rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.kontakt-form {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(129, 151, 138, 0.2);
}

.submit-button {
    padding: 0.8rem 2rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo svg {
    margin-right: 10px;
}

.footer-links {
    display: flex;
    flex: 1;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.3rem;
    }
    
    .hero-content {
        padding-left: 4rem;
    }
    
    .om-oss-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    header {
        padding: 1rem;
    }
    
    nav ul {
        display: none;
    }
    
    .burger-menu {
        display: block;
    }
    
    .hero {
        flex-direction: column;
        height: auto;
        padding-top: 100px;
    }
    
    .hero-content {
        width: 100%;
        padding: 2rem;
        text-align: center;
    }
    
    .cta-container {
        justify-content: center;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 50vh;
        clip-path: none;
        margin-top: 2rem;
    }
    
    .shape {
        clip-path: none;
    }
    
    .tjeneste, .tjeneste.reverse {
        flex-direction: column;
    }
    
    .tjeneste-image {
        height: 250px;
    }
    
    .om-oss-images {
        height: 400px;
    }
    
    .newsletter-form {
        flex-direction: column;
        border-radius: 5px;
    }
    
    .newsletter-form input {
        width: 100%;
        border-radius: 5px 5px 0 0;
    }
    
    .newsletter-form button {
        width: 100%;
        border-radius: 0 0 5px 5px;
    }
}


/* Responsive Styles - Additional File */

/* Base responsive utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Better screen size management */
:root {
    --mobile-breakpoint: 576px;
    --tablet-breakpoint: 768px;
    --laptop-breakpoint: 1024px;
    --desktop-breakpoint: 1200px;
}

/* Extra responsive utility classes */
.hide-on-mobile {
    display: initial;
}

.show-on-mobile {
    display: none;
}

/* Extra Large Screens (1400px and up) */
@media screen and (min-width: 1400px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.4rem;
    }
    
    .container {
        max-width: 1320px;
    }
    
    .matrix-container {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .om-oss-content {
        padding: 3rem 6rem 3rem 8rem;
    }
    
    .image-container img {
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .img-1 {
        top: 5%;
        left: 5%;
        width: 65%;
        height: 60%;
    }
    
    .img-2 {
        top: 25%;
        right: 2%;
        width: 48%;
        height: 45%;
    }
    
    .img-3 {
        bottom: 2%;
        left: 15%;
        width: 60%;
        height: 48%;
    }
    
    blockquote {
        font-size: 2.2rem;
    }
}

/* Large Desktop (1200px - 1399px) */
@media screen and (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
    
    .matrix-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .om-oss-content {
        padding: 2.5rem 4rem 2.5rem 6rem;
    }
}

/* Desktop (1024px - 1199px) */
@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .features {
        gap: 1.5rem;
    }
    
    .matrix-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tjeneste-grid {
        gap: 2.5rem;
    }
    
    .hero-content {
        padding-left: 3rem;
    }
    
    .om-oss-content {
        padding: 2rem 3rem;
    }
    
    .pose-details {
        padding: 1.2rem;
    }
    
    .pose-details h4 {
        font-size: 1.2rem;
    }
    
    .pose-details ul {
        font-size: 0.9rem;
    }
    
    blockquote {
        font-size: 1.6rem;
    }
}

/* Tablet (768px - 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .container {
        max-width: 720px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero {
        height: auto;
        min-height: 80vh;
        flex-direction: column;
    }
    
    .hero-content {
        width: 100%;
        padding: 6rem 2rem 3rem;
        text-align: center;
        z-index: 3;
    }
    
    .cta-container {
        justify-content: center;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 50vh;
        clip-path: none;
    }
    
    .shape {
        clip-path: none;
    }
    
    .om-oss {
        flex-direction: column;
    }
    
    .om-oss-content {
        padding: 3rem 2rem;
    }
    
    .om-oss-images {
        height: 450px;
    }
    
    .tjeneste, .tjeneste.reverse {
        flex-direction: column;
    }
    
    .tjeneste-image {
        height: 300px;
    }
    
    .tjeneste-info {
        padding: 2rem;
    }
    
    .matrix-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .quotes-container {
        padding: 0 1.5rem;
    }
    
    blockquote {
        font-size: 1.5rem;
    }
    
    .accordion-header {
        font-size: 1rem;
    }
    
    .kontakt-container {
        gap: 3rem;
    }
    
    .newsletter-form {
        max-width: 90%;
    }
    
    /* Mobile menu styles */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }
    
    nav.show {
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    
    nav ul li {
        margin: 0;
    }
    
    nav ul li a {
        font-size: 1.3rem;
    }
    
    .burger-menu {
        display: block;
        z-index: 100;
    }
    
    /* Fix transitioning mobile menu */
    .burger-menu.active .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .burger-menu.active .line:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active .line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Mobile (577px - 767px) */
@media screen and (min-width: 577px) and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    h1 {
        font-size: 2.2rem; 
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero {
        height: auto;
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 6rem 1.5rem 2rem;
    }
    
    .feature {
        min-width: 100%;
    }
    
    .om-oss-images {
        height: 400px;
    }
    
    .breathe-section {
        padding: 4rem 0;
    }
    
    .circle {
        width: 120px;
        height: 120px;
    }
    
    .matrix-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .pose h3 {
        font-size: 1.2rem;
    }
    
    .visdom {
        padding: 4rem 0;
    }
    
    blockquote {
        font-size: 1.3rem;
    }
    
    .faq-section {
        padding: 4rem 0;
    }
    
    .accordion-header {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
    
    .accordion-content {
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 4rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        border-radius: 5px;
        max-width: 100%;
    }
    
    .newsletter-form input {
        border-radius: 5px 5px 0 0;
        padding: 0.8rem;
    }
    
    .newsletter-form button {
        border-radius: 0 0 5px 5px;
        padding: 0.8rem;
    }
    
    .kontakt {
        padding: 4rem 1rem;
    }
    
    .info-item h3 {
        font-size: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .hide-on-mobile {
        display: none;
    }
    
    .show-on-mobile {
        display: initial;
    }
}

/* Small Mobile (375px - 576px) */
@media screen and (min-width: 375px) and (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero {
        min-height: auto;
        padding-bottom: 2rem;
    }
    nav ul.show{
        position: absolute;
        top: 80px;
        background: #fff;
        padding: 20px;
        width: 100%;
        display: flex;
        left: 0;
        flex-direction: column;
        gap: 15px;
    }
    .hero-content {
        padding: 5rem 1rem 2rem;
        width: 100%;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .hero-image {
        height: 40vh;
    }
    
    .om-oss-content {
        padding: 2rem 1rem;
    }
    
    .features {
        gap: 1.5rem;
    }
    
    .om-oss-images {
        height: 350px;
    }
    
    .breathe-section {
        padding: 3rem 0;
    }
    
    .circle {
        width: 100px;
        height: 100px;
    }
    
    .breathe-text {
        font-size: 1rem;
    }
    
    .tjenester {
        padding: 3rem 1rem;
    }
    
    .tjeneste-info {
        padding: 1.5rem;
    }
    
    .pris {
        font-size: 1.5rem;
    }
    
    .matrix-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pose img {
        height: 180px;
    }
    
    blockquote {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .quote-dots {
        gap: 0.3rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .accordion-header {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-header::after {
        right: 1rem;
    }
    
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .newsletter-form {
        margin-top: 1.5rem;
    }
    
    .kontakt-info, .kontakt-form {
        padding: 1.5rem 1rem;
    }
    
    .info-item {
        padding: 1.2rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group input, 
    .form-group textarea {
        padding: 0.7rem;
    }
    
    .submit-button {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Extra Small Mobile (320px - 374px) */
@media screen and (max-width: 374px) {
    .container {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 5rem 0.8rem 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .om-oss-content {
        padding: 2rem 0.8rem;
    }
    
    .feature {
        padding: 1.2rem;
    }
    
    .om-oss-images {
        height: 300px;
    }
    
    .circle {
        width: 80px;
        height: 80px;
    }
    
    .tjeneste-info {
        padding: 1.2rem;
    }
    
    .book-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .pose h3 {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
    
    .pose-details {
        padding: 1rem;
    }
    
    .pose-details h4 {
        font-size: 1.1rem;
    }
    
    .pose-details ul {
        font-size: 0.85rem;
        padding-left: 1.2rem;
    }
    
    blockquote {
        font-size: 1.1rem;
    }
    
    .info-item {
        gap: 0.8rem;
    }
    
    .info-item h3 {
        font-size: 1.1rem;
    }
    
    .logo span {
        font-size: 1.3rem;
    }
}

/* Fix cross-browser compatibilities */
@supports (-webkit-appearance:none) {
    .hero-image {
        -webkit-clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
    }
    
    .shape {
        -webkit-clip-path: polygon(15% 0, 100% 0%, 100% 100%, 0% 100%);
    }
}

/* Improve accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .breathe-animation .circle {
        animation: none !important;
    }
}

/* Print styles */
@media print {
    header, footer, .breathe-section, .cta-section, .visdom {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    .tjenester, .om-oss, .kontakt {
        page-break-inside: avoid;
    }
    
    a::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        font-weight: normal;
    }
}

/* Additional optimizations for touch devices */
@media (hover: none) {
    .cursor {
        display: none;
    }
    
    .feature:hover,
    .tjeneste:hover,
    .pose:hover,
    .info-item:hover,
    .cta-button:hover,
    .book-button:hover,
    .submit-button:hover {
        transform: none;
    }
    
    .social-links a:active,
    .cta-button:active,
    .book-button:active,
    .submit-button:active {
        transform: scale(0.95);
    }
    
    .pose:active {
        transform: scale(0.98);
    }
}

/* Fix grid for Safari */
@supports (-webkit-touch-callout: none) {
    .matrix-container {
        display: flex;
        flex-wrap: wrap;
    }
    
    .pose {
        width: calc(50% - 1rem);
        margin: 0.5rem;
    }
    
    @media screen and (max-width: 576px) {
        .pose {
            width: 100%;
        }
    }
    
    @media screen and (min-width: 1400px) {
        .pose {
            width: calc(25% - 1.5rem);
            margin: 0.75rem;
        }
    }
}

/* Optimizations for high-contrast mode */
@media (forced-colors: active) {
    .cta-button,
    .book-button,
    .submit-button {
        border: 2px solid;
    }
    
    .feature,
    .tjeneste,
    .pose,
    .accordion-item,
    .info-item {
        border: 1px solid;
    }
}

/* Better dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --light: #2C3333;
        --dark: #F5F2ED;
        --text: #F5F2ED;
    }
    
    header.scrolled {
        background-color: #1a1f1f;
    }
    
    .feature {
        background-color: #343c3c;
        border-color: transparent;
    }
    
    .tjeneste {
        background-color: #343c3c;
    }
    
    .tjeneste-info {
        color: var(--light);
    }
    
    .pose {
        background-color: #343c3c;
    }
    
    .pose-details {
        background-color: rgba(44, 51, 51, 0.95);
        color: var(--light);
    }
    
    .accordion-header {
        background-color: #343c3c;
    }
    
    .accordion-content {
        background-color: #2C3333;
    }
    
    .info-item, .kontakt-form {
        background-color: #343c3c;
    }
    
    .form-group input,
    .form-group textarea {
        background-color: #2C3333;
        border-color: #4a5757;
        color: var(--light);
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--primary);
    }
}



.text-wrapper h2, .text-wrapper h3{
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-wrapper h1{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}
.text-wrapper h2{
    font-size: 1.5rem;
}

.text-wrapper{
    margin: 30px auto;
    max-width: 1200px;
}

.text-wrapper p{
    margin-bottom: 10px;
}</pre></body></html>