/* ============================================
   OM-SIDER - Fælles styling for alle om-*.html
   (om-bygningsudvikling, om-renovering,
    om-byplanlaegning, om-os, om-myndighedstilladelser)
   ============================================ */

/* Section titel til venstre */
.section-title {
    text-align: left;
}

/* Fjern margin-bottom fra main-body */
.main-body {
    margin-bottom: 0;
    max-width: 1200px;
}

/* Container section - 800px bredde på skærme over 800px */
@media (min-width: 800px) {
    .container.section {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1200px) {
    .container.section {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
    .main-body {
        max-width: 1200px;
    }
    /* Ensure hero section maintains 945px width */
    .main-body:has(.hero:not(:has(.hero-text))) {
        max-width: 945px;
    }

}

/* Wider width for screens larger than 1400px */
@media (min-width: 1401px) {
    .container.section {
        max-width: 1200px;
    }
    .main-body {
        max-width: 1350px;
    }
    /* Ensure hero section maintains 945px width even on larger screens */
    .main-body:has(.hero:not(:has(.hero-text))) {
        max-width: 945px;
    }
}


/* Hero section - egen CSS, samme størrelse som topic slideshows */
.hero {
    margin-top: 5px;
    margin-bottom: 2rem;
    width: 100%;
    min-width: 752px;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    column-gap: 0;
    row-gap: 0;
    align-items: start;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

/* Sørg for at hero section kan være 945px bred uafhængigt af main-body begrænsninger */
.main-body:has(.hero:not(:has(.hero-text))) {
    padding-left: 0;
    padding-right: 0;
    max-width: 945px;
}

.hero-slideshow-wrapper {
    position: relative;
    min-width: 300px;
    max-width: 945px;
    width: 100%;
    aspect-ratio: 945 / 458;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    margin: 0 auto;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    padding: 2rem;
    z-index: 6;
}


.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100%;
    display: none;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slideshow-prev, .hero-slideshow-next {
    display: none; /* Fjernet navigation piler */
}

/* Introduktionstekst */
.intro-text {
    margin-bottom: 4rem;
    max-width: 850px;
}

.intro-text h2 {
    margin-bottom: 0rem;
}

.intro-text p {
    margin-bottom: 1rem;
    margin-top: 0rem;
    line-height: 1.8;
    color: var(--text);
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* Topics (bruges af arkitektur, bygningsudvikling og restaurering) */
.byplanlaegning-topics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Topic rows - use CSS Grid on topic section to position elements */
.byplanlaegning-topic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 5rem;
    row-gap: 0;
    border-top: 2px solid var(--line);
    padding-top: 2rem;
}

/* Topic content wrapper - contains both title and description */
.topic-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.topic-title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text);
}

/* Odd topics (index 0, 2, 4...): text left, slideshow right */
.topic-layout-odd .topic-content-wrapper {
    grid-column: 1;
    grid-row: 1;
}

.topic-layout-odd .topic-project-slideshow {
    grid-column: 2;
    grid-row: 1;
}

/* Article layout topics: text and images mixed */
.topic-article-layout {
    display: block;
    margin-bottom: 4rem;
}

.topic-article-layout .topic-title {
    margin-bottom: 2rem;
}

.article-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.article-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

.article-text p {
    margin: 0 0 1.5rem 0;
}

.article-text p:last-child {
    margin-bottom: 0;
}

.article-text-full {
    grid-column: 1 / -1;
}

.article-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-images-right,
.article-images-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Hide second image on small screens (below 800px) */
.article-image[class*=" 2"] {
    display: none;
}

/* Show second image on screens between 800px and 1200px */
@media (min-width: 800px) and (max-width: 1199px) {
    .article-image[class*=" 2"] {
        display: block;
    }
}

/* Hide second image on large screens (1200px and above) */
@media (min-width: 1200px) {
    .article-image[class*=" 2"] {
        display: none;
    }
}

/* Mobile responsive */
@media (max-width: 799px) {
    .article-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .article-images-left,
    .article-images-right {
        grid-column: 1;
    }
    
    .article-text {
        grid-column: 1;
    }

    /* Row 2: text first, images after */
    .article-row-2 .article-text {
        order: 0;
    }
    
    .article-row-2 .article-images-left {
        order: 1;
    }
}

/* Even topics (index 1, 3, 5...): slideshow left, text right */
.topic-layout-even .topic-project-slideshow {
    grid-column: 1;
    grid-row: 1;
}

.topic-layout-even .topic-content-wrapper {
    grid-column: 2;
    grid-row: 1;
}

/* View project button - always directly under slideshow */
.topic-layout-odd .view-project-btn {
    grid-column: 2;
    grid-row: 2;
    margin-top: 10px;
}

.topic-layout-even .view-project-btn {
    grid-column: 1;
    grid-row: 2;
    margin-top: 10px;
}

.topic-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin: 0;
}

.topic-description p {
    margin: 0;
}

/* Topic project slideshow - samme bredde som hero slideshow */
.topic-project-slideshow {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.topic-slideshow-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 945 / 658;
    background-color: #f5f5f5;
    max-width: 100%;
}

.topic-slideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topic-slideshow-slide.active {
    opacity: 1;
    z-index: 1;
}

.topic-slideshow-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.topic-slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    border-radius: 50%;
    line-height: 1;
}

.topic-slideshow-nav[style*="display: none"] {
    display: none !important;
}

.topic-slideshow-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.topic-slideshow-prev {
    left: 15px;
}

.topic-slideshow-next {
    right: 15px;
}

