@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #70d8fb;
    --secondary: #1d3fbd;
    --accent: #ae0000;
    --dark: #121212;
    --light: #1c1c1c;
    --text-light:rgb(255, 255, 255);
    --text-dark: #121212;
    --gray:rgb(181, 181, 181);
}

html {
    scroll-padding-top: 90px; /* Justerat för fast header */
    scroll-behavior: smooth; /* För mjuk scrollning */
}

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

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

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    padding: 1.5rem 0;
    background-color: var(--light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Animation */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--light);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.mobile-menu-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.mobile-menu-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.mobile-menu-cta {
    background-color: var(--secondary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.mobile-menu-cta:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.cta-button {
    background-color: var(--secondary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--accent);
}

/* Hero buttons container */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Secondary button style */
.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.75rem 1.5rem; /* Same padding as primary */
}

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

/* Hero Section */
.hero {
    padding-top: 190px;
    padding-bottom: 5rem;
    background-color: var(--light);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Handritad röd strykning */
.strikethrough {
    position: relative;
    display: inline-block;
}

.strikethrough::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -2%;
    right: -2%;
    height: 23px; /* Dubbelt så tjock linje */
    background-color: var(--accent); /* Röd färg */
    transform: translateY(-50%) rotate(-1deg);
    border-radius: 3px;
    opacity: 0.9;
    box-shadow: 0 1px 2px rgba(174, 0, 0, 0.3);
    z-index: -1; /* Negativ z-index för att ligga under texten */
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -5rem;
    right: -5rem;
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 70%;
    border-radius: 10px;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
}

/* Specific styling for hero h1 */
.hero h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.hero h1:last-of-type {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    max-width: 90%;
    color: #f0f0f0;
}

/* Services Section */
.services {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 4rem;
}

.service-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-icon {
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 2.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    color: #ffffff;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Results Section */
.results {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--secondary);
    color: white;
}

.results h2 {
    color: white;
}

.results p {
    color: rgb(235, 235, 235);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    margin-left:-0.15rem;
    font-size: 2rem;
}

.about-text h3 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Testimonials Section - Using Swiper.js */
.testimonials {
    background-color: var(--light);
    padding: 80px 0;
}

/* Section Subheader */
.section-subheader {
    text-align: center;
    margin-bottom: 40px;
}

.section-subheader h3 {
    color: var(--text-light);
    font-size: 1.6rem;
    margin-bottom: 10px;
    margin-top: 10px;
}

.section-subheader p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Video Case Studies */
.video-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.video-case {
    background-color: #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    cursor: pointer; /* Indicate it's clickable */
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Hide default controls initially */
    /* controls attribute is removed in HTML */
}

.video-container .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(29, 63, 189, 0.8); /* Semi-transparent blue */
    color: white;
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-container .play-button:hover {
    background-color: rgba(29, 63, 189, 1); /* Opaque blue on hover */
    transform: translate(-50%, -50%) scale(1.1);
}

/* Hide play button when video is playing */
.video-container.playing .play-button {
    opacity: 0;
    visibility: hidden;
}

.case-info {
    padding: 25px;
}

.case-info h4 {
    margin: 0 0 15px;
    font-size: 1.3rem;
    color: var(--primary);
}

.case-info p {
    margin: 0 0 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.case-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.case-link:hover {
    color: #ffffff;
}

.case-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.case-link:hover i {
    transform: translateX(5px);
}

/* Testimonial CTA */
.testimonial-cta {
    text-align: center;
    margin-top: 40px;
}

.testimonial-cta p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-cases {
        grid-template-columns: 1fr;
    }
    
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--light);
    color: white;
}

.contact-wrapper {
    margin-top: 3rem;
}

.contact-card {
    background-color: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
    display: flex; /* Use flex to position info and form side-by-side on larger screens */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.contact-card-header {
    background-color: var(--secondary);
    color: white;
    padding: 3rem;
    text-align: center;
}

.contact-card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-card-header p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-cta {
    background-color: white;
    color: var(--secondary);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.contact-cta:hover {
    background-color: var(--accent);
    color: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    padding: 3rem;
    gap: 2.5rem;
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, var(--secondary) 0%, #152c80 100%);
    color: white;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    background-color: var(--primary);
    color: var(--secondary);
}

.contact-info-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-item p,
.contact-info-item a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.contact-form-container {
    padding: 3.5rem;
    background-color: #2a2a2a;
    flex: 1.5;
    min-width: 320px;
}

.contact-form-container h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #444;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    background-color: #333;
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    background-color: #383838;
}

.contact-form textarea {
    resize: vertical;
}

.form-submit-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Privacy Policy Checkbox Styling */
.privacy-policy-group {
    margin-bottom: 1.5rem !important;
}

.privacy-checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-light) !important;
    font-weight: 400 !important;
}

