/* CSS Reset & Normalization */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather Sans', Georgia, serif;
}

.prøvetræning-container {
    background-color: #F5F5F5;
    padding: 40px 20px;
}

.prøvetræning-container h1 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #0B2340;
    margin-bottom: 40px;
}

/* Steps Header */
.steps-header {
    max-width: 1200px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, #0B2340 0%, #1a3a52 100%);
    border-radius: 12px;
    padding: 30px;
    color: white;
}

.steps-header h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.steps-list {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 150px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    font-size: 16px;
    font-weight: 600;
}

/* Main Content */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.info-block {
    padding: 0;
}

.block-title {
    font-size: 18px;
    font-weight: 700;
    color: #0B2340;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Location Box */
.location-box {
    background-color: #F8F8F8;
    padding: 20px;
    border-radius: 8px;
}

.location-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0B2340;
    margin-bottom: 10px;
}

.location-address {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.location-address a {
    color: #0B2340;
    text-decoration: none;
    font-weight: 500;
}

.location-address a:hover {
    text-decoration: underline;
}

.location-note {
    font-size: 19px;
    color: #666;
    font-style: italic;
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.schedule-group {
    background-color: #F8F8F8;
    padding: 16px;
    border-radius: 8px;
    border-left: 3px solid #0B2340;
}

.schedule-group.accent-red {
    border-left-color: #B52B39;
}

.schedule-group.accent-blue {
    border-left-color: #17315E;
}

.schedule-group h5 {
    font-size: 20px;
    font-weight: 700;
    color: #0B2340;
    margin-bottom: 8px;
}

.schedule-group p {
    font-size: 19px;
    color: #333;
    margin: 4px 0;
    line-height: 1.4;
}

/* Howdan Section */
.howto-section {
    border-top: 1px solid #E5E5E5;
    padding-top: 32px;
    margin-top: 32px;
}

.howto-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.howto-item {
    background-color: #F8F8F8;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #0B2340;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

/* CTA Section */
.cta-section {
    max-width: 1200px;
    margin: 40px auto 0;
    background: linear-gradient(135deg, #0B2340 0%, #1a3a52 50%, #B52B39 100%);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.cta-section p {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.95;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .prøvetræning-container {
        padding: 20px;
    }

    .prøvetræning-container h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .steps-header {
        padding: 20px;
        margin-bottom: 30px;
    }

    .steps-list {
        flex-direction: column;
    }

    .step {
        justify-content: flex-start;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }

    .content-section {
        padding: 20px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .howto-items {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cta-section {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .cta-section h2 {
        font-size: 22px;
    }

    .cta-section p {
        font-size: 14px;
    }
}
