.destination-container {
            display: flex;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
            align-items: center;
        }
        .destination-text {
            flex: 1;
            padding: 0 20px;
            min-width: 0;
        }
        .destination-image {
            flex: 1;
            min-width: 0;
        }
        .destination-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        h1 {
            color: #2c3e50;
            font-size: 28px;
            margin-bottom: 30px;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
        }
        h2 {
            color: #2c3e50;
            font-size: 22px;
            margin-bottom: 15px;
        }
        .error-box {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 5px;
            border-left: 4px solid #dc3545;
            margin-top: 20px;
            font-family: monospace;
            white-space: pre-wrap;
            overflow-x: auto;
        }
        .error-title {
            color: #dc3545;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .no-summary {
            color: #666;
            font-style: italic;
        }