.privacy-checkbox-label input[type="checkbox"] {
    display: none;
}

.privacy-checkbox-label .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #444;
    border-radius: 4px;
    background-color: #333;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.privacy-checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.privacy-checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.privacy-link {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive adjustments for contact section */
@media (max-width: 992px) {
    .contact-card {
        flex-direction: column; /* Stack info and form on medium screens */
    }
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns for info on medium */
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr; /* Single column for info on small screens */
        padding: 1.5rem;
    }
    .contact-form-container {
        padding: 1rem; /* Reducerad padding för mer utrymme */
    }
    .contact-form-container h3 {
        font-size: 1.5rem;
    }
    .contact-info-item {
        padding: 1rem;
    }
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    .contact-info-item p,
    .contact-info-item a {
        font-size: 0.9rem;
        word-break: break-word;
    }
    
    /* Gör kontaktkortet bredare på mobil */
    .contact-wrapper {
        margin-left: -1rem;
        margin-right: -1rem;
    }
    
    .contact-card {
        border-radius: 10px; /* Mindre border-radius för att passa bättre */
        margin: 0 0.5rem;
    }
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-text {
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
}

.footer-links h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.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 Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-content, .about-content, .contact-content {
        flex-direction: column;
    }

    .hero-image, .about-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-column {
        flex: 1 1 40%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    nav .cta-button {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column {
        flex: 1 1 100%;
    }

    /* Hero buttons responsive */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 4rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image {
        margin-bottom: 0rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image img {
        max-width: 85%;
    }

    /* Mobilspecifika stilar för alla rubriker utom hero h1 */
    .section-header h2 {
        font-size: 1.6rem;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    .about-text h3 {
        font-size: 1.2rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .section-subheader h3 {
        font-size: 1.3rem;
    }

    .case-info h4 {
        font-size: 1.1rem;
    }

    .contact-form-container h3 {
        font-size: 1.3rem;
    }

    .footer-links h3 {
        font-size: 1.1rem;
    }
}

/* Text Logo */
.text-logo {
    font-size: 3.5rem;
    font-weight: 900; /* Super bold */
    color: var(--primary);
    text-transform: lowercase;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    line-height: 1;
}

/* Mini Quotes Section */
.mini-quotes {
    background-color: var(--secondary);
    padding: 40px 0 40px;
    color: #fff;
    overflow: hidden;
}

.mini-quotes-swiper {
    width: 100%;
    padding: 0;
}

.mini-quote-content {
    padding: 20px 30px;
    text-align: center;
}

.mini-quote-text {
    font-size: 1.2rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
}

.mini-quote-text:before,
.mini-quote-text:after {
    content: '"';
    font-size: 1.5rem;
    font-weight: 700;
}

.mini-quote-author {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.testimonials .section-header h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Responsive justering för mindre skärmar */
@media (max-width: 768px) {
    .testimonials .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Specific override for the video case studies subheader paragraph */
.testimonials .section-subheader p {
    color: var(--text-light);
}

/* Specific styling for contact section header text */
.contact .section-header h2 {
    color: var(--primary);
}
.contact .section-header p {
    color: var(--text-light);
}

/* Privacy Policy Page Styling */
.privacy-policy {
    padding-top: 120px;
    padding-bottom: 4rem;
    background-color: var(--light);
    color: var(--text-light);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.privacy-content h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.last-updated {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.policy-section:last-of-type {
    border-bottom: none;
}

.policy-section h2 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.policy-section p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.policy-section strong {
    color: white;
    font-weight: 600;
}

.back-to-site {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

/* Responsive för integritetspolicy */
@media (max-width: 768px) {
    .privacy-policy {
        padding-top: 100px;
        padding-bottom: 2rem;
    }
    
    .privacy-content h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.2rem;
    }
    
    .policy-section {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
} 