/* style.css (Formaterad version för bättre läsbarhet) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.App-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    padding: 0.25rem 0; /* Mycket liten padding för att minimera headerns höjd */
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Ta bort alla 'display: flex' eller 'align-items: center' HÄR om de finns! */
}
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex; /* Gör dess barn (logotyp och nav) flexibla */
    justify-content: space-between; /* Skjuter logotypen till vänster och nav till höger */
    align-items: center; /* Centrerar logotyp och nav vertikalt */
    padding: 0 2rem; /* Behåll horisontell padding, ingen vertikal här */
}
.logo {
    height: 110px; /* Den önskade höjden för din logotyp */
    width: auto; /* Detta är avgörande för att behålla proportionerna */
    object-fit: contain; /* Säkerställer att bilden skalas korrekt utan att klippas */
    padding: 0; /* Ingen extra padding på logotypen själv */
}
.App-header nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.App-header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.App-header nav ul li a:hover {
    color: #3498db;
}

.hero {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 4rem 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 0 2rem;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

.services-section {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.step p {
    color: #6c757d;
    line-height: 1.6;
}

.benefits-section {
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6c757d;
    line-height: 1.6;
}

.contact-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
}

.contact-section h2 {
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

.submit-button {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

footer {
    background: #1a252f;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .App-header nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .services-grid,
    .benefits-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
}
/* Styling för GDPR-kryssrutan */
.gdpr-checkbox-container {
    display: flex;
    align-items: flex-start; /* Justera text med toppen av checkboxen */
    margin-bottom: 1rem; /* Utrymme under checkboxen */
    font-size: 0.95rem;
    color: #eee; /* Ljusare text på mörk bakgrund */
}

.gdpr-checkbox-container input[type="checkbox"] {
    margin-right: 0.75rem; /* Mellanrum mellan checkbox och text */
    min-width: 16px; /* Säkerställ att checkboxen är synlig */
    height: 16px;
    cursor: pointer;
}

.gdpr-checkbox-container label {
    line-height: 1.4;
    cursor: pointer;
}

.gdpr-checkbox-container a {
    color: #3498db; /* En tydlig länkfärg */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.gdpr-checkbox-container a:hover {
    color: #2ecc71; /* Färg vid hover */
}

/* Styling för integritetspolicysidan */
.privacy-policy-main {
    padding-top: 2rem; /* Justera för header */
}

.privacy-policy-main .container {
    background-color: #fff;
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    line-height: 1.7;
    color: #333;
    text-align: left; /* Integritetspolicyn ska vara vänsterjusterad */
}

.privacy-policy-main h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.privacy-policy-main h2 {
    font-size: 1.8rem;
    color: #34495e;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.privacy-policy-main p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.privacy-policy-main ul {
    list-style-type: disc;
    margin-left: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-policy-main ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.privacy-policy-main ul li strong {
    color: #34495e;
}

/* Responsivitet för integritetspolicyn */
@media (max-width: 767px) {
    .privacy-policy-main .container {
        padding: 1.5rem;
    }

    .privacy-policy-main h1 {
        font-size: 2rem;
    }

    .privacy-policy-main h2 {
        font-size: 1.5rem;
    }

    .privacy-policy-main p,
    .privacy-policy-main ul li {
        font-size: 0.9rem;
    }

    .privacy-policy-main ul {
        margin-left: 1.5rem;
    }
}
