.page-content {
    padding: 60px 0;
    color: var(--white);
}

.narrow-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.intro-section {
    text-align: left;
    /* Ändrat från centrerat till vänsterställt för enhetlighet och läsbarhet */
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-list-card h2 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    text-align: center;
    border-bottom: 3px solid #ff9800;
    display: table;
    margin: 0 auto 1.2rem auto;
    padding-bottom: 8px;
    letter-spacing: 0.5px;
}

.price-list-card p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
}

.priser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.price-list-card {
    margin-bottom: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* info-section removed as replaced by price-list-card */

.price-list-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.price-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.price-list li {
    display: flex;
    align-items: baseline;
    padding: 12px 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.price-list li::after {
    content: "";
    flex-grow: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    margin: 0 15px;
    order: 2;
}

.price-list li span:first-child {
    order: 1;
    max-width: 75%;
}

.price-list span:last-child {
    font-weight: bold;
    color: var(--white);
    order: 3;
    white-space: nowrap;
}

.bullet-list {
    margin: 0 0 20px 0;
    text-align: left;
    padding-left: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.bullet-list li {
    margin-bottom: 12px;
    list-style-type: disc;
}

@media (max-width: 768px) {
    .intro-section {
        text-align: center;
    }

    .priser-grid {
        grid-template-columns: 1fr;
    }

    .page-content h1 {
        font-size: 2.5rem;
    }
}