/* Groundhandling specific styles */
.intro-with-image {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

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

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

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

.date-list {
    list-style-type: none;
    padding: 0;
    font-size: 1.1rem;
}

.date-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.date-list li:last-child {
    border-bottom: none;
}

.info-section {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .intro-with-image {
        flex-direction: column;
    }
    
    .intro-image {
        max-width: 100%;
    }
}
