body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #111;
}

/* HERO */
.hero {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}
.logo {
	width: 480px; /* stor och tydlig */ 
	max-width: 90%; /* mobilanpassad */ 
	margin-bottom: 40px; 
	filter: drop-shadow(0 0 25px rgba(255,255,255,0.18)); }


.hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.8;
	text-align: center;
}


.cta {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.2s;
}

.cta:hover {
    background: #f2f2f2;
}

/* SECTIONS */
.section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: auto;
	text-align: center;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.alt {
    background: #f7f7f7;
}

/* CARDS */
.cards {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    border-color: #000;
}

/* KONTAKT */
.kontaktinfo {
    text-align: center;
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 25px;
    background: #000;
    color: #fff;
    font-size: 0.9rem;
}