.topic-slideshow-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Når indicators er inde i slideshow-container (om-byplanlaegning): overlay + .visible */
.topic-slideshow-container .topic-slideshow-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    z-index: 2;
}
.topic-slideshow-container .topic-slideshow-indicators.visible {
    opacity: 1;
    visibility: visible;
}

.topic-slideshow-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 0;
}

.topic-slideshow-indicator.active {
    background-color: var(--accent);
}

.topic-slideshow-indicator:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.topic-slideshow-expand {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    border-radius: 4px;
}

.topic-project-slideshow:hover .topic-slideshow-expand {
    display: flex;
}

.topic-slideshow-expand:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Fullscreen overlay */
.topic-slideshow-fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
}

.topic-slideshow-fullscreen-overlay.active {
    display: flex;
}

.topic-slideshow-fullscreen-container {
    position: relative;
    width: min(95vw, 95vh * 16 / 9);
    max-width: 95vw;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    gap: 1.5rem;
}

.topic-slideshow-fullscreen-wrapper {
    position: relative;
    width: 100%;
    height: min(95vh, 95vw * 9 / 16);
    max-height: calc(95vh - 100px); /* Leave space for indicators */
}

.topic-slideshow-fullscreen-wrapper .topic-slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #f5f5f5;
    overflow: hidden;
}

.topic-slideshow-fullscreen-wrapper .topic-slideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.topic-slideshow-fullscreen-wrapper .topic-slideshow-slide.active {
    opacity: 1;
}

.topic-slideshow-fullscreen-wrapper .topic-slideshow-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.topic-slideshow-fullscreen-container .topic-slideshow-indicators {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    max-width: 100%;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
    z-index: 10002;
    flex-wrap: nowrap;
    justify-content: flex-start;
    box-sizing: border-box;
}

.topic-slideshow-fullscreen-container .topic-slideshow-indicators::-webkit-scrollbar {
    height: 6px;
}

.topic-slideshow-fullscreen-container .topic-slideshow-indicators::-webkit-scrollbar-track {
    background: transparent;
}

.topic-slideshow-fullscreen-container .topic-slideshow-indicators::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.topic-slideshow-fullscreen-container .topic-slideshow-indicator-thumbnail {
    width: 80px;
    height: 60px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    background-color: transparent;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.topic-slideshow-fullscreen-container .topic-slideshow-indicator-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.topic-slideshow-fullscreen-container .topic-slideshow-indicator-thumbnail.active {
    border-color: var(--accent);
    transform: scale(1.1);
}

.topic-slideshow-fullscreen-container .topic-slideshow-indicator-thumbnail:hover {
    border-color: var(--accent);
    transform: scale(1.05);
}

.topic-slideshow-fullscreen-wrapper .topic-slideshow-nav {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.topic-slideshow-fullscreen-wrapper .topic-slideshow-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.topic-slideshow-fullscreen-wrapper .topic-slideshow-minimize {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    border-radius: 4px;
}

.topic-slideshow-fullscreen-wrapper .topic-slideshow-minimize:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* View project button - link styling med pil */
.view-project-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: var(--text);
    text-decoration: none;
    padding: 0;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.2s ease;
    margin-top: 0.5rem;
    border: none;
    background: none;
}

.view-project-btn::after {
    content: "→";
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.view-project-btn:hover {
    color: var(--accent);
}

.view-project-btn:hover::after {
    transform: translateX(4px);
}
@media (min-width: 1000px) and (max-width: 1200px) {
    .hero {
        min-width: 952PX;
    }
}
@media (min-width: 1200px) {
    .hero {
        min-width: 1152px;
    }

    .hero-slideshow-wrapper {
        max-width: 1200px;
    }
}

/* Mobile responsive */
@media (max-width: 799px) {
    .main-body {
        width: 100%;
    }

    .hero {
        margin-top: 10px;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        column-gap: 0;
        row-gap: 0px;
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.75rem;
        padding: 1.5rem;
    }
    
    .hero-slideshow-wrapper {
        grid-row: 1;
        min-width: 0;
        width: 90%;
        margin-left: 5%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }
    
    
    
    .intro-text {
        margin-bottom: 3rem;
    }
    
    .byplanlaegning-topics {
        gap: 3rem;
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
    
    .topic-title {
        font-size: 1.5rem;
    }
    
    .topic-description {
        font-size: 1rem;
    }
    
    /* Topics stack vertically on mobile */
    .byplanlaegning-topic {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    
    /* On mobile, always show title first, then slideshow, then button */
    .topic-layout-odd .topic-content-wrapper,
    .topic-layout-even .topic-content-wrapper {
        grid-column: 1;
        grid-row: 1;
    }
    
    .topic-layout-odd .topic-project-slideshow,
    .topic-layout-even .topic-project-slideshow {
        grid-column: 1;
        grid-row: 2;
    }
    
    .topic-layout-odd .view-project-btn,
    .topic-layout-even .view-project-btn {
        grid-column: 1;
        grid-row: 3;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .topic-project-slideshow {
        width: 100%;
        max-width: 100%;
    }
    
    .topic-slideshow-container {
        aspect-ratio: 16 / 9;
    }
    
    .topic-slideshow-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .topic-slideshow-prev {
        left: 10px;
    }
    
    .topic-slideshow-next {
        right: 10px;
    }
    
    .topic-slideshow-expand {
        display: flex !important;
    }
}
/* ---- OM OS (about-intro, work-areas, sustainability, insurance) ---- */

/* 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;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.25rem;
        padding: 1.5rem;
    }
}

