
.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* HERO */
.hero {
    text-align: center;
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero-sub {
    font-size: 20px;
    color: #5c6b7a;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* BUTTONS */
.btn-primary {
    background: #00344E;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.btn-primary:hover {
    background: #00557a;
}

.btn-secondary {
    background: #e9ecef;
    color: #1f2d3d;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #d6d8db;
}

.large {
    padding: 16px 30px;
    font-size: 18px;
}

/* FEATURES */
.features {
    margin-bottom: 60px;
    background-color: #ecf2e4; /* f8faf5lysegrøn */
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding-bottom: 20px;
    padding-left: 5px;
    padding-right: 5px;
}

.card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* TABLE */
.example table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #fff;
}

.example th,
.example td {
    border: 1px solid #dee2e6;
    padding: 12px;
    text-align: center;
}

.example th {
    background: #f1f3f5;
}

/* SEO CONTENT */
.seo-content {
    margin: 60px 0;
    background-color: #f4f0e9; /* lysegrøn */
    padding: 10px 5px 20px 5px;
}

.seo-content h3 {
    margin-top: 30px;
}

/* FAQ */
.faq {
    margin-bottom: 60px;
    background-color: #f4f0e9;
    padding: 10px 5px 20px 5px;
}

.faq-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* CTA */
.cta {
    text-align: center;
    background: #dee2e6;
    padding: 50px 20px;
    border-radius: 16px;
}
