/* ============================================
   OM OS - Specifikke styles for om-os.html og relaterede sider
   ============================================ */

/* Introduction Section */
.about-intro {
    margin: 3rem 0;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-intro-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.about-intro-text p {
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-size: 1.1rem;
}

.about-intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-intro-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Work Areas Section */
.about-work-areas {
    margin: 4rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
}

.about-work-areas > h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.work-areas-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--muted);
}

.work-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.work-area-card {
    display: block;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.work-area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.work-area-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

.work-area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-area-card:hover .work-area-image img {
    transform: scale(1.05);
}

.work-area-content {
    padding: 1.5rem;
}

.work-area-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.work-area-content p {
    line-height: 1.75;
    color: var(--muted);
    margin: 0;
}

/* Sustainability Section */
.about-sustainability {
    margin: 4rem 0;
    background: #f9f9f9;
    padding: 3rem 0;
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sustainability-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.sustainability-text > p {
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-size: 1.1rem;
}

.sustainability-goals {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.sustainability-goals li {
    margin-bottom: 1rem;
    padding-left: 0;
    line-height: 1.75;
}

.sustainability-philosophy {
    margin-top: 2rem;
    font-style: italic;
    color: var(--muted);
    font-size: 1.05rem;
}

.sustainability-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.sustainability-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Insurance Section */
.about-insurance {
    margin: 4rem 0;
    padding: 0 1.5rem;
}

.insurance-container {
    max-width: 900px;
    margin: 0 auto;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.insurance-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--line);
}

.insurance-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.insurance-header > p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
    line-height: 1.75;
}

.insurance-policy {
    font-size: 0.95rem;
    color: var(--muted);
    margin-top: 1rem;
}

.insurance-policy strong {
    color: var(--text);
    font-weight: 600;
}

.insurance-coverage h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text);
}

.coverage-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.coverage-item {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coverage-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.coverage-label {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 1rem;
    font-weight: 500;
}

.coverage-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-intro-content,
    .sustainability-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-intro-image {
        order: -1;
    }

    .work-areas-grid {
        grid-template-columns: 1fr;
    }

    .sustainability-image {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .about-intro-text h2,
    .about-work-areas > h2,
    .sustainability-text h2 {
        font-size: 1.5rem;
    }

    .about-intro,
    .about-work-areas,
    .about-sustainability {
        margin: 2rem 0;
    }

    .about-sustainability {
        padding: 2rem 0;
    }

    .sustainability-content {
        padding: 0 1rem;
    }

    .insurance-container {
        padding: 2rem 1.5rem;
    }

    .insurance-header h2 {
        font-size: 1.5rem;
    }

    .coverage-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .coverage-item {
        padding: 1.5rem;
    }

    .coverage-amount {
        font-size: 1.5rem;
    }
}

