        :root {
            --primary-color: #4A6741;
            --secondary-color: #E8EFE6;
            --accent-color: #D9B166;
            --text-color: #333;
            --light-text: #666;
            --white: #fff;
            --dark-bg: #2A2A2A;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Outfit', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .logo span {
            color: var(--accent-color);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
            position: relative;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--primary-color);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .hero {
            min-height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1519682577862-22b62b24e493?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: left;
            color: var(--white);
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top, var(--white), transparent);
        }
        
        .hero-content {
            max-width: 600px;
            margin-left: 0;
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            margin-bottom: 20px;
            line-height: 1.2;
            position: relative;
        }
        
        .hero h1::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 0;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            font-weight: 300;
            max-width: 500px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--white);
            padding: 14px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-color);
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 14px;
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--white);
            margin-left: 15px;
        }
        
        .btn-secondary:hover {
            background-color: var(--white);
            color: var(--primary-color);
        }
        
        section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 3px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 20%;
        }
        
        .section-title p {
            font-size: 18px;
            color: var(--light-text);
            max-width: 700px;
            margin: 20px auto 0;
        }
        
        /* Alternativ blockstruktur för About-sektionen */
        .about {
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .about::before {
            content: '';
            position: absolute;
            width: 45%;
            height: 100%;
            right: 0;
            top: 0;
            background-color: var(--secondary-color);
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
            z-index: 0;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            position: relative;
            z-index: 1;
        }
        
        .about-image {
            position: relative;
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid var(--accent-color);
            top: 20px;
            left: 20px;
            z-index: -1;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .about-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .about-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
        }
        
        .about-content h3::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 0;
        }
        
        .about-content p {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.8;
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
            margin-bottom: 30px;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: var(--secondary-color);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .stat-text {
            font-size: 14px;
            color: var(--light-text);
        }
        
        /* Alternativ blockstruktur för tjänster-sektionen */
        .services {
            background-color: var(--secondary-color);
            position: relative;
            overflow: hidden;
        }
        
        .services::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background-color: rgba(74, 103, 65, 0.1);
            top: -150px;
            right: -150px;
            z-index: 0;
        }
        
        .service-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }
        
        .service-tab {
            padding: 15px 30px;
            background-color: var(--white);
            border-radius: 30px;
            margin: 0 10px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .service-tab.active {
            background-color: var(--primary-color);
            color: var(--white);
        }
        
        .service-flex {
            display: flex;
            align-items: stretch;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .service-card {
            flex: 1;
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .service-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 30px;
            position: relative;
        }
        
        .service-icon {
            position: absolute;
            top: -30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .service-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .service-content p {
            font-size: 15px;
            margin-bottom: 20px;
            color: var(--light-text);
        }
        
        .service-content a {
            color: var(--primary-color);
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 1px;
        }
        
        .service-content a i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .service-content a:hover i {
            transform: translateX(5px);
        }
        
        /* Alternativ blockstruktur för tebtimnonials */
        .testimonials {
            background-color: var(--primary-color);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .testimonials::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background-color: rgba(217, 177, 102, 0.2);
            border-radius: 50%;
            top: -100px;
            left: -100px;
        }
        
        .testimonials .section-title h2 {
            color: var(--white);
        }
        
        .testimonials .section-title h2::after {
            background-color: var(--white);
        }
        
        .testimonials .section-title p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .testimonial-slider {
            position: relative;
            padding: 60px 0;
        }
        
        .testimonial-card {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 40px;
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-card::before {
            content: '\201C';
            font-size: 120px;
            font-family: 'Playfair Display', serif;
            position: absolute;
            top: -30px;
            left: 20px;
            color: rgba(255, 255, 255, 0.2);
        }
        
        .testimonial-quote {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: 24px;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author-box {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .testimonial-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid var(--accent-color);
        }
        
        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .testimonial-info {
            text-align: left;
        }
        
        .testimonial-author {
            font-weight: 600;
            font-size: 18px;
        }
        
        .testimonial-role {
            font-size: 14px;
            opacity: 0.8;
        }
        
        /* Alternativ blockstruktur för funktioner/metoder */
        .features {
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .features::before {
            content: '';
            position: absolute;
            width: 40%;
            height: 100%;
            left: 0;
            top: 0;
            background-color: var(--secondary-color);
            clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
            z-index: 0;
        }
        
        .features-container {
            position: relative;
            z-index: 1;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .feature-box {
            background-color: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .feature-box::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 5px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 0;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
            z-index: -1;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .feature-box:hover::before {
            transform: scaleX(1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: var(--secondary-color);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 28px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover .feature-icon {
            background-color: var(--primary-color);
            color: var(--white);
            border-radius: 35px;
        }
        
        .feature-box h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .feature-box p {
            font-size: 15px;
            color: var(--light-text);
            line-height: 1.7;
        }
        
        /* Alternativ blockstruktur för CTA */
        .cta {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1465385621528-53653983a38f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8') no-repeat center center/cover;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .cta::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-color: var(--primary-color);
            opacity: 0.4;
            z-index: 0;
        }
        
        .cta-container {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .cta-content {
            text-align: left;
        }
        
        .cta-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            margin-bottom: 20px;
            position: relative;
        }
        
        .cta-content h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 0;
        }
        
        .cta-content p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 500px;
        }
        
        .cta-form {
            background-color: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }
        
        .cta-form h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }
        
        .btn-form {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            cursor: pointer;
            width: 100%;
        }
        
        /* Alternativ blockstruktur för kontakt */
        .contact {
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .contact::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            bottom: -100px;
            right: -100px;
            z-index: 0;
        }
        
        .contact-map {
            height: 400px;
            margin-bottom: 60px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }
        
        .contact-map img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .contact-flex {
            display: flex;
            gap: 50px;
            position: relative;
            z-index: 1;
        }
        
        .contact-info {
            flex: 1;
            background-color: var(--secondary-color);
            padding: 40px;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }
        
        .contact-info::before {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            background-color: rgba(74, 103, 65, 0.1);
            border-radius: 50%;
            top: -50px;
            right: -50px;
            z-index: 0;
        }
        
        .contact-info h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            margin-bottom: 30px;
            color: var(--primary-color);
            position: relative;
        }
        
        .contact-info h3::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 0;
        }
        
        .contact-details {
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }
        
        .contact-item {
            display: flex;
            margin-bottom: 25px;
            align-items: flex-start;
        }
        
        .contact-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background-color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary-color);
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .contact-item:hover .contact-icon {
            background-color: var(--primary-color);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        .contact-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--primary-color);
        }
        
        .contact-text p {
            color: var(--light-text);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            position: relative;
            z-index: 1;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background-color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .social-link:hover {
            background-color: var(--primary-color);
            color: var(--white);
            transform: translateY(-5px);
        }
        
        .contact-form {
            flex: 1;
            background-color: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        /* Ny styling för footer */
        footer {
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .footer-top {
            background-color: var(--primary-color);
            padding: 40px 0;
            position: relative;
        }
        
        .footer-top::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.05);
            top: -100px;
            right: -100px;
            z-index: 0;
        }
        
        .footer-newsletter {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .newsletter-content {
            flex: 1;
            padding-right: 30px;
        }
        
        .newsletter-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .newsletter-content p {
            opacity: 0.9;
            font-size: 15px;
        }
        
        .newsletter-form {
            flex: 1;
        }
        
        .newsletter-input-group {
            display: flex;
            position: relative;
        }
        
        .newsletter-input-group input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 30px;
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            outline: none;
        }
        
        .newsletter-input-group button {
            background-color: var(--accent-color);
            color: var(--white);
            border: none;
            border-radius: 30px;
            padding: 0 25px;
            margin-left: -40px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 15px;
            white-space: nowrap;
        }
        
        .newsletter-input-group button:hover {
            background-color: var(--dark-bg);
        }
        
        .newsletter-input-group button i {
            margin-left: 5px;
        }
        
        .footer-main {
            background-color: var(--dark-bg);
            padding: 70px 0 40px;
            position: relative;
        }
        
        .footer-main::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background-color: rgba(74, 103, 65, 0.1);
            top: -150px;
            left: -150px;
            z-index: 0;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            position: relative;
            z-index: 1;
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .footer-logo span {
            color: var(--accent-color);
        }
        
        .footer-about p {
            opacity: 0.8;
            margin-bottom: 25px;
            line-height: 1.8;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .social-circle {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .social-circle:hover {
            background-color: var(--accent-color);
            transform: translateY(-5px);
        }
        
        .footer-heading {
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            font-weight: 600;
            color: var(--white);
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .footer-links li:hover {
            transform: translateX(5px);
        }
        
        .footer-links li a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.8);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links li a i {
            margin-right: 10px;
            font-size: 12px;
            color: var(--accent-color);
        }
        
        .footer-links li a:hover {
            color: var(--accent-color);
        }
        
        .footer-contact {
            list-style: none;
        }
        
        .footer-contact li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-contact li i {
            margin-right: 15px;
            color: var(--accent-color);
            font-size: 16px;
            margin-top: 5px;
        }
        
        .footer-bottom {
            background-color: #222;
            padding: 20px 0;
            font-size: 14px;
            position: relative;
            z-index: 1;
        }
        
        .footer-bottom-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-bottom p {
            opacity: 0.8;
            margin: 0;
        }
        
        .footer-policies {
            display: flex;
            list-style: none;
        }
        
        .footer-policies li {
            margin-left: 20px;
        }
        
        .footer-policies li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-policies li a:hover {
            color: var(--accent-color);
        }
        
        /* Responssiv header */
        @media (max-width: 991px) {
            .hero h1 {
                font-size: 48px;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: 100vh;
                background-color: var(--white);
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                z-index: 999;
                padding: 50px 20px;
                overflow-y: auto;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu ul {
                display: block;
            }
            
            .nav-menu ul li {
                margin: 0 0 20px 0;
            }
            
            .nav-menu ul li a {
                display: block;
                padding: 10px 0;
                font-size: 18px;
            }
            
            body.menu-open {
                overflow: hidden;
            }
            
            .overlay {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.7);
                z-index: 998;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }
            
            .overlay.active {
                opacity: 1;
                visibility: visible;
            }
            
            .about-grid,
            .cta-container {
                grid-template-columns: 1fr;
            }
            
            .about::before {
                display: none;
            }
            
            .about-image::before {
                display: none;
            }
            
            .service-flex {
                flex-direction: column;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-flex {
                flex-direction: column;
            }
            
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
            
            .newsletter-form {
                margin-top: 20px;
            }
            
            .footer-newsletter {
                flex-direction: column;
            }
            
            .newsletter-content {
                padding-right: 0;
            }
        }
        
        @media (max-width: 767px) {
            header {
                padding: 5px 0;
            }
            
            .logo {
                font-size: 24px;
            }
            
            .nav-container {
                padding: 15px;
            }
            
            .nav-menu {
                top: 70px;
                width: 85%;
            }
            
            .overlay {
                top: 70px;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
            }
            
            .btn {
                display: block;
                margin-bottom: 15px;
                width: 100%;
            }

            .hamburger {
                display: block!important;
                color: #000;
                z-index: 2000;
                position: relative;
            }
            
            .btn-secondary {
                margin-left: 0;
            }
            
            .service-tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .service-tab {
                margin-bottom: 10px;
                width: 100%;
                text-align: center;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .footer-bottom-flex {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-policies {
                margin-top: 15px;
                justify-content: center;
            }
            
            .footer-policies li:first-child {
                margin-left: 0;
            }
            
            .newsletter-input-group {
                flex-direction: column;
            }
            
            .newsletter-input-group button {
                margin-left: 0;
                margin-top: 10px;
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 30px;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
            .about-content h3,
            .contact-info h3 {
                font-size: 28px;
            }
            
            .nav-menu {
                width: 100%;
                padding: 30px 20px;
            }
            
            .nav-menu ul li a {
                font-size: 16px;
            }
            
            .back-to-top {
                width: 40px;
                height: 40px;
                bottom: 20px;
                right: 20px;
            }
        }

        .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;
        }
