/* Gleitschirm-Vollcheck Page Styles */
.check-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.check-text {
    flex: 1;
    min-width: 300px;
}

.check-image {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.check-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.check-list {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.check-list li {
    margin-bottom: 0.5rem;
}

.video-section {
    margin: 3rem 0;
}

.video-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-top: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.price-tables {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.price-column {
    flex: 1;
    min-width: 300px;
}

.price-column h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.price-table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}

.price-table td:last-child {
    text-align: right;
    white-space: nowrap;
    padding-left: 1rem;
}

.price-column h4 {
    color: #3498db;
    margin: 1.5rem 0 1rem 0;
}

.note {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.calendar-section {
    margin-top: 3rem;
}

.calendar-section h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.calendar-container {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.registration-info {
    margin: 2rem 0;
    line-height: 1.6;
}

@media (max-width: 533px) {
    .check-overview {
        flex-direction: column;
    }
    
    .check-image {
        max-width: 100%;
    }
    
    .video-container {
        padding-bottom: 75%; /* Adjust for mobile */
    }
}
